feat(llm): 新增 LLM 智能增强服务(Agnes client + 4 项 enrichment 任务 + admin API + migration)

This commit is contained in:
Mavis
2026-06-08 14:24:00 +08:00
parent 40be1e6861
commit ffd667f0dc
7 changed files with 698 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"""LLM 服务:客户端 + 智能增强。"""
from app.services.llm.client import LlmClient, client # noqa: F401
from app.services.llm.enrichment import ( # noqa: F401
enrich_article,
enrichment_loop,
get_setting,
)