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

推荐订阅源

博客园 - Franky
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
Y
Y Combinator Blog
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Check Point Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
博客园 - 司徒正美
I
InfoQ
Google DeepMind News
Google DeepMind News
GbyAI
GbyAI
U
Unit 42

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(gateway): enforce OpenAI tool_choice contracts · open...
Lellansin · 2026-05-31 · via Recent Commits to openclaw:main

@@ -714,6 +714,19 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

714714715715

{

716716

agentCommand.mockClear();

717+

agentCommand.mockResolvedValueOnce({

718+

payloads: [{ text: "tool choice function" }],

719+

meta: {

720+

stopReason: "tool_calls",

721+

pendingToolCalls: [

722+

{

723+

id: "call_1",

724+

name: "get_weather",

725+

arguments: '{"city":"Taipei"}',

726+

},

727+

],

728+

},

729+

} as never);

717730

const res = await postChatCompletions(port, {

718731

model: "openclaw",

719732

tool_choice: { type: "function", function: { name: "get_weather" } },

@@ -741,11 +754,121 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

741754

],

742755

messages: [{ role: "user", content: "weather?" }],

743756

});

744-

expect(res.status).toBe(400);

757+

expect(res.status).toBe(200);

758+

const firstCall = getFirstAgentCall();

759+

const clientTools = firstCall?.clientTools ?? [];

760+

expect(clientTools).toHaveLength(1);

761+

expect(clientTools[0]?.function?.name).toBe("get_weather");

762+

expect(firstCall?.extraSystemPrompt ?? "").toContain("You must call the get_weather tool");

763+

const json = (await res.json()) as { choices?: Array<{ finish_reason?: string | null }> };

764+

expect(json.choices?.[0]?.finish_reason).toBe("tool_calls");

765+

}

766+767+

{

768+

agentCommand.mockClear();

769+

agentCommand.mockResolvedValueOnce({

770+

payloads: [{ text: "tool choice required" }],

771+

meta: {

772+

stopReason: "tool_calls",

773+

pendingToolCalls: [

774+

{

775+

id: "call_1",

776+

name: "get_weather",

777+

arguments: '{"city":"Taipei"}',

778+

},

779+

],

780+

},

781+

} as never);

782+

const res = await postChatCompletions(port, {

783+

model: "openclaw",

784+

tool_choice: "required",

785+

tools: [

786+

{

787+

type: "function",

788+

function: {

789+

name: "get_weather",

790+

description: "Get current weather",

791+

parameters: {

792+

type: "object",

793+

properties: { city: { type: "string" } },

794+

required: ["city"],

795+

},

796+

},

797+

},

798+

],

799+

messages: [{ role: "user", content: "weather?" }],

800+

});

801+

expect(res.status).toBe(200);

802+

const firstCall = getFirstAgentCall();

803+

const clientTools = firstCall?.clientTools ?? [];

804+

expect(clientTools).toHaveLength(1);

805+

expect(clientTools[0]?.function?.name).toBe("get_weather");

806+

expect(firstCall?.extraSystemPrompt ?? "").toContain(

807+

"You must call one of the available tools",

808+

);

809+

const json = (await res.json()) as { choices?: Array<{ finish_reason?: string | null }> };

810+

expect(json.choices?.[0]?.finish_reason).toBe("tool_calls");

811+

}

812+813+

{

814+

mockAgentOnce([{ text: "plain text despite required" }]);

815+

const res = await postChatCompletions(port, {

816+

model: "openclaw",

817+

tool_choice: "required",

818+

tools: [

819+

{

820+

type: "function",

821+

function: {

822+

name: "get_weather",

823+

description: "Get current weather",

824+

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

825+

},

826+

},

827+

],

828+

messages: [{ role: "user", content: "weather?" }],

829+

});

830+

expect(res.status).toBe(502);

745831

const json = (await res.json()) as { error?: { type?: string; message?: string } };

746-

expect(json.error?.type).toBe("invalid_request_error");

747-

expect(json.error?.message ?? "").toContain("not supported");

748-

expect(agentCommand).toHaveBeenCalledTimes(0);

832+

expect(json.error?.type).toBe("api_error");

833+

expect(json.error?.message ?? "").toContain("tool_choice=required was not satisfied");

834+

}

835+836+

{

837+

agentCommand.mockClear();

838+

agentCommand.mockResolvedValueOnce({

839+

payloads: [{ text: "Calling a different tool." }],

840+

meta: {

841+

stopReason: "tool_calls",

842+

pendingToolCalls: [{ id: "call_1", name: "get_time", arguments: "{}" }],

843+

},

844+

} as never);

845+

const res = await postChatCompletions(port, {

846+

model: "openclaw",

847+

tool_choice: { type: "function", function: { name: "get_weather" } },

848+

tools: [

849+

{

850+

type: "function",

851+

function: {

852+

name: "get_weather",

853+

description: "Get current weather",

854+

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

855+

},

856+

},

857+

{

858+

type: "function",

859+

function: {

860+

name: "get_time",

861+

description: "Get current time",

862+

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

863+

},

864+

},

865+

],

866+

messages: [{ role: "user", content: "weather?" }],

867+

});

868+

expect(res.status).toBe(502);

869+

const json = (await res.json()) as { error?: { type?: string; message?: string } };

870+

expect(json.error?.type).toBe("api_error");

871+

expect(json.error?.message ?? "").toContain("tool_choice required a get_weather tool call");

749872

}

750873751874

{

@@ -758,7 +881,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

758881

expect(res.status).toBe(400);

759882

const json = (await res.json()) as { error?: { type?: string; message?: string } };

760883

expect(json.error?.type).toBe("invalid_request_error");

761-

expect(json.error?.message ?? "").toContain("tool_choice=required");

884+

expect(json.error?.message ?? "").toContain("no tools were provided");

762885

expect(agentCommand).toHaveBeenCalledTimes(0);

763886

}

764887

@@ -782,7 +905,7 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

782905

expect(res.status).toBe(400);

783906

const json = (await res.json()) as { error?: { type?: string; message?: string } };

784907

expect(json.error?.type).toBe("invalid_request_error");

785-

expect(json.error?.message ?? "").toContain("not supported");

908+

expect(json.error?.message ?? "").toContain("unknown tool");

786909

expect(agentCommand).toHaveBeenCalledTimes(0);

787910

}

788911

@@ -1739,6 +1862,39 @@ describe("OpenAI-compatible HTTP API (e2e)", () => {

17391862

expect(fallbackText).toContain("hello");

17401863

}

174118641865+

{

1866+

agentCommand.mockClear();

1867+

agentCommand.mockImplementationOnce((async (opts: unknown) =>

1868+

buildAssistantDeltaResult({

1869+

opts,

1870+

emit: emitAgentEvent,

1871+

deltas: ["plain text despite required"],

1872+

text: "plain text despite required",

1873+

})) as never);

1874+1875+

const requiredFailureRes = await postChatCompletions(port, {

1876+

stream: true,

1877+

model: "openclaw",

1878+

tool_choice: "required",

1879+

tools: [

1880+

{

1881+

type: "function",

1882+

function: {

1883+

name: "get_weather",

1884+

description: "Get weather",

1885+

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

1886+

},

1887+

},

1888+

],

1889+

messages: [{ role: "user", content: "weather?" }],

1890+

});

1891+

expect(requiredFailureRes.status).toBe(200);

1892+

const requiredFailureText = await requiredFailureRes.text();

1893+

expect(requiredFailureText).toContain("[DONE]");

1894+

expect(requiredFailureText).toContain("tool_choice=required was not satisfied");

1895+

expect(requiredFailureText).not.toContain("plain text despite required");

1896+

}

1897+17421898

{

17431899

agentCommand.mockClear();

17441900

agentCommand.mockResolvedValueOnce({