修改间隔分析模型

This commit is contained in:
zk
2026-04-29 19:18:31 +08:00
parent 59ccdd528d
commit 4909ae6076
+1 -1
View File
@@ -22,7 +22,7 @@ from app.tool.json_helper import parse_llm_json
_skill_gap_chain = ( _skill_gap_chain = (
ChatPromptTemplate.from_messages([("system", SKILL_GAP_PROMPT), ("human", "请开始分析。")]) ChatPromptTemplate.from_messages([("system", SKILL_GAP_PROMPT), ("human", "请开始分析。")])
| LLM.DOUBAO_PRO_32K.create(temperature=0) | LLM.DOUBAO_LITE_32K.create(temperature=0)
| StrOutputParser() | StrOutputParser()
) )