From 9bc8bb492cf100fc3f7a1380ab188bc840ce00dd Mon Sep 17 00:00:00 2001 From: zk Date: Fri, 10 Apr 2026 14:24:07 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ai/skill_gap_analyzer/analyzer.py b/app/ai/skill_gap_analyzer/analyzer.py index 80bb60a..85337c3 100644 --- a/app/ai/skill_gap_analyzer/analyzer.py +++ b/app/ai/skill_gap_analyzer/analyzer.py @@ -118,7 +118,7 @@ async def plan_edit(job_title: str, resume_json: str, chat_history: str, instruc _module_edit_chain = ( ChatPromptTemplate.from_messages([("system", AGENT_MODULE_EDIT_PROMPT), ("human", "请执行修改。")]) - | LLM.CLAUDE_SONNET_4.create(temperature=0.3) + | LLM.GPT_4O.create(temperature=0.3) | StrOutputParser() )