- 集成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方法重新构建全文搜索索引 - 优化索引触发器和表的维护流程
119 lines
4.4 KiB
Python
119 lines
4.4 KiB
Python
"""LLM-backed draft synthesis for skill learning."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
from typing import Any
|
|
|
|
from beaver.engine.providers.base import LLMProvider
|
|
from beaver.skills.learning.evidence import EvidencePacket
|
|
from beaver.memory.skills.models import SkillLearningCandidate
|
|
|
|
|
|
class SkillDraftSynthesizer:
|
|
async def synthesize_revision(
|
|
self,
|
|
candidate: SkillLearningCandidate,
|
|
evidence_packet: EvidencePacket,
|
|
provider: LLMProvider,
|
|
model: str,
|
|
) -> dict[str, Any]:
|
|
return await self._synthesize(candidate, evidence_packet, provider, model, "revise")
|
|
|
|
async def synthesize_new_skill(
|
|
self,
|
|
candidate: SkillLearningCandidate,
|
|
evidence_packet: EvidencePacket,
|
|
provider: LLMProvider,
|
|
model: str,
|
|
) -> dict[str, Any]:
|
|
return await self._synthesize(candidate, evidence_packet, provider, model, "new")
|
|
|
|
async def synthesize_merge(
|
|
self,
|
|
candidate: SkillLearningCandidate,
|
|
evidence_packet: EvidencePacket,
|
|
provider: LLMProvider,
|
|
model: str,
|
|
) -> dict[str, Any]:
|
|
return await self._synthesize(candidate, evidence_packet, provider, model, "merge")
|
|
|
|
async def _synthesize(
|
|
self,
|
|
candidate: SkillLearningCandidate,
|
|
evidence_packet: EvidencePacket,
|
|
provider: LLMProvider,
|
|
model: str,
|
|
action: str,
|
|
) -> dict[str, Any]:
|
|
prompt = self._build_prompt(candidate, evidence_packet, action)
|
|
response = await provider.chat(
|
|
messages=[
|
|
{
|
|
"role": "system",
|
|
"content": (
|
|
"You synthesize Beaver skill drafts from execution evidence. "
|
|
"Return only JSON with keys: frontmatter, content, change_reason."
|
|
),
|
|
},
|
|
{"role": "user", "content": prompt},
|
|
],
|
|
tools=None,
|
|
model=model,
|
|
max_tokens=4096,
|
|
temperature=0,
|
|
)
|
|
payload = self._parse_payload(response.content or "")
|
|
if payload:
|
|
return payload
|
|
return self._fallback_payload(candidate, evidence_packet, action)
|
|
|
|
@staticmethod
|
|
def _build_prompt(candidate: SkillLearningCandidate, evidence_packet: EvidencePacket, action: str) -> str:
|
|
return (
|
|
f"Action: {action}\n"
|
|
f"Candidate kind: {candidate.kind}\n"
|
|
f"Reason: {candidate.reason}\n"
|
|
f"Related skills: {candidate.related_skill_names}\n"
|
|
f"Task summaries:\n- " + "\n- ".join(evidence_packet.task_summaries)
|
|
+ "\n\nSession excerpts:\n" + "\n\n".join(evidence_packet.session_excerpts)
|
|
+ "\n\nReturn JSON only."
|
|
)
|
|
|
|
@staticmethod
|
|
def _parse_payload(content: str) -> dict[str, Any]:
|
|
cleaned = content.strip()
|
|
if cleaned.startswith("```"):
|
|
lines = cleaned.splitlines()
|
|
if len(lines) >= 3 and lines[0].startswith("```") and lines[-1].startswith("```"):
|
|
cleaned = "\n".join(lines[1:-1]).strip()
|
|
try:
|
|
payload = json.loads(cleaned)
|
|
except json.JSONDecodeError:
|
|
return {}
|
|
if not isinstance(payload, dict):
|
|
return {}
|
|
frontmatter = payload.get("frontmatter")
|
|
content_value = payload.get("content")
|
|
if not isinstance(frontmatter, dict) or not isinstance(content_value, str):
|
|
return {}
|
|
return {
|
|
"frontmatter": frontmatter,
|
|
"content": content_value.strip(),
|
|
"change_reason": str(payload.get("change_reason") or ""),
|
|
}
|
|
|
|
@staticmethod
|
|
def _fallback_payload(candidate: SkillLearningCandidate, evidence_packet: EvidencePacket, action: str) -> dict[str, Any]:
|
|
related = candidate.related_skill_names[0] if candidate.related_skill_names else "generated-skill"
|
|
title = related.replace("_", "-")
|
|
content = "\n".join(f"- {item}" for item in evidence_packet.task_summaries[:5]) or "- No evidence captured."
|
|
return {
|
|
"frontmatter": {
|
|
"description": candidate.reason or f"Auto-generated {action} draft for {title}.",
|
|
"tools": [],
|
|
},
|
|
"content": f"# {title}\n\n## Evidence\n\n{content}\n",
|
|
"change_reason": candidate.reason or f"Fallback {action} synthesis.",
|
|
}
|