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

推荐订阅源

雷峰网
雷峰网
B
Blog
博客园_首页
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
C
Check Point Blog
Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
小众软件
小众软件

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
feat(openrouter): surface Fusion panel config (#93005) · ...
sallyom · 2026-06-15 · via Recent Commits to openclaw:main

@@ -275,6 +275,179 @@ describe("openrouter provider hooks", () => {

275275

expect(getOpenRouterModelCapabilitiesMock).toHaveBeenCalledWith("openrouter/auto");

276276

});

277277278+

it("describes configured Fusion analysis models in the system prompt", async () => {

279+

const provider = await registerSingleProviderPlugin(openrouterPlugin);

280+

const contribution = provider.resolveSystemPromptContribution?.({

281+

provider: "openrouter",

282+

modelId: "openrouter/fusion",

283+

promptMode: "full",

284+

config: {

285+

agents: {

286+

defaults: {

287+

models: {

288+

"openrouter/openrouter/fusion": {

289+

params: {

290+

extraBody: {

291+

plugins: [

292+

{

293+

id: "fusion",

294+

analysis_models: [

295+

"google/gemini-3.5-flash",

296+

"moonshotai/kimi-k2.6",

297+

"deepseek/deepseek-v4-pro",

298+

],

299+

model: "google/gemini-3.5-flash",

300+

},

301+

],

302+

},

303+

},

304+

},

305+

},

306+

},

307+

},

308+

},

309+

} as never);

310+311+

expect(contribution?.dynamicSuffix).toContain("OpenRouter Fusion Configuration");

312+

expect(contribution?.dynamicSuffix).toContain(

313+

"Analysis models: google/gemini-3.5-flash, moonshotai/kimi-k2.6, deepseek/deepseek-v4-pro.",

314+

);

315+

expect(contribution?.dynamicSuffix).toContain("Final Fusion model: google/gemini-3.5-flash.");

316+

});

317+318+

it("describes Fusion config from the canonical OpenRouter model key", async () => {

319+

const provider = await registerSingleProviderPlugin(openrouterPlugin);

320+

const contribution = provider.resolveSystemPromptContribution?.({

321+

provider: "openrouter",

322+

modelId: "openrouter/fusion",

323+

promptMode: "full",

324+

config: {

325+

agents: {

326+

defaults: {

327+

models: {

328+

"openrouter/fusion": {

329+

params: {

330+

extraBody: {

331+

plugins: [

332+

{

333+

id: "fusion",

334+

analysis_models: ["deepseek/deepseek-v4-pro"],

335+

},

336+

],

337+

},

338+

},

339+

},

340+

},

341+

},

342+

},

343+

},

344+

} as never);

345+346+

expect(contribution?.dynamicSuffix).toContain("Analysis models: deepseek/deepseek-v4-pro.");

347+

});

348+349+

it("matches transport alias precedence for Fusion extra body", async () => {

350+

const provider = await registerSingleProviderPlugin(openrouterPlugin);

351+

const contribution = provider.resolveSystemPromptContribution?.({

352+

provider: "openrouter",

353+

modelId: "openrouter/fusion",

354+

promptMode: "full",

355+

config: {

356+

agents: {

357+

defaults: {

358+

params: {

359+

extra_body: {

360+

plugins: [

361+

{

362+

id: "fusion",

363+

analysis_models: ["google/gemini-3.5-flash"],

364+

},

365+

],

366+

},

367+

},

368+

models: {

369+

"openrouter/fusion": {

370+

params: {

371+

extraBody: {

372+

plugins: [

373+

{

374+

id: "fusion",

375+

analysis_models: ["deepseek/deepseek-v4-pro"],

376+

},

377+

],

378+

},

379+

},

380+

},

381+

},

382+

},

383+

},

384+

},

385+

} as never);

386+387+

expect(contribution?.dynamicSuffix).toContain("Analysis models: google/gemini-3.5-flash.");

388+

expect(contribution?.dynamicSuffix).not.toContain("deepseek/deepseek-v4-pro");

389+

});

390+391+

it("keeps arbitrary OpenRouter extraBody fields out of the system prompt", async () => {

392+

const provider = await registerSingleProviderPlugin(openrouterPlugin);

393+

const contribution = provider.resolveSystemPromptContribution?.({

394+

provider: "openrouter",

395+

modelId: "openrouter/fusion",

396+

promptMode: "full",

397+

config: {

398+

agents: {

399+

defaults: {

400+

models: {

401+

"openrouter/openrouter/fusion": {

402+

params: {

403+

extraBody: {

404+

metadata: { private: "do-not-render" },

405+

plugins: [{ id: "not-fusion", model: "private-model" }],

406+

},

407+

},

408+

},

409+

},

410+

},

411+

},

412+

},

413+

} as never);

414+415+

expect(contribution).toBeUndefined();

416+

});

417+418+

it("does not describe disabled Fusion plugin config in the system prompt", async () => {

419+

const provider = await registerSingleProviderPlugin(openrouterPlugin);

420+

const contribution = provider.resolveSystemPromptContribution?.({

421+

provider: "openrouter",

422+

modelId: "openrouter/fusion",

423+

promptMode: "full",

424+

config: {

425+

agents: {

426+

defaults: {

427+

models: {

428+

"openrouter/fusion": {

429+

params: {

430+

extraBody: {

431+

plugins: [

432+

{

433+

id: "fusion",

434+

enabled: false,

435+

analysis_models: ["deepseek/deepseek-v4-pro"],

436+

model: "google/gemini-3.5-flash",

437+

},

438+

],

439+

},

440+

},

441+

},

442+

},

443+

},

444+

},

445+

},

446+

} as never);

447+448+

expect(contribution).toBeUndefined();

449+

});

450+278451

it("does not include retired stealth models in the bundled catalog", () => {

279452

const modelIds = buildOpenrouterProvider().models?.map((model) => model.id) ?? [];

280453

expect(modelIds).not.toContain("openrouter/hunter-alpha");