From 3e93886e671fc0e1d71a8328ceb56d503643aa73 Mon Sep 17 00:00:00 2001 From: zk Date: Tue, 14 Apr 2026 13:00:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9agent=20=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 d9c5070..59bea62 100644 --- a/app/ai/skill_gap_analyzer/analyzer.py +++ b/app/ai/skill_gap_analyzer/analyzer.py @@ -95,7 +95,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.GPT_4O_MINI.create(temperature=0) | StrOutputParser() )