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

推荐订阅源

博客园_首页
J
Java Code Geeks
博客园 - 聂微东
量子位
C
Check Point Blog
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
G
Google Developers Blog
Google DeepMind News
Google DeepMind News
B
Blog
罗磊的独立博客
腾讯CDC
GbyAI
GbyAI
博客园 - 【当耐特】
A
About on SuperTechFans
M
MIT News - Artificial intelligence
U
Unit 42
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队

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
test(ci): align startup and model fixtures · openclaw/ope...
steipete · 2026-05-28 · via Recent Commits to openclaw:main

@@ -400,63 +400,80 @@ function buildDynamicModel(

400400

}

401401

case "openai": {

402402

const templateIds =

403-

lower === "gpt-5.4"

404-

? ["gpt-5.4"]

405-

: lower === "gpt-5.4-pro"

406-

? ["gpt-5.4-pro", "gpt-5.4"]

407-

: lower === "gpt-5.4-mini"

408-

? ["gpt-5.4-mini"]

409-

: lower === "gpt-5.4-nano"

410-

? ["gpt-5.4-nano", "gpt-5.4-mini"]

411-

: undefined;

403+

lower === "gpt-5.5"

404+

? ["gpt-5.5", "gpt-5.4", "gpt-5.4-pro"]

405+

: lower === "gpt-5.4"

406+

? ["gpt-5.4"]

407+

: lower === "gpt-5.4-pro"

408+

? ["gpt-5.4-pro", "gpt-5.4"]

409+

: lower === "gpt-5.4-mini"

410+

? ["gpt-5.4-mini"]

411+

: lower === "gpt-5.4-nano"

412+

? ["gpt-5.4-nano", "gpt-5.4-mini"]

413+

: undefined;

412414

if (!templateIds) {

413415

return undefined;

414416

}

415417

const template = findTemplate(params, "openai", templateIds);

416418

const patch =

417-

lower === "gpt-5.4"

419+

lower === "gpt-5.5"

418420

? {

419421

provider: "openai",

420422

api: "openai-responses",

421423

baseUrl: OPENAI_BASE_URL,

422424

reasoning: true,

423425

input: ["text", "image"],

424426

cost: { input: 2.5, output: 15, cacheRead: 0.25, cacheWrite: 0 },

425-

contextWindow: 272_000,

427+

contextWindow: 1_000_000,

428+

contextTokens: 272_000,

426429

maxTokens: 128_000,

430+

mediaInput: {

431+

image: { maxSidePx: 6000, preferredSidePx: 2048, tokenMode: "detail" },

432+

},

427433

}

428-

: lower === "gpt-5.4-pro"

434+

: lower === "gpt-5.4"

429435

? {

430436

provider: "openai",

431437

api: "openai-responses",

432438

baseUrl: OPENAI_BASE_URL,

433439

reasoning: true,

434440

input: ["text", "image"],

435-

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

436-

contextWindow: 1_050_000,

441+

cost: { input: 2.5, output: 15, cacheRead: 0.25, cacheWrite: 0 },

442+

contextWindow: 272_000,

437443

maxTokens: 128_000,

438444

}

439-

: lower === "gpt-5.4-mini"

445+

: lower === "gpt-5.4-pro"

440446

? {

441447

provider: "openai",

442448

api: "openai-responses",

443449

baseUrl: OPENAI_BASE_URL,

444450

reasoning: true,

445451

input: ["text", "image"],

446-

cost: { input: 0.75, output: 4.5, cacheRead: 0.075, cacheWrite: 0 },

447-

contextWindow: 400_000,

452+

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

453+

contextWindow: 1_050_000,

448454

maxTokens: 128_000,

449455

}

450-

: {

451-

provider: "openai",

452-

api: "openai-responses",

453-

baseUrl: OPENAI_BASE_URL,

454-

reasoning: true,

455-

input: ["text", "image"],

456-

cost: { input: 0.2, output: 1.25, cacheRead: 0.02, cacheWrite: 0 },

457-

contextWindow: 400_000,

458-

maxTokens: 128_000,

459-

};

456+

: lower === "gpt-5.4-mini"

457+

? {

458+

provider: "openai",

459+

api: "openai-responses",

460+

baseUrl: OPENAI_BASE_URL,

461+

reasoning: true,

462+

input: ["text", "image"],

463+

cost: { input: 0.75, output: 4.5, cacheRead: 0.075, cacheWrite: 0 },

464+

contextWindow: 400_000,

465+

maxTokens: 128_000,

466+

}

467+

: {

468+

provider: "openai",

469+

api: "openai-responses",

470+

baseUrl: OPENAI_BASE_URL,

471+

reasoning: true,

472+

input: ["text", "image"],

473+

cost: { input: 0.2, output: 1.25, cacheRead: 0.02, cacheWrite: 0 },

474+

contextWindow: 400_000,

475+

maxTokens: 128_000,

476+

};

460477

return cloneTemplate(template, modelId, patch, {

461478

provider: "openai",

462479

api: "openai-responses",