Skip to content

Commit 707e316

Browse files
plutolesshalajohn
andauthored
feat: support qwen3 (#773)
Co-authored-by: Hu Yueh-Wei <[email protected]>
1 parent 04caed6 commit 707e316

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

.github/workflows/tman_full_linux_x64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- ".github/**"
1414
- "core/src/ten_manager/**"
1515
- "core/src/ten_rust/**"
16+
paths-ignore:
1617
- "ai_agents/**"
1718

1819
permissions:

.github/workflows/tman_full_mac_arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- ".github/**"
1414
- "core/src/ten_manager/**"
1515
- "core/src/ten_rust/**"
16+
paths-ignore:
1617
- "ai_agents/**"
1718

1819
permissions:

.github/workflows/tman_full_mac_x64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- ".github/**"
1414
- "core/src/ten_manager/**"
1515
- "core/src/ten_rust/**"
16+
paths-ignore:
1617
- "ai_agents/**"
1718

1819
permissions:

.github/workflows/tman_full_win_x64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ on:
1313
- ".github/**"
1414
- "core/src/ten_manager/**"
1515
- "core/src/ten_rust/**"
16+
paths-ignore:
1617
- "ai_agents/**"
1718

1819
permissions:

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)