File size: 796 Bytes
87337b1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
#pragma once
//LLM Agent Service
#define TENAI_AGENT_URL "http://<ip_address>:<port>"
// LLM Agent Property. don't edit, if you want to edit pls contact Agora at first.
#define GRAPH_NAME "va_openai_v2v"
#define V2V_MODEL "gpt-4o-realtime-preview-2024-12-17"
#define LANGUAGE "en-US"
#define VOICE "ash"
#define GREETING "Can I help You?"
#define PROMPT ""
// LLM Agent Task Name
#define AI_AGENT_NAME "tenai0125-11"
// LLM Agent Channel Name
#define AI_AGENT_CHANNEL_NAME "aiAgent_chn0124-11"
// LLM User Id
#define AI_AGENT_USER_ID 12345 // user id, for device
/* function config */
/* audio codec */
#define CONFIG_USE_G711U_CODEC
/* video process */
#define CONFIG_AUDIO_ONLY
|