v0.16.18: 网络超时 30s→900s + 流式超时动态计算修复 + 预存编译错误修复

This commit is contained in:
2026-08-01 14:13:04 +08:00
parent 794f94ab89
commit e140e735de
10 changed files with 126 additions and 126 deletions
+1 -1
View File
@@ -215,7 +215,7 @@ export async function executeSubAgent(
if (chunk.message?.content) content += chunk.message.content;
if (chunk.message?.tool_calls?.length) {
for (const tc of chunk.message.tool_calls) {
if (tc.function?.name && SUB_AGENT_TOOL_WHITELIST.has(tc.function.name)) {
if (tc.function?.name && toolWhitelist.has(tc.function.name)) {
toolCalls.push({ name: tc.function.name, arguments: tc.function.arguments || {} });
}
}