From f2016ee21b86201acca0f4b82b39f6479028985b Mon Sep 17 00:00:00 2001 From: zk Date: Wed, 29 Apr 2026 15:55:58 +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/models.py | 2 ++ app/ai/resume_extractor/extractor.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/ai/models.py b/app/ai/models.py index 7184d48..18ec925 100644 --- a/app/ai/models.py +++ b/app/ai/models.py @@ -26,8 +26,10 @@ class LLM(Enum): # 火山引擎 DOUBAO_PRO_32K = ("doubao-1-5-pro-32k-250115", *_VOLCENGINE) + DOUBAO_LITE_32K = ("doubao-1-5-lite-32k-250115", *_VOLCENGINE) DEEPSEEK_V3 = ("deepseek-v3-250324", *_VOLCENGINE) DEEPSEEK_R1 = ("deepseek-r1-250528", *_VOLCENGINE) + DOUBAO_SEED_MINI = ("doubao-seed-2-0-mini-260215", *_VOLCENGINE) DOUBAO_SEED_LITE = ("doubao-seed-2-0-lite-260215", *_VOLCENGINE) DOUBAO_SEED_PRO = ("doubao-seed-2-0-pro-260215", *_VOLCENGINE) diff --git a/app/ai/resume_extractor/extractor.py b/app/ai/resume_extractor/extractor.py index ee6a148..29c1ed5 100644 --- a/app/ai/resume_extractor/extractor.py +++ b/app/ai/resume_extractor/extractor.py @@ -21,7 +21,7 @@ from app.ai.resume_extractor.prompts import ( from app.core.logger import log from app.tool.json_helper import parse_llm_json -_LLM_MODEL = LLM.DOUBAO_PRO_32K +_LLM_MODEL = LLM.DOUBAO_LITE_32K # ==================== 文本编号 ====================