feat(#57): InferenceBackend 抽象接口定义(PRD 5.6 loadModel/infer/health/unload)
将原先内联在 gateway.py 的薄弱 InferenceBackend 提炼为正式抽象基类(ABC),
对齐 PRD 5.6「⑥ 部署底座」契约,为 #44/#45/#58/#59 各类后端提供统一接入点。
实现内容:
- 新增 core/llm-gateway/backends.py:
· InferenceBackend(ABC):PRD 要求的四个生命周期方法 load_model / infer /
health_check / unload(均幂等),能力声明 capabilities,并保留 generate()
向后兼容(转发到 infer().text)
· 值对象 BackendCapabilities(streaming/max_concurrency/on_premises/modalities)
/ BackendHealth(healthy/detail/checked_at)/ InferResult(text+审计元信息)
· LocalBackend / CloudBackend 占位实现迁移至此并继承新 ABC,补齐生命周期
· default_registry + build_backend:配置驱动切换后端(未知 name 报错并提示已知项)
- gateway.py:删除内联定义,改为从 backends.py 再导出,LLMGateway.ask() 调用路径不变
- __init__.py:再导出新符号(BackendCapabilities/BackendHealth/InferResult/
build_backend/default_registry),InferenceBackend 现为 ABC
设计原则:业务代码仅依赖接口,不感知硬件;切换后端 = 换实现 + 改配置,业务零改动。
测试:core/llm-gateway 全量 97 个用例通过(新增 27 + 既有 70,零回归)。
运行:python -m unittest discover -s tests -v(在 core/llm-gateway 目录下)
This commit is contained in:
@@ -16,6 +16,9 @@
|
||||
高利害信度阈值 → 人工确认。
|
||||
- gateway 混合网关主编排(EPIC #6 主体):路由 → 生成 → 溯源校验 →
|
||||
DLP 出站防线,端到端闭环。
|
||||
- backends 推理后端抽象(Issue #57,PRD 5.6):``InferenceBackend`` 抽象接口
|
||||
(``load_model / infer / health_check / unload``),5090 实现(Triton/ONNX)
|
||||
与昇腾实现(ACL/CANN)均实现该接口;业务代码仅依赖接口,不感知硬件。
|
||||
|
||||
测试:`python -m unittest discover -s tests -v`(在 core/llm-gateway 目录下执行)。
|
||||
"""
|
||||
@@ -45,10 +48,17 @@ from .hallucination import (
|
||||
GuardVerdict,
|
||||
HallucinationGuard,
|
||||
)
|
||||
from .backends import (
|
||||
BackendCapabilities,
|
||||
BackendHealth,
|
||||
InferResult,
|
||||
InferenceBackend,
|
||||
build_backend,
|
||||
default_registry,
|
||||
)
|
||||
from .gateway import (
|
||||
CloudBackend,
|
||||
GatewayResult,
|
||||
InferenceBackend,
|
||||
LLMGateway,
|
||||
LocalBackend,
|
||||
)
|
||||
@@ -62,7 +72,10 @@ __all__ = [
|
||||
"PromptVersion", "PromptChange", "PromptRegistry", "validate_semver",
|
||||
# hallucination
|
||||
"GuardVerdict", "HallucinationGuard",
|
||||
# backends (Issue #57)
|
||||
"BackendCapabilities", "BackendHealth", "InferResult", "InferenceBackend",
|
||||
"build_backend", "default_registry",
|
||||
# gateway
|
||||
"InferenceBackend", "LocalBackend", "CloudBackend",
|
||||
"LocalBackend", "CloudBackend",
|
||||
"GatewayResult", "LLMGateway",
|
||||
]
|
||||
|
||||
@@ -0,0 +1,301 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""iAOP-Core · LLM 网关 —— 推理后端抽象接口(Issue #57,PRD 5.6)。
|
||||
|
||||
PRD 5.6「⑥ 部署底座」明确要求:
|
||||
|
||||
定义统一 ``InferenceBackend`` 接口(``loadModel / infer / health / unload``),
|
||||
5090 实现(Triton/ONNX)与昇腾实现(ACL/CANN)均实现该接口;
|
||||
**业务代码仅依赖接口,不感知硬件**;切换后端 = 改适配层配置,不动业务代码。
|
||||
|
||||
本模块把原先内联在 ``gateway.py`` 里的薄弱 ``InferenceBackend`` 提炼为正式的
|
||||
抽象基类(ABC),并补齐 PRD 要求的生命周期方法与能力声明,使后续子任务:
|
||||
|
||||
- #44 本地 70B 模型接入与推理封装(vLLM/TGI)
|
||||
- #45 云端 API(Qwen/DeepSeek)接入与安全网关
|
||||
- #58 GPU 后端实现(NVIDIA,Triton/ONNX)
|
||||
- #59 昇腾 NPU 后端适配(CANN/ACL)
|
||||
|
||||
都能在**同一契约**下落地,业务编排(``LLMGateway``)零改动。
|
||||
|
||||
设计要点
|
||||
--------
|
||||
1. **接口最小且完备**:仅约束 PRD 列出的四个生命周期动作 ``load_model / infer /
|
||||
health_check / unload``,外加能力声明 ``BackendCapabilities``(流式 / 最大并发 /
|
||||
是否出厂内闭环),供路由与调度决策。
|
||||
2. **向后兼容**:保留 ``generate(prompt, context)`` 便捷方法(默认转发到
|
||||
``infer``),既有 ``LLMGateway.ask()`` 调用路径不变;老测试不受影响。
|
||||
3. **可注入 / 可 mock**:所有方法纯逻辑、无外部 IO 依赖;真实硬件/网络交互由
|
||||
各子类在 ``infer`` 内部完成(子类负责导入厂商 SDK 并做 ``ImportError`` 容错)。
|
||||
4. **健康探针**:``health_check`` 返回结构化 ``BackendHealth``,供可用性监控探针
|
||||
(Issue #61)与灰度发布(PRD 5.6 配置点)判定后端是否就绪。
|
||||
|
||||
测试:``python -m unittest discover -s tests -v``(在 core/llm-gateway 目录下执行)。
|
||||
"""
|
||||
from __future__ import annotations
|
||||
|
||||
from abc import ABC, abstractmethod
|
||||
from dataclasses import dataclass, field
|
||||
from datetime import datetime, timezone
|
||||
from typing import Dict, Iterator, List, Optional, Sequence
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 值对象:能力声明 / 健康状态 / 推理结果
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class BackendCapabilities:
|
||||
"""后端能力声明,供路由 / 调度 / 灰度决策。
|
||||
|
||||
Attributes:
|
||||
streaming: 是否支持流式输出(逐 token 返回)。
|
||||
max_concurrency: 最大并发推理数(None 表示不限 / 由外部限流)。
|
||||
on_premises: 是否数据出厂内闭环(本地后端 True,云端 False)。
|
||||
modalities: 支持的输出形态,如 ``("text",)``。
|
||||
"""
|
||||
|
||||
streaming: bool = False
|
||||
max_concurrency: Optional[int] = None
|
||||
on_premises: bool = False
|
||||
modalities: Sequence[str] = ("text",)
|
||||
|
||||
def supports(self, modality: str) -> bool:
|
||||
"""是否支持某种输出形态(text / image / ...)。"""
|
||||
return modality in self.modalities
|
||||
|
||||
def to_dict(self) -> Dict[str, object]:
|
||||
return {
|
||||
"streaming": self.streaming,
|
||||
"max_concurrency": self.max_concurrency,
|
||||
"on_premises": self.on_premises,
|
||||
"modalities": list(self.modalities),
|
||||
}
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class BackendHealth:
|
||||
"""后端健康探针结果(Issue #61 可用性监控探针消费)。"""
|
||||
|
||||
healthy: bool
|
||||
detail: str = ""
|
||||
checked_at: str = field(
|
||||
default_factory=lambda: datetime.now(timezone.utc).isoformat())
|
||||
|
||||
def to_dict(self) -> Dict[str, object]:
|
||||
return {
|
||||
"healthy": self.healthy,
|
||||
"detail": self.detail,
|
||||
"checked_at": self.checked_at,
|
||||
}
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class InferResult:
|
||||
"""一次 ``infer`` 的结构化结果(含审计所需元信息)。
|
||||
|
||||
保留 ``text`` 主输出以兼容旧 ``generate`` 返回 ``str`` 的调用方;
|
||||
``prompt_tokens`` / ``completion_tokens`` 供计费与配额(PRD 5.6 配置点)。
|
||||
"""
|
||||
|
||||
text: str
|
||||
backend_name: str
|
||||
model_id: str = ""
|
||||
prompt_tokens: Optional[int] = None
|
||||
completion_tokens: Optional[int] = None
|
||||
latency_ms: Optional[float] = None
|
||||
|
||||
def to_dict(self) -> Dict[str, object]:
|
||||
return {
|
||||
"text": self.text,
|
||||
"backend_name": self.backend_name,
|
||||
"model_id": self.model_id,
|
||||
"prompt_tokens": self.prompt_tokens,
|
||||
"completion_tokens": self.completion_tokens,
|
||||
"latency_ms": self.latency_ms,
|
||||
}
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 抽象接口(PRD 5.6:loadModel / infer / health / unload)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class InferenceBackend(ABC):
|
||||
"""推理后端抽象接口(对齐 PRD 5.6 ``InferenceBackend`` 契约)。
|
||||
|
||||
业务编排(``LLMGateway``)只依赖本接口,**不感知**具体硬件 / 厂商;
|
||||
切换后端 = 换实现类 + 改配置,业务代码不动。子类必须实现四个生命周期方法:
|
||||
|
||||
- :meth:`load_model`:加载 / 绑定模型(可幂等,重复加载返回已加载实例)。
|
||||
- :meth:`infer`:给定 prompt 与 RAG 上下文生成回答(核心推理动作)。
|
||||
- :meth:`health_check`:探针,返回 :class:`BackendHealth`。
|
||||
- :meth:`unload`:释放模型资源(可幂等)。
|
||||
|
||||
便捷方法 :meth:`generate` 默认转发到 :meth:`infer` 并只取 ``text``,
|
||||
保留与旧 ``LLMGateway.ask()`` 的二进制兼容。
|
||||
"""
|
||||
|
||||
#: 后端短名(local-70b / cloud-api / gpu-triton / npu-cann ...),子类覆盖。
|
||||
name: str = "base"
|
||||
|
||||
@property
|
||||
def capabilities(self) -> BackendCapabilities:
|
||||
"""后端能力声明,子类按需覆盖。默认:非流式、出厂外、仅文本。"""
|
||||
return BackendCapabilities()
|
||||
|
||||
# -- 生命周期(子类必须实现)------------------------------------------
|
||||
|
||||
@abstractmethod
|
||||
def load_model(self, model_id: str) -> None:
|
||||
"""加载 / 绑定指定模型。幂等:重复加载同一 model_id 不报错。"""
|
||||
|
||||
@abstractmethod
|
||||
def infer(self, prompt: str,
|
||||
context: Optional[Sequence[str]] = None) -> InferResult:
|
||||
"""根据 prompt 与 RAG 上下文生成回答(核心推理动作)。"""
|
||||
|
||||
@abstractmethod
|
||||
def health_check(self) -> BackendHealth:
|
||||
"""健康探针,返回结构化健康状态。"""
|
||||
|
||||
@abstractmethod
|
||||
def unload(self) -> None:
|
||||
"""释放模型资源。幂等:未加载时调用不报错。"""
|
||||
|
||||
# -- 向后兼容便捷方法 --------------------------------------------------
|
||||
|
||||
def generate(self, prompt: str, context: Sequence[str]) -> str:
|
||||
"""旧调用入口:等价于 ``infer(prompt, context).text``。
|
||||
|
||||
保留是为了不破坏 ``LLMGateway.ask()`` 既有的 ``backend.generate(...)``
|
||||
调用路径;新代码应直接使用 :meth:`infer` 拿到完整 :class:`InferResult`。
|
||||
"""
|
||||
return self.infer(prompt, context).text
|
||||
|
||||
def __repr__(self) -> str: # pragma: no cover - 调试辅助
|
||||
return f"<{type(self).__name__} name={self.name!r}>"
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 占位实现(子任务 #44 / #45 / #58 / #59 将各自替换为真实后端)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class _PlaceholderBackend(InferenceBackend):
|
||||
"""占位后端公共骨架:固定回显答案 + 引用溯源回显,供端到端测试与演示。
|
||||
|
||||
真实后端(#44 本地 70B / #45 云端 API / #58 GPU / #59 昇腾)继承本类后,
|
||||
只需覆盖 :meth:`infer` 的生成逻辑与 :meth:`health_check` 的探针实现即可;
|
||||
生命周期与能力声明已由本类 / 子类提供。
|
||||
"""
|
||||
|
||||
placeholder_prefix = "[占位]"
|
||||
|
||||
def __init__(self, model_id: str, echo_context: bool = True) -> None:
|
||||
self._model_id = model_id
|
||||
self._loaded = False
|
||||
self._loaded_model_id: Optional[str] = None
|
||||
self.echo_context = echo_context
|
||||
|
||||
# 生命周期
|
||||
def load_model(self, model_id: str) -> None:
|
||||
# 幂等:重复加载同一 model_id 视作成功;换模型也允许(演示用)。
|
||||
self._loaded = True
|
||||
self._loaded_model_id = model_id or self._model_id
|
||||
|
||||
def infer(self, prompt: str,
|
||||
context: Optional[Sequence[str]] = None) -> InferResult:
|
||||
if not self._loaded:
|
||||
# 演示态允许惰性自加载,真实后端可改为 raise RuntimeError("未加载模型")
|
||||
self.load_model(self._model_id)
|
||||
ctx = list(context or [])
|
||||
head = f"{self.placeholder_prefix} {prompt[:40]}"
|
||||
refs = ""
|
||||
if self.echo_context:
|
||||
for src in ctx[:3]:
|
||||
refs += f"\n[来源: {src}]"
|
||||
return InferResult(
|
||||
text=head + refs,
|
||||
backend_name=self.name,
|
||||
model_id=self._loaded_model_id or self._model_id,
|
||||
)
|
||||
|
||||
def health_check(self) -> BackendHealth:
|
||||
return BackendHealth(
|
||||
healthy=self._loaded,
|
||||
detail="loaded" if self._loaded else "not_loaded",
|
||||
)
|
||||
|
||||
def unload(self) -> None:
|
||||
# 幂等:未加载也安全
|
||||
self._loaded = False
|
||||
self._loaded_model_id = None
|
||||
|
||||
|
||||
class LocalBackend(_PlaceholderBackend):
|
||||
"""本地 70B 后端占位实现:数据不出厂(敏感 / 核心走此通道)。
|
||||
|
||||
子任务 #44 / #58 将替换 ``infer`` 为真实本地模型推理封装(vLLM/TGI/Triton)。
|
||||
"""
|
||||
|
||||
name = "local-70b"
|
||||
placeholder_prefix = "[本地70B占位]"
|
||||
|
||||
def __init__(self, echo_context: bool = True,
|
||||
model_id: str = "local-70b-base") -> None:
|
||||
super().__init__(model_id=model_id, echo_context=echo_context)
|
||||
|
||||
@property
|
||||
def capabilities(self) -> BackendCapabilities:
|
||||
# 本地后端:出厂内闭环、可流式、单卡典型并发 8(演示默认值)
|
||||
return BackendCapabilities(
|
||||
streaming=True, max_concurrency=8, on_premises=True,
|
||||
modalities=("text",))
|
||||
|
||||
|
||||
class CloudBackend(_PlaceholderBackend):
|
||||
"""云端 API 后端占位实现:仅接收 DLP 放行的脱敏 / 通用内容。
|
||||
|
||||
子任务 #45 将替换为 Qwen / DeepSeek API 接入 + 安全网关。
|
||||
"""
|
||||
|
||||
name = "cloud-api"
|
||||
placeholder_prefix = "[云端API占位]"
|
||||
|
||||
def __init__(self, echo_context: bool = True,
|
||||
model_id: str = "cloud-qwen-plus") -> None:
|
||||
super().__init__(model_id=model_id, echo_context=echo_context)
|
||||
|
||||
@property
|
||||
def capabilities(self) -> BackendCapabilities:
|
||||
# 云端后端:数据出厂、支持流式、并发受厂商配额限制(演示默认 4)
|
||||
return BackendCapabilities(
|
||||
streaming=True, max_concurrency=4, on_premises=False,
|
||||
modalities=("text",))
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 后端注册表(配置驱动切换,对齐 PRD「切换后端 = 改适配层配置」)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
def default_registry() -> Dict[str, type]:
|
||||
"""默认后端注册表:name → 实现类。新增后端在此登记一行即可被配置选用。"""
|
||||
return {
|
||||
"local-70b": LocalBackend,
|
||||
"cloud-api": CloudBackend,
|
||||
}
|
||||
|
||||
|
||||
def build_backend(name: str, **kwargs) -> InferenceBackend:
|
||||
"""按 name 从默认注册表构造后端实例(配置驱动切换的入口)。
|
||||
|
||||
未知 name 抛 ``ValueError``,列出已知项便于排错。
|
||||
"""
|
||||
registry = default_registry()
|
||||
cls = registry.get(name)
|
||||
if cls is None:
|
||||
known = ", ".join(sorted(registry))
|
||||
raise ValueError(f"未知推理后端 {name!r},已知: {known}")
|
||||
return cls(**kwargs)
|
||||
+18
-61
@@ -12,12 +12,15 @@
|
||||
- `router`(SensitivityRouter):敏感度分级路由(local / cloud / block);
|
||||
- `prompts`(PromptRegistry):提示词模板版本绑定(可复现);
|
||||
- `guard`(HallucinationGuard):引用溯源 + 信度阈值 → 人工确认;
|
||||
- `backends`(LocalBackend / CloudBackend):推理后端抽象(可注入)。
|
||||
- `backends`(InferenceBackend / LocalBackend / CloudBackend):推理后端抽象
|
||||
(可注入)。接口定义已提炼到 `backends.py`(Issue #57,对齐 PRD 5.6)。
|
||||
|
||||
设计说明:
|
||||
- 本版提供**编排闭环 + 后端抽象接口**,本地 70B / 云端 API 的具体接入
|
||||
由子任务 #44 / #45 实现;`LocalBackend` / `CloudBackend` 默认内置一个
|
||||
最小实现(返回固定占位答案 + 回显引用),供端到端测试与演示。
|
||||
- 推理后端契约(`loadModel / infer / health_check / unload`)见 `backends.py`,
|
||||
本模块仅消费其 `generate` / `name`,业务代码不感知具体硬件。
|
||||
|
||||
测试:`python -m unittest discover -s tests -v`(在 core/llm-gateway 目录下执行)。
|
||||
"""
|
||||
@@ -26,71 +29,25 @@ from __future__ import annotations
|
||||
import uuid
|
||||
from dataclasses import dataclass, field
|
||||
from datetime import datetime, timezone
|
||||
from typing import Callable, Dict, List, Optional, Sequence
|
||||
from typing import Dict, List, Optional, Sequence
|
||||
|
||||
from .dlp import DlpEngine
|
||||
from .router import RouteDecision, RouteTarget, SensitivityRouter
|
||||
from .prompts import PromptRegistry
|
||||
from .hallucination import GuardVerdict, HallucinationGuard
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 推理后端抽象(Issue #44 / #45 将实现具体后端,业务代码只依赖本接口)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class InferenceBackend:
|
||||
"""推理后端接口抽象(对齐 PRD 5.6 InferenceBackend 思想)。
|
||||
|
||||
业务代码只依赖本接口,不感知具体硬件/厂商;切换后端 = 换实现。
|
||||
子任务 #44(本地 70B)、#45(云端 Qwen/DeepSeek)将各自实现本接口。
|
||||
"""
|
||||
|
||||
name: str = "base"
|
||||
|
||||
def generate(self, prompt: str, context: Sequence[str]) -> str:
|
||||
"""根据 prompt 与 RAG 上下文生成回答。子类实现。"""
|
||||
raise NotImplementedError
|
||||
|
||||
|
||||
class LocalBackend(InferenceBackend):
|
||||
"""本地 70B 后端占位实现:数据不出厂(敏感/核心走此通道)。
|
||||
|
||||
子任务 #44 将替换为真实本地模型推理封装(vLLM/TGI 等)。
|
||||
"""
|
||||
|
||||
name = "local-70b"
|
||||
|
||||
def __init__(self, echo_context: bool = True) -> None:
|
||||
self.echo_context = echo_context
|
||||
|
||||
def generate(self, prompt: str, context: Sequence[str]) -> str:
|
||||
head = f"[本地70B占位] {prompt[:40]}"
|
||||
refs = ""
|
||||
if self.echo_context:
|
||||
for i, src in enumerate(context[:3], 1):
|
||||
refs += f"\n[来源: {src}]"
|
||||
return head + refs
|
||||
|
||||
|
||||
class CloudBackend(InferenceBackend):
|
||||
"""云端 API 后端占位实现:仅接收 DLP 放行的脱敏/通用内容。
|
||||
|
||||
子任务 #45 将替换为 Qwen/DeepSeek API 接入 + 安全网关。
|
||||
"""
|
||||
|
||||
name = "cloud-api"
|
||||
|
||||
def __init__(self, echo_context: bool = True) -> None:
|
||||
self.echo_context = echo_context
|
||||
|
||||
def generate(self, prompt: str, context: Sequence[str]) -> str:
|
||||
head = f"[云端API占位] {prompt[:40]}"
|
||||
refs = ""
|
||||
if self.echo_context:
|
||||
for i, src in enumerate(context[:3], 1):
|
||||
refs += f"\n[来源: {src}]"
|
||||
return head + refs
|
||||
|
||||
# 推理后端抽象(Issue #57):契约定义在 backends.py,这里仅做再导出,
|
||||
# 保持 ``from .gateway import InferenceBackend/LocalBackend/CloudBackend`` 的
|
||||
# 向后兼容(既有 import 路径与 ``LLMGateway`` 依赖均不变)。
|
||||
from .backends import (
|
||||
BackendCapabilities,
|
||||
BackendHealth,
|
||||
CloudBackend,
|
||||
InferResult,
|
||||
InferenceBackend,
|
||||
LocalBackend,
|
||||
build_backend,
|
||||
default_registry,
|
||||
)
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 网关输出
|
||||
|
||||
@@ -0,0 +1,301 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""推理后端抽象接口(backends,Issue #57,PRD 5.6)单元测试。
|
||||
|
||||
覆盖:
|
||||
- 抽象基类不可直接实例化(必须由子类实现四个生命周期方法);
|
||||
- 值对象 BackendCapabilities / BackendHealth / InferResult 的字段与序列化;
|
||||
- LocalBackend / CloudBackend 占位实现的生命周期(load/infer/health/unload)与幂等;
|
||||
- 向后兼容:``generate`` 转发到 ``infer`` 并返回 ``text``;
|
||||
- 能力声明差异(本地出厂内闭环 / 云端出厂外);
|
||||
- 注册表与 ``build_backend`` 的配置驱动构造 + 未知后端报错。
|
||||
"""
|
||||
import os
|
||||
import sys
|
||||
import unittest
|
||||
from abc import ABC
|
||||
|
||||
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
||||
import _bootstrap # noqa: F401
|
||||
|
||||
from llm_gateway.backends import ( # noqa: E402
|
||||
BackendCapabilities,
|
||||
BackendHealth,
|
||||
CloudBackend,
|
||||
InferResult,
|
||||
InferenceBackend,
|
||||
LocalBackend,
|
||||
_PlaceholderBackend,
|
||||
build_backend,
|
||||
default_registry,
|
||||
)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 抽象基类契约
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class AbstractionContractTest(unittest.TestCase):
|
||||
"""PRD 5.6:InferenceBackend 是抽象接口,业务代码只依赖它。"""
|
||||
|
||||
def test_cannot_instantiate_abstract_base(self):
|
||||
# 缺少四个抽象方法 → 不能实例化
|
||||
with self.assertRaises(TypeError):
|
||||
InferenceBackend() # noqa: E721
|
||||
|
||||
def test_is_abc_subclass(self):
|
||||
self.assertTrue(issubclass(InferenceBackend, ABC))
|
||||
|
||||
def test_required_abstract_methods(self):
|
||||
# PRD 5.6 明列的生命周期动作
|
||||
abstract = InferenceBackend.__abstractmethods__
|
||||
for name in ("load_model", "infer", "health_check", "unload"):
|
||||
self.assertIn(name, abstract)
|
||||
|
||||
def test_concrete_backends_are_inference_backends(self):
|
||||
for cls in (LocalBackend, CloudBackend):
|
||||
self.assertTrue(issubclass(cls, InferenceBackend),
|
||||
f"{cls.__name__} 必须实现 InferenceBackend")
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 值对象
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class BackendCapabilitiesTest(unittest.TestCase):
|
||||
def test_defaults(self):
|
||||
cap = BackendCapabilities()
|
||||
self.assertFalse(cap.streaming)
|
||||
self.assertIsNone(cap.max_concurrency)
|
||||
self.assertFalse(cap.on_premises)
|
||||
self.assertEqual(cap.modalities, ("text",))
|
||||
|
||||
def test_supports_modality(self):
|
||||
cap = BackendCapabilities(modalities=("text", "image"))
|
||||
self.assertTrue(cap.supports("text"))
|
||||
self.assertTrue(cap.supports("image"))
|
||||
self.assertFalse(cap.supports("audio"))
|
||||
|
||||
def test_to_dict_roundtrip(self):
|
||||
cap = BackendCapabilities(streaming=True, max_concurrency=4,
|
||||
on_premises=False, modalities=("text",))
|
||||
d = cap.to_dict()
|
||||
self.assertEqual(d["streaming"], True)
|
||||
self.assertEqual(d["max_concurrency"], 4)
|
||||
self.assertEqual(d["modalities"], ["text"])
|
||||
|
||||
|
||||
class BackendHealthTest(unittest.TestCase):
|
||||
def test_fields(self):
|
||||
h = BackendHealth(healthy=True, detail="ok")
|
||||
self.assertTrue(h.healthy)
|
||||
self.assertEqual(h.detail, "ok")
|
||||
self.assertTrue(h.checked_at) # 自动生成时间戳
|
||||
|
||||
def test_to_dict(self):
|
||||
d = BackendHealth(healthy=False, detail="down").to_dict()
|
||||
self.assertEqual(d["healthy"], False)
|
||||
self.assertIn("checked_at", d)
|
||||
|
||||
|
||||
class InferResultTest(unittest.TestCase):
|
||||
def test_required_fields(self):
|
||||
r = InferResult(text="hello", backend_name="local-70b")
|
||||
self.assertEqual(r.text, "hello")
|
||||
self.assertEqual(r.backend_name, "local-70b")
|
||||
self.assertIsNone(r.prompt_tokens)
|
||||
|
||||
def test_to_dict(self):
|
||||
r = InferResult(text="a", backend_name="b", model_id="m",
|
||||
prompt_tokens=3, completion_tokens=5)
|
||||
d = r.to_dict()
|
||||
self.assertEqual(d["text"], "a")
|
||||
self.assertEqual(d["prompt_tokens"], 3)
|
||||
self.assertEqual(d["completion_tokens"], 5)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 占位实现生命周期
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class PlaceholderLifecycleTest(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.b = LocalBackend()
|
||||
|
||||
def test_health_reflects_load_state(self):
|
||||
# 未加载 → 不健康
|
||||
self.assertFalse(self.b.health_check().healthy)
|
||||
self.b.load_model("local-70b-base")
|
||||
self.assertTrue(self.b.health_check().healthy)
|
||||
|
||||
def test_load_is_idempotent(self):
|
||||
self.b.load_model("local-70b-base")
|
||||
# 重复加载同一 model_id 不报错
|
||||
self.b.load_model("local-70b-base")
|
||||
self.assertTrue(self.b.health_check().healthy)
|
||||
|
||||
def test_infer_lazy_loads_when_not_loaded(self):
|
||||
# 演示态:未显式 load_model 也能 infer(惰性自加载)
|
||||
r = self.b.infer("炉温是多少", context=["SOP-炉温"])
|
||||
self.assertIsInstance(r, InferResult)
|
||||
self.assertEqual(r.backend_name, "local-70b")
|
||||
self.assertIn("炉温是多少", r.text)
|
||||
self.assertIn("[来源: SOP-炉温]", r.text)
|
||||
|
||||
def test_infer_after_explicit_load(self):
|
||||
self.b.load_model("local-70b-base")
|
||||
r = self.b.infer("hello")
|
||||
self.assertEqual(r.model_id, "local-70b-base")
|
||||
self.assertIn("hello", r.text)
|
||||
|
||||
def test_unload_is_idempotent(self):
|
||||
self.b.load_model("local-70b-base")
|
||||
self.b.unload()
|
||||
self.assertFalse(self.b.health_check().healthy)
|
||||
# 未加载再 unload 也不报错
|
||||
self.b.unload()
|
||||
|
||||
def test_echo_context_disabled(self):
|
||||
b = LocalBackend(echo_context=False)
|
||||
b.load_model("m")
|
||||
r = b.infer("q", context=["src1", "src2"])
|
||||
self.assertNotIn("[来源:", r.text)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 向后兼容:generate 转发到 infer
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class BackwardCompatGenerateTest(unittest.TestCase):
|
||||
def test_generate_returns_text_of_infer(self):
|
||||
b = CloudBackend()
|
||||
b.load_model("cloud-qwen-plus")
|
||||
txt = b.generate("海绵钛是什么", context=["科普手册"])
|
||||
# 与 infer().text 一致
|
||||
self.assertEqual(txt, b.infer("海绵钛是什么", context=["科普手册"]).text)
|
||||
self.assertIn("云端API占位", txt)
|
||||
self.assertIn("[来源: 科普手册]", txt)
|
||||
|
||||
def test_gateway_still_works_with_new_backends(self):
|
||||
# 集成校验:LLMGateway.ask() 经 generate 路径仍正常(不导入失败)。
|
||||
# 复用 test_gateway.py 的模板配置加载 prompts,避免默认空注册表 KeyError。
|
||||
from llm_gateway.dlp import DlpEngine
|
||||
from llm_gateway.gateway import LLMGateway
|
||||
from llm_gateway.prompts import PromptRegistry
|
||||
from llm_gateway.router import SensitivityRouter
|
||||
cfg_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||
prompts = PromptRegistry.from_template_config(
|
||||
os.path.join(cfg_dir, "config", "prompts.template.yaml"))
|
||||
router = SensitivityRouter.from_template_config(
|
||||
os.path.join(cfg_dir, "config", "router.template.yaml"))
|
||||
gw = LLMGateway(
|
||||
dlp=DlpEngine(), router=router, prompts=prompts,
|
||||
local=LocalBackend(), cloud=CloudBackend())
|
||||
result = gw.ask("海绵钛是什么", rag_context=["科普手册"])
|
||||
self.assertTrue(result.answer)
|
||||
# 后端占位回显特征仍在(证明走的是新 backends 的 generate 路径)
|
||||
self.assertIn("云端API占位", result.answer)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 能力声明差异(本地 vs 云端)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class CapabilitiesDifferenceTest(unittest.TestCase):
|
||||
def test_local_is_on_premises(self):
|
||||
cap = LocalBackend().capabilities
|
||||
self.assertTrue(cap.on_premises)
|
||||
self.assertTrue(cap.streaming)
|
||||
self.assertGreater(cap.max_concurrency, 0)
|
||||
|
||||
def test_cloud_is_off_premises(self):
|
||||
cap = CloudBackend().capabilities
|
||||
self.assertFalse(cap.on_premises)
|
||||
self.assertTrue(cap.streaming)
|
||||
|
||||
def test_local_and_cloud_differ_on_premises(self):
|
||||
# 关键差异:本地出厂内闭环,云端数据出厂
|
||||
self.assertNotEqual(
|
||||
LocalBackend().capabilities.on_premises,
|
||||
CloudBackend().capabilities.on_premises,
|
||||
)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 注册表与配置驱动构造
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class RegistryTest(unittest.TestCase):
|
||||
def test_default_registry_has_known_backends(self):
|
||||
reg = default_registry()
|
||||
self.assertIn("local-70b", reg)
|
||||
self.assertIn("cloud-api", reg)
|
||||
self.assertIs(reg["local-70b"], LocalBackend)
|
||||
self.assertIs(reg["cloud-api"], CloudBackend)
|
||||
|
||||
def test_build_backend_by_name(self):
|
||||
b = build_backend("local-70b")
|
||||
self.assertIsInstance(b, LocalBackend)
|
||||
self.assertIsInstance(b, InferenceBackend)
|
||||
self.assertEqual(b.name, "local-70b")
|
||||
|
||||
def test_build_unknown_backend_raises_with_hint(self):
|
||||
with self.assertRaises(ValueError) as ctx:
|
||||
build_backend("npu-cann") # 尚未实现(#59 才接入)
|
||||
self.assertIn("npu-cann", str(ctx.exception))
|
||||
self.assertIn("local-70b", str(ctx.exception)) # 提示已知项
|
||||
|
||||
def test_build_passes_kwargs(self):
|
||||
b = build_backend("cloud-api", echo_context=False)
|
||||
self.assertIsInstance(b, CloudBackend)
|
||||
self.assertFalse(b.echo_context)
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 自定义后端通过实现接口接入(证明「业务代码不感知硬件」)
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
|
||||
class CustomBackendImplementationTest(unittest.TestCase):
|
||||
"""模拟 #59 昇腾后端:只需实现四个方法即可被当作 InferenceBackend 使用。"""
|
||||
|
||||
def test_custom_backend_satisfies_interface(self):
|
||||
class NpuCannBackend(InferenceBackend):
|
||||
name = "npu-cann"
|
||||
|
||||
def __init__(self):
|
||||
self._loaded = False
|
||||
|
||||
def load_model(self, model_id):
|
||||
self._loaded = True
|
||||
|
||||
def infer(self, prompt, context=None):
|
||||
if not self._loaded:
|
||||
self.load_model("ascend-cann")
|
||||
return InferResult(text=f"[NPU] {prompt}", backend_name=self.name)
|
||||
|
||||
def health_check(self):
|
||||
return BackendHealth(healthy=self._loaded)
|
||||
|
||||
def unload(self):
|
||||
self._loaded = False
|
||||
|
||||
b = NpuCannBackend()
|
||||
self.assertIsInstance(b, InferenceBackend)
|
||||
self.assertFalse(b.health_check().healthy)
|
||||
b.load_model("ascend-cann")
|
||||
self.assertTrue(b.health_check().healthy)
|
||||
self.assertEqual(b.infer("q").text, "[NPU] q")
|
||||
# generate 兼容路径
|
||||
self.assertEqual(b.generate("q", context=[]), "[NPU] q")
|
||||
b.unload()
|
||||
self.assertFalse(b.health_check().healthy)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user