From d79e899f7b751d7a49de152f1e77543f1a42bdbf Mon Sep 17 00:00:00 2001 From: zk Date: Wed, 8 Apr 2026 16:31:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A8=A1=E5=9E=8B=E4=BD=BF?= =?UTF-8?q?=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/ai/resume_extractor/extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ai/resume_extractor/extractor.py b/app/ai/resume_extractor/extractor.py index e50f65e..87490ef 100644 --- a/app/ai/resume_extractor/extractor.py +++ b/app/ai/resume_extractor/extractor.py @@ -17,7 +17,7 @@ def _build_chain(prompt: str): """构建单个提取链:prompt → LLM → JSON解析""" return ( ChatPromptTemplate.from_messages([("system", prompt), ("human", "{text}")]) - | LLM.DOUBAO_PRO_32K.create(temperature=0) + | LLM.CLAUDE_SONNET_4.create(temperature=0) | JsonOutputParser() )