模型全面切换值 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
+2 -2
View File
@@ -16,7 +16,7 @@ from app.tool.json_helper import parse_llm_json
_summary_chain = (
ChatPromptTemplate.from_messages([("system", RESUME_SUMMARY_OPTIMIZE_PROMPT), ("human", "请开始优化。")])
| LLM.JIAYU_CLAUDE_SONNET_4_5.create(temperature=0.3)
| LLM.ZM_GPT_5_4.create(temperature=0.3)
| StrOutputParser()
)
@@ -37,7 +37,7 @@ async def optimize_summary(job_title: str, job_description: str, original_summar
_experience_chain = (
ChatPromptTemplate.from_messages([("system", RESUME_EXPERIENCE_OPTIMIZE_PROMPT), ("human", "请开始优化。")])
| LLM.JIAYU_CLAUDE_SONNET_4_5.create(temperature=0.3)
| LLM.ZM_GPT_5_4.create(temperature=0.3)
| StrOutputParser()
)