Initial commit: InternalAuditInterprise
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
"""LLM Provider 抽象层。
|
||||
|
||||
通过统一接口隔离 LLM 实现,使开发期可用公网千问、生产期无缝切换本地 vLLM。
|
||||
强约束:"数据零出域"红线由 provider 工厂在 prod 环境拦截公网 Provider。
|
||||
"""
|
||||
|
||||
from app.llm.base import ChatMessage, LLMProvider, LLMResponse
|
||||
from app.llm.factory import get_llm_provider
|
||||
|
||||
__all__ = ["ChatMessage", "LLMProvider", "LLMResponse", "get_llm_provider"]
|
||||
Reference in New Issue
Block a user