3. AI Large Model Voice Interaction

Note: The RDK X5 4GB version cannot run this offline due to performance limitations. Please refer to the tutorial for online large models.

1. Concept Introduction

1.1 What is "AI Large Model Voice Interaction"?

In the largemodel project, AI Large Model Voice Interaction connects the previously introduced Offline ASR and Offline TTS with the Large Language Model (LLM) core to form a complete conversational system that can listen, speak, and think.

This is no longer an isolated function, but the prototype of a true voice assistant. Users can have natural language conversations with the robot through voice, and the robot can understand questions, think of answers, and respond with voice. The entire process is completed locally without the need for a network.

The core of this function is the model_service ROS2 node. It acts as the brain and nerve center, subscribing to the recognition results of ASR, calling the LLM to think, and then publishing the LLM's text reply to the TTS node for speech synthesis.

1.2 Brief Description of the Principle

The implementation principle of this function is a classic data flow pipeline:

  1. Sound -> Text (ASR): The asr node continuously listens to the ambient sound. Once it detects that the user has finished speaking a sentence, it converts it into text and publishes it to the /asr_text topic.

  2. Text -> Thinking -> Text (LLM): The model_service node subscribes to the /asr_text topic. When it receives the text from ASR, it sends it as a prompt to the locally deployed large language model (such as Qwen run through Ollama). The LLM will generate a text response based on the context.

  3. Text -> Sound (TTS): After the model_service node gets the LLM's response, it publishes it to the /tts_text topic.

  4. Sound Playback: The tts_only node subscribes to the /tts_text topic. After receiving the text, it immediately calls the offline TTS model to synthesize it into audio and play it through the speaker.

This process forms a complete closed loop of voice input -> text processing -> text output -> voice output.


2. Code Analysis

Key Code

1. Voice Input Node (largemodel/largemodel/asr.py)

2. AI Service and Voice Output Node (largemodel/largemodel/model_service.py)

Code Analysis

The voice interaction function of the AI large model is jointly completed by two independent ROS nodes, asr.py and model_service.py. They communicate with each other through the ROS topic /asr to form a complete processing loop.

  1. Voice Input and Publishing (asr.py):

    • The function of the ASRNode node is to process voice input. In the kws_handler function, it completes recording and text conversion.

    • After successful conversion, the asr_pub_result function is called. This function puts the obtained text string into a std_msgs.msg.String message, and then publishes the message to the /asr topic through the self.asr_pub publisher.

  2. Subscription and Response (model_service.py):

    • When the LargeModelService node is initialized, it subscribes to the /asr topic through the create_subscription method and specifies asr_callback as its callback function.

    • When ASRNode publishes a message on the /asr topic, the ROS system will automatically call the asr_callback function of LargeModelService and pass the message as a parameter msg.

  3. Interaction Loop:

    • After the asr_callback function receives the message, it extracts the text data (msg.data) and passes it to the large model for inference (self.model_client.infer_with_text).

    • After the inference is completed, the process_model_result function is called. This function extracts the text for reply from the model result.

    • Then, the _safe_play_audio function is called, which uses the TTS function (self.model_client.voice_synthesis) to synthesize the reply text into audio and play it.

    • At this point, a complete interaction loop from "receiving user voice" to "responding to the user with voice" is completed. The two nodes are decoupled through the publish-subscribe mode of ROS. asr.py is responsible for input, and model_service.py is responsible for processing and output.

3. Practical Operation

3.1 Configure Offline Voice Interaction

To implement a fully offline voice interaction system, you need to ensure that the ASR, TTS, and LLM parts are all configured in offline mode.

  1. Open the main configuration file yahboom.yaml:

  2. Modify/Confirm the following key configurations:

  3. Open the model interface configuration file large_model_interface.yaml:

  4. Confirm that all offline model paths are correct:

3.2 Start and Test the Function

Note: Using a model with a small number of parameters or running with limited memory will result in poor performance. For a better experience, please refer to the corresponding chapter in <Online Large Model (Text Interaction)>.

  1. Start the largemodel main program: Run the following command to start voice interaction:

  2. Test:

    • Wake up: Say to the microphone: "Hi,Yahboom."

    • Conversation: After the speaker responds, you can say what you want to ask.

    • Observe the log: In the terminal where the launch file is running, you should see:

      1. The ASR node recognizes your question and prints it out.

      2. The model_service node receives the text, calls the LLM, and prints the LLM's reply.

    • Listen to the answer: After a while, you should be able to hear the robot answer your question in a synthesized voice from the speaker.