Files
iAs/ias-service/migrations/20260707012000_insert_upgrade_log_0_2_14.sql
T
wunianxiao 640ba9e7d2 feat: add React UI and AI page sharing tools
Move HTTP page rendering to the React app, fix multi-tool-call message handling, add API docs lookup, web page lookup, and Markdown preview page sharing.
2026-07-07 22:27:14 +08:00

37 lines
1.9 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
INSERT INTO ias_upgrade_logs (
version,
released_at,
title,
description,
changes,
modules
) VALUES (
'0.2.14',
'2026-07-07T00:00:00+08:00',
'新增 API 文档查询能力',
'新增结构化 HTTP API 文档接口和 AI 查询工具,使模型可以查询当前服务 API 的路径、参数、请求体、响应示例和备注后回复用户。',
'[
"新增 HTTP API 文档接口 /v1/api-docs 与 /v1/api-docs/{id},支持按关键词、分组和接口 id 查询当前服务的结构化 API 文档。",
"新增内置 AI 工具 query_api_docs,模型可查询 API 路径、参数、请求体、响应示例和备注,并据此用中文回复用户。",
"新增内置 AI 工具 query_web_pages,模型可按页面类型和关键词查询已创建的动态页面,并把相关 /web/... 或 /mail/... 链接发给用户。",
"动态页面列表 API GET /v1/web/pages 新增 q 关键词搜索,可匹配标题、摘要、正文、来源和 metadata,便于查找已创建页面。",
"API 文档覆盖健康检查、升级日志、动态页面、邮件、控制台工具、用户配置、长期记忆和上下文模拟器接口;HTTP 模块继续只负责 JSON API 与静态资源托管,页面展示仍由 React 前端负责。",
"无数据库结构变化;ias-ai 升级至 0.1.4ias-http 升级至 0.1.8ias-service 升级至 0.1.11。"
]'::jsonb,
'{
"ias-common": "0.1.1",
"ias-ai": "0.1.4",
"ias-wechat": "0.1.0",
"ias-context": "0.1.2",
"ias-http": "0.1.8",
"ias-mail": "0.1.15",
"ias-service": "0.1.11",
"ias-main": "0.2.14"
}'::jsonb
) ON CONFLICT (version) DO UPDATE SET
released_at = EXCLUDED.released_at,
title = EXCLUDED.title,
description = EXCLUDED.description,
changes = EXCLUDED.changes,
modules = EXCLUDED.modules;