From 51b5dbb3454d1d7fcfd289452858403d0c2efcbc Mon Sep 17 00:00:00 2001 From: zk Date: Thu, 14 May 2026 21:21:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/ai/skill_gap_analyzer/analyzer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/ai/skill_gap_analyzer/analyzer.py b/app/ai/skill_gap_analyzer/analyzer.py index aa356ad..bd3a7fe 100644 --- a/app/ai/skill_gap_analyzer/analyzer.py +++ b/app/ai/skill_gap_analyzer/analyzer.py @@ -94,7 +94,7 @@ async def optimize_module(job_title: str, job_description: str, module_data: str _plan_chain = ( ChatPromptTemplate.from_messages([("system", AGENT_PLAN_PROMPT), ("human", "请分析用户指令。")]) - | LLM.DOUBAO_PRO_32K.create(temperature=0) + | LLM.ZM_GPT_5_4.create(temperature=0) | StrOutputParser() ) @@ -119,7 +119,7 @@ async def plan_edit(job_title: str, job_description: str, resume_json: str, _record_edit_chain = ( ChatPromptTemplate.from_messages([("system", AGENT_MODULE_EDIT_PROMPT), ("human", "请执行修改。")]) - | LLM.DOUBAO_PRO_32K.create(temperature=0.3) + | LLM.ZM_GPT_5_4.create(temperature=0.3) | StrOutputParser() ) @@ -144,7 +144,7 @@ async def execute_record_edit(job_title: str, job_description: str, instruction: _record_add_chain = ( ChatPromptTemplate.from_messages([("system", AGENT_MODULE_ADD_PROMPT), ("human", "请生成新记录。")]) - | LLM.DOUBAO_PRO_32K.create(temperature=0.3) + | LLM.ZM_GPT_5_4.create(temperature=0.3) | StrOutputParser() )