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

推荐订阅源

Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
爱范儿
爱范儿
D
Docker
I
InfoQ
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
D
DataBreaches.Net
月光博客
月光博客
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
Visual Studio Blog
MyScale Blog
MyScale Blog
B
Blog
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
Recent Announcements
Recent Announcements
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学

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(agents): tolerate missing attribution baseUrl (#92991...
samrusani · 2026-06-15 · via Recent Commits to openclaw:main

@@ -2,15 +2,23 @@

22

// session write-lock behavior.

33

import { Type } from "typebox";

44

import { beforeEach, describe, expect, it, vi } from "vitest";

5+

import type { Context, Model, SimpleStreamOptions } from "../../llm/types.js";

5667

const thinkingMocks = vi.hoisted(() => ({

78

resolveThinkingDefaultForModel: vi.fn(() => "medium"),

89

}));

10+

const streamMocks = vi.hoisted(() => ({

11+

streamSimple: vi.fn(

12+

(_model: Model, _context: Context, _options?: SimpleStreamOptions) => "stream",

13+

),

14+

}));

9151016

vi.mock("../../auto-reply/thinking.js", () => ({

1117

resolveThinkingDefaultForModel: thinkingMocks.resolveThinkingDefaultForModel,

1218

}));

13-

import type { Model } from "../../llm/types.js";

19+

vi.mock("../../llm/stream.js", () => ({

20+

streamSimple: streamMocks.streamSimple,

21+

}));

1422

import { AuthStorage } from "./auth-storage.js";

1523

import { createExtensionRuntime } from "./extensions/loader.js";

1624

import type { LoadExtensionsResult, ToolDefinition } from "./extensions/types.js";

@@ -34,6 +42,11 @@ const testModel: Model = {

3442

maxTokens: 1000,

3543

};

364445+

function createModelWithoutBaseUrl(overrides: Partial<Model>): Model {

46+

const { baseUrl: _baseUrl, ...model } = { ...testModel, ...overrides };

47+

return model as unknown as Model;

48+

}

49+3750

function createEmptyResourceLoader(): ResourceLoader {

3851

return createResourceLoaderWithHandlers(new Map());

3952

}

@@ -74,6 +87,84 @@ function createResourceLoaderWithHandlers(

7487

};

7588

}

768990+

async function createSessionAndStreamModel(model: Model): Promise<SimpleStreamOptions> {

91+

streamMocks.streamSimple.mockClear();

92+

const { session } = await createAgentSession({

93+

model,

94+

resourceLoader: createEmptyResourceLoader(),

95+

sessionManager: SessionManager.inMemory(),

96+

settingsManager: SettingsManager.inMemory(),

97+

modelRegistry: ModelRegistry.inMemory(AuthStorage.inMemory()),

98+

});

99+100+

await session.agent.streamFn?.(

101+

model,

102+

{

103+

messages: [],

104+

systemPrompt: "",

105+

tools: [],

106+

},

107+

{},

108+

);

109+110+

return streamMocks.streamSimple.mock.lastCall?.[2] ?? {};

111+

}

112+113+

describe("createAgentSession attribution headers", () => {

114+

it("tolerates Bedrock models that do not expose baseUrl", async () => {

115+

const options = await createSessionAndStreamModel(

116+

createModelWithoutBaseUrl({

117+

id: "global.anthropic.claude-sonnet-4-6",

118+

provider: "amazon-bedrock",

119+

api: "bedrock-converse-stream",

120+

}),

121+

);

122+123+

expect(streamMocks.streamSimple).toHaveBeenCalledOnce();

124+

expect(options.headers).toBeUndefined();

125+

});

126+127+

it("keeps OpenRouter attribution headers for provider and endpoint matches", async () => {

128+

const providerOptions = await createSessionAndStreamModel({

129+

...testModel,

130+

provider: "openrouter",

131+

baseUrl: "https://example.test",

132+

});

133+

const endpointOptions = await createSessionAndStreamModel({

134+

...testModel,

135+

provider: "custom-openai",

136+

baseUrl: "https://openrouter.ai/api/v1",

137+

});

138+139+

expect(providerOptions.headers).toMatchObject({

140+

"HTTP-Referer": "https://openclaw.ai",

141+

"X-OpenRouter-Title": "OpenClaw",

142+

"X-OpenRouter-Categories": "cli-agent",

143+

});

144+

expect(endpointOptions.headers).toMatchObject({

145+

"HTTP-Referer": "https://openclaw.ai",

146+

"X-OpenRouter-Title": "OpenClaw",

147+

"X-OpenRouter-Categories": "cli-agent",

148+

});

149+

});

150+151+

it("keeps Cloudflare attribution headers for provider and endpoint matches", async () => {

152+

const providerOptions = await createSessionAndStreamModel({

153+

...testModel,

154+

provider: "cloudflare-workers-ai",

155+

baseUrl: "https://example.test",

156+

});

157+

const endpointOptions = await createSessionAndStreamModel({

158+

...testModel,

159+

provider: "custom-openai",

160+

baseUrl: "https://gateway.ai.cloudflare.com/v1/account/gateway/openai",

161+

});

162+163+

expect(providerOptions.headers).toMatchObject({ "User-Agent": "openclaw" });

164+

expect(endpointOptions.headers).toMatchObject({ "User-Agent": "openclaw" });

165+

});

166+

});

167+77168

describe("createAgentSession tool defaults", () => {

78169

it("forwards max thinking budgets from settings to the agent", async () => {

79170

const { session } = await createAgentSession({