From a0b3af84f7524aadf473e8e4e02cb1bb33d3bcde Mon Sep 17 00:00:00 2001 From: zk Date: Wed, 29 Apr 2026 20:28:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BD=BF=E7=94=A8=E5=BF=AB=E9=80=9F=E6=A8=A1?= =?UTF-8?q?=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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ai/skill_gap_analyzer/analyzer.py b/app/ai/skill_gap_analyzer/analyzer.py index 44d7c0b..40abd37 100644 --- a/app/ai/skill_gap_analyzer/analyzer.py +++ b/app/ai/skill_gap_analyzer/analyzer.py @@ -45,7 +45,7 @@ async def analyze_skill_gap(skill_tags: list[str], resume_json: str) -> list[str _summary_optimize_chain = ( ChatPromptTemplate.from_messages([("system", SUMMARY_OPTIMIZE_PROMPT), ("human", "请开始优化。")]) - | LLM.DOUBAO_PRO_32K.create(temperature=0.3) + | LLM.DOUBAO_LITE_32K.create(temperature=0.3) | StrOutputParser() ) @@ -69,7 +69,7 @@ async def optimize_summary(job_title: str, add_skills: list[str], original_summa _experience_optimize_chain = ( ChatPromptTemplate.from_messages([("system", EXPERIENCE_OPTIMIZE_PROMPT), ("human", "请开始优化。")]) - | LLM.DOUBAO_PRO_32K.create(temperature=0.3) + | LLM.DOUBAO_LITE_32K.create(temperature=0.3) | StrOutputParser() )