Skip to content

Commit f850467

Browse files
committed
feat: support qwen3
1 parent c4045de commit f850467

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

ai_agents/agents/examples/demo/property.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@
239239
]
240240
},
241241
{
242-
"name": "qwq_32b",
242+
"name": "qwen3",
243243
"auto_start": true,
244244
"nodes": [
245245
{
@@ -276,9 +276,8 @@
276276
"greeting": "TEN Agent connected. How can I help you today?",
277277
"max_memory_length": 10,
278278
"max_tokens": 512,
279-
"model": "qwq-plus",
280-
"prompt": "",
281-
"proxy_url": "${env:OPENAI_PROXY_URL}"
279+
"model": "qwen3-235b-a22b",
280+
"prompt": ""
282281
}
283282
},
284283
{

ai_agents/demo/src/app/api/agents/start/graph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ export const getGraphProperties = (
261261
"azure_synthesis_voice_name": voiceNameMap[language]["azure"][voiceType]
262262
}
263263
}
264-
} else if (graphName === "qwq_32b") {
264+
} else if (graphName === "qwen3") {
265265
return {
266266
"agora_rtc": {
267267
"agora_asr_language": language,

ai_agents/demo/src/common/constant.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ export const GRAPH_OPTIONS: GraphOptionItem[] = [
6767
value: "va_llama4",
6868
},
6969
{
70-
label: "Voice Agent with QWQ-32B Reasoning",
71-
value: "qwq_32b",
70+
label: "Voice Agent with Qwen3 Reasoning",
71+
value: "qwen3",
7272
},
7373
{
7474
label: "Voice Agent with DeepSeek R1 Reasoning",

0 commit comments

Comments
 (0)