B1: 项目脚手架 + 数据模型 + 租户管理 - Task 1.1: FastAPI 项目脚手架、SQLite + async SQLAlchemy - Task 1.2: 7 个数据模型 (Tenant, TenantConfig, DigitalEmployee, Conversation, Message, KnowledgeBase, Document) - Task 1.3: 租户 CRUD API + LLM 配置(含 API Key AES 加密) B2: 数字员工配置 + LLM Provider 抽象层 - Task 2.1: 数字员工 CRUD API(关联知识库) - Task 2.2: BaseLLMProvider 抽象接口 + OpenAI/Qwen Provider - Task 2.3: Provider 动态实例化 + test-provider 端点 验证: 26 个测试全部通过 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
35 lines
844 B
Python
35 lines
844 B
Python
"""LLM Provider 基础抽象层"""
|
|
from abc import ABC, abstractmethod
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class LLMMessage:
|
|
role: str # "system", "user", "assistant"
|
|
content: str
|
|
|
|
|
|
@dataclass
|
|
class LLMResponse:
|
|
content: str
|
|
model: str
|
|
usage: dict # {"total_tokens": int, "prompt_tokens": int, "completion_tokens": int}
|
|
|
|
|
|
class BaseLLMProvider(ABC):
|
|
"""LLM Provider 抽象基类"""
|
|
|
|
@abstractmethod
|
|
async def chat(self, messages: list[LLMMessage]) -> LLMResponse:
|
|
"""非流式对话"""
|
|
pass
|
|
|
|
@abstractmethod
|
|
async def chat_stream(self, messages: list[LLMMessage]) -> str:
|
|
"""流式对话,返回 token 异步生成器"""
|
|
pass
|
|
|
|
@abstractmethod
|
|
async def embed(self, texts: list[str]) -> list[list[float]]:
|
|
"""生成嵌入向量"""
|
|
pass |