惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
博客园 - 司徒正美
美团技术团队
Martin Fowler
Martin Fowler
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
U
Unit 42
Y
Y Combinator Blog
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
GbyAI
GbyAI
H
Help Net Security
量子位
Last Week in AI
Last Week in AI
博客园_首页
腾讯CDC
小众软件
小众软件

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(ollama): promote plain text tool calls · openclaw/ope...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main

@@ -106,6 +106,9 @@ describe("createOllamaStreamFn thinking events", () => {

106106

async function streamOllamaEvents(

107107

chunks: Array<Record<string, unknown>>,

108108

options: Parameters<ReturnType<typeof createOllamaStreamFn>>[2] = {},

109+

context: Parameters<ReturnType<typeof createOllamaStreamFn>>[1] = {

110+

messages: [{ role: "user", content: "test" }],

111+

} as never,

109112

): Promise<Array<{ type: string; [key: string]: unknown }>> {

110113

const body = makeNdjsonBody(chunks);

111114

fetchWithSsrFGuardMock.mockResolvedValue({

@@ -116,7 +119,7 @@ describe("createOllamaStreamFn thinking events", () => {

116119

const streamFn = createOllamaStreamFn("http://localhost:11434");

117120

const stream = streamFn(

118121

{ api: "ollama", provider: "ollama", id: "qwen3.5", contextWindow: 65536 } as never,

119-

{ messages: [{ role: "user", content: "test" }] } as never,

122+

context,

120123

options,

121124

);

122125

@@ -249,4 +252,108 @@ describe("createOllamaStreamFn thinking events", () => {

249252

auditContext: "ollama-stream.chat",

250253

});

251254

});

255+256+

it("promotes standalone bracketed local-model tool text to a structured tool call", async () => {

257+

const rawToolText = [

258+

"[mempalace_mempalace_search]",

259+

'{"query":"codename","wing":"personal","room":"identities"}',

260+

"[END_TOOL_REQUEST]",

261+

].join("\n");

262+263+

const events = await streamOllamaEvents(

264+

[

265+

{

266+

model: "qwen3.5",

267+

created_at: "2026-01-01T00:00:00Z",

268+

message: { role: "assistant", content: rawToolText },

269+

done: false,

270+

},

271+

{

272+

model: "qwen3.5",

273+

created_at: "2026-01-01T00:00:01Z",

274+

message: { role: "assistant", content: "" },

275+

done: true,

276+

done_reason: "stop",

277+

prompt_eval_count: 10,

278+

eval_count: 5,

279+

},

280+

],

281+

{},

282+

{

283+

messages: [{ role: "user", content: "test" }],

284+

tools: [

285+

{

286+

name: "mempalace_mempalace_search",

287+

description: "Search MemPalace",

288+

parameters: { type: "object", properties: {} },

289+

},

290+

],

291+

} as never,

292+

);

293+294+

expect(events.map((event) => event.type)).toEqual([

295+

"start",

296+

"toolcall_start",

297+

"toolcall_delta",

298+

"done",

299+

]);

300+

const done = events.find((event) => event.type === "done") as {

301+

message?: { content?: Array<Record<string, unknown>>; stopReason?: string };

302+

reason?: string;

303+

};

304+

expect(done.reason).toBe("toolUse");

305+

expect(done.message?.stopReason).toBe("toolUse");

306+

expect(done.message?.content?.[0]).toMatchObject({

307+

type: "toolCall",

308+

name: "mempalace_mempalace_search",

309+

arguments: { query: "codename", wing: "personal", room: "identities" },

310+

});

311+

});

312+313+

it("promotes standalone Harmony local-model tool text to a structured tool call", async () => {

314+

const rawToolText =

315+

'commentary to=read code {"path":"/path/to/file","line_start":1,"line_end":400}';

316+317+

const events = await streamOllamaEvents(

318+

[

319+

{

320+

model: "qwen3.5",

321+

created_at: "2026-01-01T00:00:00Z",

322+

message: { role: "assistant", content: rawToolText },

323+

done: false,

324+

},

325+

{

326+

model: "qwen3.5",

327+

created_at: "2026-01-01T00:00:01Z",

328+

message: { role: "assistant", content: "" },

329+

done: true,

330+

done_reason: "stop",

331+

prompt_eval_count: 10,

332+

eval_count: 5,

333+

},

334+

],

335+

{},

336+

{

337+

messages: [{ role: "user", content: "test" }],

338+

tools: [{ name: "read", description: "Read files", parameters: { type: "object" } }],

339+

} as never,

340+

);

341+342+

expect(events.map((event) => event.type)).toEqual([

343+

"start",

344+

"toolcall_start",

345+

"toolcall_delta",

346+

"done",

347+

]);

348+

const done = events.find((event) => event.type === "done") as {

349+

message?: { content?: Array<Record<string, unknown>>; stopReason?: string };

350+

reason?: string;

351+

};

352+

expect(done.reason).toBe("toolUse");

353+

expect(done.message?.content?.[0]).toMatchObject({

354+

type: "toolCall",

355+

name: "read",

356+

arguments: { path: "/path/to/file", line_start: 1, line_end: 400 },

357+

});

358+

});

252359

});