Skip to content

Commit 5c51907

Browse files
committed
fix: 更新对话免费模型为 Qwen/Qwen3-8B
1 parent 7acf0b9 commit 5c51907

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

custom_components/ai_hub/const.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,14 +186,14 @@ def get_localized_name(hass: HomeAssistant, zh_name: str, en_name: str) -> str:
186186

187187
RECOMMENDED: Final[dict[str, Any]] = {
188188
# Conversation
189-
"chat_model": "Qwen/Qwen2.5-7B-Instruct",
189+
"chat_model": "Qwen/Qwen3-8B",
190190
"temperature": 0.3,
191191
"top_p": 0.5,
192192
"top_k": 1,
193193
"max_tokens": 250,
194194
"max_history_messages": 30,
195195
# AI Task
196-
"ai_task_model": "Qwen/Qwen2.5-7B-Instruct",
196+
"ai_task_model": "Qwen/Qwen3-8B",
197197
"ai_task_temperature": 0.95,
198198
"ai_task_top_p": 0.7,
199199
"ai_task_max_tokens": 2000,
@@ -281,6 +281,7 @@ def get_localized_name(hass: HomeAssistant, zh_name: str, en_name: str) -> str:
281281
# Chat models (SiliconFlow)
282282
AI_HUB_CHAT_MODELS: Final = [
283283
# Qwen series (recommended)
284+
"Qwen/Qwen3-8B", # Free (recommended)
284285
"Qwen/Qwen2.5-7B-Instruct",
285286
"Qwen/Qwen2.5-72B-Instruct",
286287
"Qwen/Qwen2.5-32B-Instruct",

0 commit comments

Comments
 (0)