重构简历优化

This commit is contained in:
zk
2026-06-23 18:21:30 +08:00
parent 1edc28e332
commit 2f38c80207
11 changed files with 99 additions and 113 deletions
+6 -2
View File
@@ -44,14 +44,18 @@ class ResumeExtractorModel:
PARSE = LLM.DOUBAO_PRO_32K.create(temperature=0)
class ResumePolisherModel:
"""简历段落润色模块"""
# 段落润色:仅做格式/错字/表达优化,不改内容,低温度保证稳定
POLISH = LLM.DEEPSEEK_V4_FLASH.create(temperature=0.2)
class DiagnoserModel:
"""简历诊断模块"""
# 模块诊断:逐条分析经历记录的问题(错别字/无量化/弱相关等)
MODULE = LLM.DEEPSEEK_V4_FLASH.create(temperature=0)
# 整体评价:汇总所有诊断结果生成总结性评语
SUMMARY = LLM.DEEPSEEK_V4_FLASH.create(temperature=0.3)
# 内容润色:用户编辑后的文本做专业润色
POLISH = LLM.DEEPSEEK_V4_FLASH.create(temperature=0.3)
class BrowserPlugModel: