Files
diary-news/backend/app/services/llm/__init__.py

8 lines
229 B
Python

"""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,
)