Agora ESP32 Large Model Intelligent Dialogue
็ฎไฝไธญๆ | English
Overview
This is an RTC Client SDK & Demo running on Espressif ESP32-S3 Korvo V3 development board. This example demonstrates how to make TEN-Agent work with it.
File Structure
โโโ CMakeLists.txt
โโโ components Agora IoT SDK component
โ โโโ agora_iot_sdk
โ โ โโโ CMakeLists.txt
โ โ โโโ include Agora IoT SDK header files
โ โ โ โโโ agora_rtc_api.h
โ โ โโโ libs Agora IoT SDK libraries
โ โ โโโ libagora-cjson.a
โ โ โโโ libahpl.a
โ โ โโโ librtsa.a
โโโ main LLM Demo code
โ โโโ ai_agent.h
โ โโโ app_config.h
โ โโโ common.h
โ โโโ audio_proc.h
โ โโโ rtc_proc.h
โ โโโ CMakeLists.txt
โ โโโ Kconfig.projbuild
| โโโ ai_agent.c
| โโโ audio_proc.c
| โโโ rtc_proc.c
โ โโโ llm_main.c
โโโ partitions.csv Partition table
โโโ README.en.md
โโโ README.md
โโโ sdkconfig.defaults
โโโ sdkconfig.defaults.esp32s3
Environment Setup
Hardware Requirements
This example currently supports the ESP32-S3-Korvo-2 V3
development board only.
Compilation and Download
Agora IOT SDK
To compile and run this example, you need the Agora IoT SDK.
The SDK can be downloaded at here
Put agora_iot_sdk.tar
to esp32-client/components
directory and run the following command:
cd esp32-client/components
tar -xvf agora_iot_sdk.tar
Linux Operating System
Default IDF Branch
This example supports IDF tag v[5.2.3] and later versions, with the default set to IDF tag v[5.2.3] (commit id: c9763f62dd00c887a1a8fafe388db868a7e44069).
To select the correct IDF branch, run the following commands:
cd $IDF_PATH
git checkout v5.2.3
git pull
git submodule update --init --recursive
This example supports ADF v2.7 tag (commit id: 9cf556de500019bb79f3bb84c821fda37668c052).
Applying the IDF Patch
A patch must be applied to IDF. Use the following command:
export ADF_PATH=~/esp/esp-adf
cd $IDF_PATH
git apply $ADF_PATH/idf_patches/idf_v5.2_freertos.patch
Compiling the Firmware
Copy the example project directory (esp32-client) to the ~/esp
directory and run the following commands:
$ . $HOME/esp/esp-idf/export.sh
$ cd ~/esp/esp32-client
$ idf.py set-target esp32s3
$ idf.py menuconfig --> Agora Demo for ESP32 --> (Configure WIFI SSID and Password)
$ idf.py build
To configure FreeRTOS backward compatibility:
In menuconfig
, navigate to Component config
--> FreeRTOS
--> Kernel
and enable configENABLE_BACKWARD_COMPATIBILITY
.
Windows Operating System
Default IDF Branch
Download IDF, selecting version v5.2.3 (offline version) from the following link:
ESP-IDF Windows Setup
Download ADF to the Espressif/frameworks
directory to support ADF v2.7 tag (commit id: 9cf556de500019bb79f3bb84c821fda37668c052):
ESP-ADF Setup
Applying the IDF Patch
Method 1: Add ADF_PATH
to the environment variables in system settings:
E:\esp32s3\Espressif\frameworks\esp-adf
Method 2: Add ADF_PATH
via the command line:
$ setx ADF_PATH Espressif/frameworks/esp-adf
Note: After setting the ADF_PATH
environment variable, restart ESP-IDF 5.2 PowerShell for changes to take effect.
Apply the required patch to IDF using:
cd $IDF_PATH
git apply $ADF_PATH/idf_patches/idf_v5.2_freertos.patch
Compiling the Firmware
Copy the example project directory (esp32-client) to the Espressif/frameworks
directory and run the following commands:
$ cd ../esp32-client
$ idf.py set-target esp32s3
$ idf.py menuconfig --> Agora Demo for ESP32 --> (Configure WIFI SSID and Password)
$ idf.py build
Configure FreeRTOS backward compatibility:
In menuconfig
, navigate to Component config
--> FreeRTOS
--> Kernel
and enable configENABLE_BACKWARD_COMPATIBILITY
.
Flashing the Firmware
Run the following command:
$ idf.py -p /dev/ttyUSB0 flash monitor
Note: On Linux, you might encounter permission issues with /dev/ttyUSB0
. Run the following command to fix it:
sudo usermod -aG dialout $USER
Once flashing is complete, the example will run automatically. After the device joins the RTC channel, the serial output will display:
"Agora: Press [SET] key to Join the Ai Agent ..."
How to Use the Example
Quick Start in 5 Minutes
Note:
Ensure at least one speaker is connected to the development board.
Configure your own agent
Let's walk you through creating your own user and device accounts.
Update app_config.h
- Open the
app_config.h
file in the project. - Modify
TENAI_AGENT_URL
to the URL of your TEN-Agent server (usually the 8080 port service). - Modify
AI_AGENT_CHANNEL_NAME
to a unique channel name. - If you have your Ten-Agent configured for
openai_v2v
graph working, you should be good to go. - If you want to use other graphs, you can modify how request is constructed in
ai_agent.c
file the_build_start_json
method. - Recompile and flash the firmware.
Demo: Real-time Voice Dialogue with Large Model AiAgent
- Press the
SET
button to start the large model. - Press the
MUTE
button to stop the large model. - Press the
VOL+
button to increase volume (increments of 10, up to a maximum of 100). - Press the
VOL-
button to decrease volume (decrements of 10, down to a minimum of 0). - After the device boots up, it will automatically connect to the RTC channel associated with the generated APPID. Press the
SET
button to initiate real-time voice dialogue; press theMUTE
button to stop it.
About Agora
Agoraโs audio and video IoT platform leverages its proprietary real-time transmission network, Agora SD-RTNโข (Software Defined Real-time Network), to provide real-time audio and video streaming capabilities for Linux/RTOS devices with networking capabilities. The solution ensures high connectivity, real-time performance, and stability even under uncertain network conditions using advanced techniques such as forward error correction, intelligent retransmission, bandwidth prediction, and stream smoothing. Additionally, it offers a minimal memory footprint, making it ideal for resource-constrained IoT devices, including the entire Espressif ESP32 series.
Technical Support
For technical support, follow the links below:
- Report bugs and inquiries directly to the community representatives.
We will respond as soon as possible.