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

推荐订阅源

Martin Fowler
Martin Fowler
有赞技术团队
有赞技术团队
博客园_首页
H
Help Net Security
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
V
Visual Studio Blog
The Cloudflare Blog
腾讯CDC
Jina AI
Jina AI
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
Engineering at Meta
Engineering at Meta
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
爱范儿
爱范儿
N
Netflix TechBlog - Medium
F
Fortinet All Blogs

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
refactor: share responses stream lifecycle · openclaw/ope...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main
11

import { AzureOpenAI } from "openai";

22

import type { ResponseCreateParamsStreaming } from "openai/resources/responses/responses.js";

33

import { getEnvApiKey } from "../env-api-keys.js";

4-

import { clampThinkingLevel } from "../model-utils.js";

54

import type {

6-

Api,

7-

AssistantMessage,

85

Context,

96

Model,

107

SimpleStreamOptions,

118

StreamFunction,

129

StreamOptions,

1310

} from "../types.js";

1411

import { AssistantMessageEventStream } from "../utils/event-stream.js";

15-

import { headersToRecord } from "../utils/headers.js";

1612

import { resolveAzureDeploymentNameFromMap } from "./azure-deployment-map.js";

1713

import { clampOpenAIPromptCacheKey } from "./openai-prompt-cache.js";

1814

import {

15+

applyCommonResponsesParams,

1916

convertResponsesMessages,

20-

convertResponsesTools,

21-

processResponsesStream,

17+

createResponsesAssistantOutput,

18+

resolveResponsesReasoningEffort,

19+

runResponsesStreamLifecycle,

2220

} from "./openai-responses-shared.js";

2321

import { buildBaseOptions } from "./simple-options.js";

2422

@@ -81,76 +79,21 @@ export const streamAzureOpenAIResponses: StreamFunction<

8179

options?: AzureOpenAIResponsesOptions,

8280

) => {

8381

const stream = new AssistantMessageEventStream();

82+

const output = createResponsesAssistantOutput(model, "azure-openai-responses");

84838584

// Start async processing

86-

void (async () => {

87-

const deploymentName = resolveDeploymentName(model, options);

88-89-

const output: AssistantMessage = {

90-

role: "assistant",

91-

content: [],

92-

api: "azure-openai-responses" as Api,

93-

provider: model.provider,

94-

model: model.id,

95-

usage: {

96-

input: 0,

97-

output: 0,

98-

cacheRead: 0,

99-

cacheWrite: 0,

100-

totalTokens: 0,

101-

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

102-

},

103-

stopReason: "stop",

104-

timestamp: Date.now(),

105-

};

106-107-

try {

108-

// Create Azure OpenAI client

85+

void runResponsesStreamLifecycle({

86+

stream,

87+

model,

88+

output,

89+

options,

90+

createClient: () => {

10991

const apiKey = options?.apiKey || getEnvApiKey(model.provider) || "";

110-

const client = createClient(model, apiKey, options);

111-

let params = buildParams(model, context, options, deploymentName);

112-

const nextParams = await options?.onPayload?.(params, model);

113-

if (nextParams !== undefined) {

114-

params = nextParams as ResponseCreateParamsStreaming;

115-

}

116-

const requestOptions = {

117-

...(options?.signal ? { signal: options.signal } : {}),

118-

...(options?.timeoutMs !== undefined ? { timeout: options.timeoutMs } : {}),

119-

...(options?.maxRetries !== undefined ? { maxRetries: options.maxRetries } : {}),

120-

};

121-

const { data: openaiStream, response } = await client.responses

122-

.create(params, requestOptions)

123-

.withResponse();

124-

await options?.onResponse?.(

125-

{ status: response.status, headers: headersToRecord(response.headers) },

126-

model,

127-

);

128-

stream.push({ type: "start", partial: output });

129-130-

await processResponsesStream(openaiStream, output, stream, model);

131-132-

if (options?.signal?.aborted) {

133-

throw new Error("Request was aborted");

134-

}

135-136-

if (output.stopReason === "aborted" || output.stopReason === "error") {

137-

throw new Error("An unknown error occurred");

138-

}

139-140-

stream.push({ type: "done", reason: output.stopReason, message: output });

141-

stream.end();

142-

} catch (error) {

143-

for (const block of output.content) {

144-

delete (block as { index?: number }).index;

145-

// partialJson is only a streaming scratch buffer; never persist it.

146-

delete (block as { partialJson?: string }).partialJson;

147-

}

148-

output.stopReason = options?.signal?.aborted ? "aborted" : "error";

149-

output.errorMessage = formatAzureOpenAIError(error);

150-

stream.push({ type: "error", reason: output.stopReason, error: output });

151-

stream.end();

152-

}

153-

})();

92+

return createClient(model, apiKey, options);

93+

},

94+

buildParams: () => buildParams(model, context, options, resolveDeploymentName(model, options)),

95+

formatError: formatAzureOpenAIError,

96+

});

1549715598

return stream;

15699

};

@@ -165,19 +108,10 @@ export const streamSimpleAzureOpenAIResponses: StreamFunction<

165108

}

166109167110

const base = buildBaseOptions(model, options, apiKey);

168-

const clampedReasoning = options?.reasoning

169-

? clampThinkingLevel(model, options.reasoning)

170-

: undefined;

171-

const reasoningEffort =

172-

clampedReasoning === "off"

173-

? undefined

174-

: clampedReasoning === "max"

175-

? "xhigh"

176-

: clampedReasoning;

177111178112

return streamAzureOpenAIResponses(model, context, {

179113

...base,

180-

reasoningEffort,

114+

reasoningEffort: resolveResponsesReasoningEffort(model, options?.reasoning),

181115

} satisfies AzureOpenAIResponsesOptions);

182116

};

183117

@@ -294,36 +228,7 @@ function buildParams(

294228

: clampOpenAIPromptCacheKey(options?.promptCacheKey ?? options?.sessionId),

295229

};

296230297-

if (options?.maxTokens) {

298-

params.max_output_tokens = options?.maxTokens;

299-

}

300-301-

if (options?.temperature !== undefined) {

302-

params.temperature = options?.temperature;

303-

}

304-305-

if (context.tools && context.tools.length > 0) {

306-

params.tools = convertResponsesTools(context.tools, { model });

307-

}

308-309-

if (model.reasoning) {

310-

if (options?.reasoningEffort || options?.reasoningSummary) {

311-

const effort = options?.reasoningEffort

312-

? (model.thinkingLevelMap?.[options.reasoningEffort] ?? options.reasoningEffort)

313-

: "medium";

314-

params.reasoning = {

315-

effort: effort as NonNullable<typeof params.reasoning>["effort"],

316-

summary: options?.reasoningSummary || "auto",

317-

};

318-

params.include = ["reasoning.encrypted_content"];

319-

} else if (model.thinkingLevelMap?.off !== null) {

320-

params.reasoning = {

321-

effort: (model.thinkingLevelMap?.off ?? "none") as NonNullable<

322-

typeof params.reasoning

323-

>["effort"],

324-

};

325-

}

326-

}

231+

applyCommonResponsesParams(params, model, context, options);

327232328233

return params;

329234

}