- 集成MCP连接管理器,支持MCP服务器连接 - 添加多种内置工具:ClarifyTool、CronTool、DelegateTool、ExecuteCodeTool、 PatchFileTool、ProcessTool、SendMessageTool、SpawnTool、TerminalTool、 TodoTool、WebFetchTool、WebSearchTool、WriteFileTool等 - 实现工具注册和装配功能 - 添加技能选择上下文参数 - 支持思考模式控制参数thinking_enabled feat(coordinator): 重构任务执行计划器参数命名 - 将learning_candidate_enabled重命名为allow_candidate_generation - 更新TeamGraphScheduler中的参数传递 - 修改LocalAgentRunner中的相关参数处理 - 更新README文档中的相应描述 refactor(context): 标准化工具调用参数格式 - 添加_json导入用于参数序列化 - 实现_provider_tool_calls方法标准化OpenAI兼容的工具调用载荷 - 修复工具调用中参数非字符串类型的序列化问题 refactor(session): 优化消息历史记录过滤逻辑 - 修改get_messages_as_conversation为基于运行状态过滤消息 - 排除未完成、失败或错误结束的运行记录 - 改进对话历史的可见性控制机制 fix(store): 修复FTS索引重建逻辑 - 添加异常处理防止FTS索引创建失败 - 实现_rebuild_fts_index方法重新构建全文搜索索引 - 优化索引触发器和表的维护流程
100 lines
3.1 KiB
Python
100 lines
3.1 KiB
Python
"""Beaver provider 子系统的统一契约。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from abc import ABC, abstractmethod
|
|
from dataclasses import dataclass, field
|
|
from typing import Any
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class ToolCallRequest:
|
|
"""模型返回的一次工具调用请求。"""
|
|
|
|
id: str
|
|
name: str
|
|
arguments: dict[str, Any]
|
|
|
|
|
|
@dataclass(slots=True)
|
|
class LLMResponse:
|
|
"""统一的模型响应结构。"""
|
|
|
|
content: str | None
|
|
tool_calls: list[ToolCallRequest] = field(default_factory=list)
|
|
finish_reason: str = "stop"
|
|
usage: dict[str, Any] = field(default_factory=dict)
|
|
reasoning_content: str | None = None
|
|
provider_name: str | None = None
|
|
model: str | None = None
|
|
|
|
@property
|
|
def has_tool_calls(self) -> bool:
|
|
return bool(self.tool_calls)
|
|
|
|
|
|
class LLMProvider(ABC):
|
|
"""所有 provider 实现必须遵守的统一接口。"""
|
|
|
|
def __init__(
|
|
self,
|
|
api_key: str | None = None,
|
|
api_base: str | None = None,
|
|
request_timeout_seconds: float | None = None,
|
|
) -> None:
|
|
self.api_key = api_key
|
|
self.api_base = api_base
|
|
self.request_timeout_seconds = (
|
|
max(1.0, float(request_timeout_seconds))
|
|
if request_timeout_seconds is not None
|
|
else None
|
|
)
|
|
|
|
@staticmethod
|
|
def sanitize_empty_content(messages: list[dict[str, Any]]) -> list[dict[str, Any]]:
|
|
"""清理 provider 普遍不接受的空 content。"""
|
|
|
|
result: list[dict[str, Any]] = []
|
|
for message in messages:
|
|
content = message.get("content")
|
|
if isinstance(content, str) and content == "":
|
|
clean = dict(message)
|
|
clean["content"] = None if (message.get("role") == "assistant" and message.get("tool_calls")) else "(empty)"
|
|
result.append(clean)
|
|
continue
|
|
if isinstance(content, list):
|
|
filtered = [
|
|
item
|
|
for item in content
|
|
if not (
|
|
isinstance(item, dict)
|
|
and item.get("type") in ("text", "input_text", "output_text")
|
|
and not item.get("text")
|
|
)
|
|
]
|
|
if len(filtered) != len(content):
|
|
clean = dict(message)
|
|
clean["content"] = filtered or "(empty)"
|
|
if message.get("role") == "assistant" and message.get("tool_calls") and not filtered:
|
|
clean["content"] = None
|
|
result.append(clean)
|
|
continue
|
|
result.append(message)
|
|
return result
|
|
|
|
@abstractmethod
|
|
async def chat(
|
|
self,
|
|
messages: list[dict[str, Any]],
|
|
tools: list[dict[str, Any]] | None = None,
|
|
model: str | None = None,
|
|
max_tokens: int = 4096,
|
|
temperature: float = 0.7,
|
|
thinking_enabled: bool | None = None,
|
|
) -> LLMResponse:
|
|
"""统一聊天接口。"""
|
|
|
|
@abstractmethod
|
|
def get_default_model(self) -> str:
|
|
"""返回 provider 的默认模型名。"""
|