14 lines
309 B
Python
14 lines
309 B
Python
"""AI 模型场景配置。
|
|
|
|
集中管理爬虫服务使用的模型,切换模型只需修改此文件。
|
|
"""
|
|
|
|
from app.ai.models import LLM
|
|
|
|
|
|
class SpiderModel:
|
|
"""爬虫 AI 场景模型。"""
|
|
|
|
# 页面内容理解与结构化提取
|
|
CONTENT_EXTRACT = LLM.DOUBAO_SEED_LITE.create(temperature=0)
|