重构简历优化
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user