修改模型

This commit is contained in:
zk
2026-07-30 18:00:09 +08:00
parent ca227ebef7
commit c5440eefa9
6 changed files with 27 additions and 7 deletions
+4 -4
View File
@@ -9,14 +9,14 @@ from app.ai.models import LLM
class JobCleanModel:
"""岗位清洗模块"""
# 第一次AI:结构化提取岗位信息
STRUCTURE = LLM.CLAUDE_OPUS.create(temperature=0)
STRUCTURE = LLM.GPT_5_4_MINI.create(temperature=0)
# 第二次AI:专业匹配
MAJOR_MATCH = LLM.CLAUDE_OPUS.create(temperature=0)
MAJOR_MATCH = LLM.GPT_5_4_MINI.create(temperature=0)
# 第三次AI:技能提取
SKILL_EXTRACT = LLM.CLAUDE_OPUS.create(temperature=0)
SKILL_EXTRACT = LLM.GPT_5_4_MINI.create(temperature=0)
class CompanyCleanModel:
"""公司补充模块"""
# 公司信息补充
ENRICH = LLM.CLAUDE_OPUS.create(temperature=0)
ENRICH = LLM.GPT_5_4_MINI.create(temperature=0)