feat: AI 工具架构重构与微信增强 (0.2.17 → 0.2.22)
0.2.17 收束模型初始工具列表: - 仅暴露 query_capabilities/query_capability_detail/call_capability 三个入口 - API 能力统一通过 iAs HTTP API 封装,删除重复 YAML 工具 0.2.18 系统提示词拆分: - 固定系统提示词硬编码,动态附加部分 AI 可维护 - 新增 update_additional_system_prompt 能力和持久化 0.2.19 上下文增强与打断语义: - /new 拥有最高打断语义,取消运行中任务并清除当前 turn - raw_message JSONB 原文入库,群聊按 group_id 隔离作用域 - 工具调用说明替代动态附加系统提示词 0.2.20 微信输入中状态: - 改用官方 getconfig + sendtyping 流程,显式管理 typing 状态 0.2.21 API 文档功能分组: - /v1/api-docs 返回 groups,帮助 AI 按功能面发现接口 0.2.22 AI API 能力去重: - 移除与 HTTP endpoint 重复的专用能力,统一用 query_api_docs + call_http_api - 删除不再编译的 web/memory 工具文件
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
INSERT INTO ias_upgrade_logs (
|
||||
version,
|
||||
released_at,
|
||||
title,
|
||||
description,
|
||||
changes,
|
||||
modules
|
||||
) VALUES (
|
||||
'0.2.21',
|
||||
'2026-07-08T00:00:00+08:00',
|
||||
'HTTP API 功能分组说明',
|
||||
'HTTP API 文档新增功能分组索引,AI 可先查看 API 面向,再按关键词或 endpoint id 查询具体接口。',
|
||||
'[
|
||||
"HTTP API 文档新增功能分组说明,/v1/api-docs 会返回 groups,描述 system、updates、api-docs、web、mail、console、context 等 API 面向及主要功能。",
|
||||
"API 文档搜索会把功能分组的标题、说明、功能面和关键词纳入匹配;例如查询未读或邮箱目录可直接命中邮件相关接口。",
|
||||
"query_api_docs 的列表输出会先展示 API 功能分组,并在每个 endpoint 简表中补充完整说明;查询单个 endpoint 时会附带所属功能分组说明。",
|
||||
"数据库无结构变化。"
|
||||
]'::jsonb,
|
||||
'{
|
||||
"ias-common": "0.1.2",
|
||||
"ias-ai": "0.1.10",
|
||||
"ias-wechat": "0.1.1",
|
||||
"ias-context": "0.1.4",
|
||||
"ias-http": "0.1.13",
|
||||
"ias-mail": "0.1.15",
|
||||
"ias-service": "0.1.18",
|
||||
"ias-main": "0.2.21"
|
||||
}'::jsonb
|
||||
) ON CONFLICT (version) DO UPDATE SET
|
||||
released_at = EXCLUDED.released_at,
|
||||
title = EXCLUDED.title,
|
||||
description = EXCLUDED.description,
|
||||
changes = EXCLUDED.changes,
|
||||
modules = EXCLUDED.modules;
|
||||
Reference in New Issue
Block a user