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

推荐订阅源

GbyAI
GbyAI
Y
Y Combinator Blog
F
Fortinet All Blogs
H
Hackread – Cybersecurity News, Data Breaches, AI and More
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
T
The Blog of Author Tim Ferriss
D
DataBreaches.Net
量子位
博客园 - 三生石上(FineUI控件)
I
InfoQ
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿
D
Docker
美团技术团队
雷峰网
雷峰网
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理

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
Guard OpenAI chat payload turns (#86497) · openclaw/openc...
clawsweeper · 2026-05-25 · via Recent Commits to openclaw:main

@@ -1028,6 +1028,136 @@ describe("openai transport stream", () => {

10281028

}

10291029

});

103010301031+

it("refuses ModelStudio chat streams with no user or assistant payload turns", async () => {

1032+

const model = {

1033+

id: "qwen-coder-plus",

1034+

name: "qwen-coder-plus",

1035+

api: "openai-completions",

1036+

provider: "qwen",

1037+

baseUrl: "https://dashscope-intl.aliyuncs.com/compatible-mode/v1",

1038+

reasoning: false,

1039+

input: ["text"],

1040+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

1041+

contextWindow: 4096,

1042+

maxTokens: 256,

1043+

} satisfies Model<"openai-completions">;

1044+

const stream = createOpenAICompletionsTransportStreamFn()(

1045+

model,

1046+

{

1047+

systemPrompt: "runtime-only system prompt",

1048+

messages: [],

1049+

tools: [],

1050+

} as never,

1051+

{ apiKey: "test-key" } as never,

1052+

);

1053+1054+

let errorPayload: Record<string, unknown> | undefined;

1055+

for await (const event of stream as AsyncIterable<{

1056+

type: string;

1057+

error?: Record<string, unknown>;

1058+

}>) {

1059+

if (event.type === "error") {

1060+

errorPayload = event.error;

1061+

}

1062+

}

1063+1064+

expect(errorPayload).toMatchObject({ stopReason: "error" });

1065+

expect(String(errorPayload?.errorMessage)).toContain(

1066+

"contains no non-empty user or assistant messages",

1067+

);

1068+

expect(String(errorPayload?.errorMessage)).toContain("system/tool-only request");

1069+

});

1070+1071+

it("allows generic OpenAI-compatible chat streams without the ModelStudio turn guard", async () => {

1072+

let capturedRoles: string[] | undefined;

1073+

const server = createServer((req, res) => {

1074+

let body = "";

1075+

req.setEncoding("utf8");

1076+

req.on("data", (chunk) => {

1077+

body += chunk;

1078+

});

1079+

req.on("end", () => {

1080+

const parsed = JSON.parse(body) as { messages?: Array<{ role?: string }> };

1081+

capturedRoles = parsed.messages?.map((message) => message.role ?? "");

1082+

res.writeHead(200, {

1083+

"content-type": "text/event-stream; charset=utf-8",

1084+

"cache-control": "no-cache",

1085+

connection: "keep-alive",

1086+

});

1087+

const created = Math.floor(Date.now() / 1000);

1088+

res.write(

1089+

`data: ${JSON.stringify({

1090+

id: "chatcmpl-system-only",

1091+

object: "chat.completion.chunk",

1092+

created,

1093+

model: "generic-openai-compatible",

1094+

choices: [

1095+

{

1096+

index: 0,

1097+

delta: { role: "assistant", content: "OK" },

1098+

finish_reason: null,

1099+

},

1100+

],

1101+

})}\n\n`,

1102+

);

1103+

res.write(

1104+

`data: ${JSON.stringify({

1105+

id: "chatcmpl-system-only",

1106+

object: "chat.completion.chunk",

1107+

created,

1108+

model: "generic-openai-compatible",

1109+

choices: [{ index: 0, delta: {}, finish_reason: "stop" }],

1110+

})}\n\n`,

1111+

);

1112+

res.write("data: [DONE]\n\n");

1113+

res.end();

1114+

});

1115+

});

1116+1117+

await new Promise<void>((resolve) => server.listen(0, "127.0.0.1", resolve));

1118+

try {

1119+

const address = server.address();

1120+

if (!address || typeof address === "string") {

1121+

throw new Error("Missing loopback server address");

1122+

}

1123+

const model = {

1124+

id: "generic-openai-compatible",

1125+

name: "Generic OpenAI Compatible",

1126+

api: "openai-completions",

1127+

provider: "custom-openai-compatible",

1128+

baseUrl: `http://127.0.0.1:${address.port}/v1`,

1129+

reasoning: false,

1130+

input: ["text"],

1131+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

1132+

contextWindow: 4096,

1133+

maxTokens: 256,

1134+

} satisfies Model<"openai-completions">;

1135+

const stream = createOpenAICompletionsTransportStreamFn()(

1136+

model,

1137+

{

1138+

systemPrompt: "runtime-only system prompt",

1139+

messages: [],

1140+

tools: [],

1141+

} as never,

1142+

{ apiKey: "test-key" } as never,

1143+

);

1144+1145+

let doneReason: string | undefined;

1146+

for await (const event of stream as AsyncIterable<{ type: string; reason?: string }>) {

1147+

if (event.type === "done") {

1148+

doneReason = event.reason;

1149+

}

1150+

}

1151+1152+

expect(capturedRoles).toEqual(["system"]);

1153+

expect(doneReason).toBe("stop");

1154+

} finally {

1155+

await new Promise<void>((resolve, reject) => {

1156+

server.close((error) => (error ? reject(error) : resolve()));

1157+

});

1158+

}

1159+

});

1160+10311161

it("parses JSON chat completions returned to streaming requests", async () => {

10321162

let capturedStreamFlag: unknown;

10331163

const server = createServer((req, res) => {