640ba9e7d2
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.
36 lines
1.7 KiB
SQL
36 lines
1.7 KiB
SQL
INSERT INTO ias_upgrade_logs (
|
||
version,
|
||
released_at,
|
||
title,
|
||
description,
|
||
changes,
|
||
modules
|
||
) VALUES (
|
||
'0.2.13',
|
||
'2026-07-07T00:00:00+08:00',
|
||
'修复多工具调用上下文消息序列',
|
||
'修复模型返回多个 tool_calls 时上下文中缺少部分 tool 消息导致 LLM 请求 400 的问题,并过滤历史不完整工具调用片段。',
|
||
'[
|
||
"修复模型返回多个 tool_calls 时只执行第一个工具导致后续请求缺少 tool 消息的问题;现在会为每个 tool_call_id 生成对应工具结果。",
|
||
"服务队列新增批量工具结果处理,所有 tool 消息都写入上下文后才触发下一次 LLM 请求,避免中间态消息序列发送给模型。",
|
||
"上下文快照会过滤历史中不完整的 assistant/tool 调用片段,防止已存在的坏数据继续触发 insufficient tool messages following tool_calls message。",
|
||
"新增单元测试覆盖完整多工具调用保留、缺失工具结果过滤,以及 /v1 API catch-all 路由构建。",
|
||
"无数据库结构变化;ias-common 升级至 0.1.1,ias-ai 升级至 0.1.3,ias-context 升级至 0.1.2,ias-service 升级至 0.1.10。"
|
||
]'::jsonb,
|
||
'{
|
||
"ias-common": "0.1.1",
|
||
"ias-ai": "0.1.3",
|
||
"ias-wechat": "0.1.0",
|
||
"ias-context": "0.1.2",
|
||
"ias-http": "0.1.7",
|
||
"ias-mail": "0.1.15",
|
||
"ias-service": "0.1.10",
|
||
"ias-main": "0.2.13"
|
||
}'::jsonb
|
||
) ON CONFLICT (version) DO UPDATE SET
|
||
released_at = EXCLUDED.released_at,
|
||
title = EXCLUDED.title,
|
||
description = EXCLUDED.description,
|
||
changes = EXCLUDED.changes,
|
||
modules = EXCLUDED.modules;
|