模型全面切换值 ZM 模型

This commit is contained in:
zk
2026-05-09 09:40:04 +08:00
parent f14f07affa
commit e8a094fd7b
8 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ async def agent_chat(resume_text: str, message: str, history: list[dict],
# 3. 调 LLM
try:
llm = LLM.JIAYU_CLAUDE_SONNET_4_5.create(temperature=0.7)
llm = LLM.ZM_GPT_5_4.create(temperature=0.7)
result = await llm.ainvoke(messages)
raw = result.content
except Exception as e: