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

推荐订阅源

博客园_首页
博客园 - 三生石上(FineUI控件)
爱范儿
爱范儿
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Hugging Face - Blog
Hugging Face - Blog
C
Check Point Blog
Engineering at Meta
Engineering at Meta
有赞技术团队
有赞技术团队
月光博客
月光博客
M
MIT News - Artificial intelligence
V
Visual Studio Blog
Stack Overflow Blog
Stack Overflow Blog
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
雷峰网
雷峰网

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: reduce WebUI session latency churn (#76277) thanks @...
BunsDev · 2026-05-03 · via Recent Commits to openclaw:main

@@ -69,14 +69,6 @@ describe("arcee provider plugin", () => {

6969

"arcee/trinity-large-preview",

7070

"arcee/trinity-large-thinking",

7171

]);

72-

expect(

73-

config?.models?.providers?.arcee?.models?.find(

74-

(model) => model.id === "arcee/trinity-large-thinking",

75-

)?.compat,

76-

).toMatchObject({

77-

supportsReasoningEffort: false,

78-

supportsTools: false,

79-

});

8072

});

81738274

it("keeps direct Arcee auth env candidates separate from OpenRouter", () => {

@@ -100,12 +92,6 @@ describe("arcee provider plugin", () => {

10092

"trinity-large-preview",

10193

"trinity-large-thinking",

10294

]);

103-

expect(

104-

catalogProvider.models?.find((model) => model.id === "trinity-large-thinking")?.compat,

105-

).toMatchObject({

106-

supportsReasoningEffort: false,

107-

supportsTools: false,

108-

});

10995

});

1109611197

it("builds the OpenRouter-backed Arcee AI model catalog", async () => {

@@ -126,12 +112,6 @@ describe("arcee provider plugin", () => {

126112

"arcee/trinity-large-preview",

127113

"arcee/trinity-large-thinking",

128114

]);

129-

expect(

130-

catalogProvider.models?.find((model) => model.id === "arcee/trinity-large-thinking")?.compat,

131-

).toMatchObject({

132-

supportsReasoningEffort: false,

133-

supportsTools: false,

134-

});

135115

});

136116137117

it("normalizes Arcee OpenRouter models to vendor-prefixed runtime ids", async () => {

@@ -150,10 +130,6 @@ describe("arcee provider plugin", () => {

150130

} as never),

151131

).toMatchObject({

152132

id: "arcee/trinity-large-thinking",

153-

compat: {

154-

supportsReasoningEffort: false,

155-

supportsTools: false,

156-

},

157133

});

158134159135

expect(

@@ -200,10 +176,6 @@ describe("arcee provider plugin", () => {

200176

).toMatchObject({

201177

id: "arcee/trinity-large-thinking",

202178

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

203-

compat: {

204-

supportsReasoningEffort: false,

205-

supportsTools: false,

206-

},

207179

});

208180209181

expect(

@@ -217,152 +189,4 @@ describe("arcee provider plugin", () => {

217189

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

218190

});

219191

});

220-221-

it("repairs stale Trinity tool compat on existing Arcee configs and runtime models", async () => {

222-

const provider = await registerSingleProviderPlugin(arceePlugin);

223-224-

expect(

225-

provider.normalizeConfig?.({

226-

provider: "arcee",

227-

providerConfig: {

228-

api: "openai-completions",

229-

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

230-

models: [

231-

{

232-

id: "arcee/trinity-large-thinking",

233-

name: "Trinity Large Thinking",

234-

reasoning: true,

235-

input: ["text"],

236-

contextWindow: 262144,

237-

maxTokens: 80000,

238-

cost: {

239-

input: 0.25,

240-

output: 0.9,

241-

cacheRead: 0.25,

242-

cacheWrite: 0.25,

243-

},

244-

compat: {

245-

supportsReasoningEffort: false,

246-

supportsStrictMode: true,

247-

},

248-

},

249-

],

250-

},

251-

} as never),

252-

).toMatchObject({

253-

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

254-

models: [

255-

{

256-

id: "arcee/trinity-large-thinking",

257-

compat: {

258-

supportsReasoningEffort: false,

259-

supportsStrictMode: true,

260-

supportsTools: false,

261-

},

262-

},

263-

],

264-

});

265-266-

expect(

267-

provider.normalizeConfig?.({

268-

provider: "arcee",

269-

providerConfig: {

270-

api: "openai-completions",

271-

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

272-

models: [

273-

{

274-

id: "trinity-large-thinking",

275-

name: "Trinity Large Thinking",

276-

reasoning: true,

277-

input: ["text"],

278-

contextWindow: 262144,

279-

maxTokens: 80000,

280-

cost: {

281-

input: 0.25,

282-

output: 0.9,

283-

cacheRead: 0.25,

284-

cacheWrite: 0.25,

285-

},

286-

compat: {

287-

supportsReasoningEffort: false,

288-

},

289-

},

290-

],

291-

},

292-

} as never),

293-

).toMatchObject({

294-

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

295-

models: [

296-

{

297-

id: "trinity-large-thinking",

298-

compat: {

299-

supportsReasoningEffort: false,

300-

supportsTools: false,

301-

},

302-

},

303-

],

304-

});

305-306-

const trinityRuntimeModel = {

307-

name: "Trinity Large Thinking",

308-

api: "openai-completions",

309-

reasoning: true,

310-

input: ["text"],

311-

contextWindow: 262144,

312-

maxTokens: 80000,

313-

cost: {

314-

input: 0.25,

315-

output: 0.9,

316-

cacheRead: 0.25,

317-

cacheWrite: 0.25,

318-

},

319-

compat: {

320-

supportsReasoningEffort: false,

321-

},

322-

};

323-324-

const trinityCompat = {

325-

supportsReasoningEffort: false,

326-

supportsTools: false,

327-

};

328-329-

expect(

330-

provider.contributeResolvedModelCompat?.({

331-

provider: "arcee",

332-

modelId: "arcee/trinity-large-thinking",

333-

model: {

334-

...trinityRuntimeModel,

335-

provider: "arcee",

336-

id: "arcee/trinity-large-thinking",

337-

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

338-

},

339-

} as never),

340-

).toEqual(trinityCompat);

341-342-

expect(

343-

provider.contributeResolvedModelCompat?.({

344-

provider: "arcee",

345-

modelId: "trinity-large-thinking",

346-

model: {

347-

...trinityRuntimeModel,

348-

provider: "arcee",

349-

id: "trinity-large-thinking",

350-

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

351-

},

352-

} as never),

353-

).toEqual(trinityCompat);

354-355-

expect(

356-

provider.contributeResolvedModelCompat?.({

357-

provider: "openrouter",

358-

modelId: "trinity-large-thinking",

359-

model: {

360-

...trinityRuntimeModel,

361-

provider: "openrouter",

362-

id: "trinity-large-thinking",

363-

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

364-

},

365-

} as never),

366-

).toBeUndefined();

367-

});

368192

});