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

推荐订阅源

云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
腾讯CDC
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
S
SegmentFault 最新的问题
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】
The GitHub Blog
The GitHub Blog
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
A
About on SuperTechFans
博客园 - 叶小钗

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): report anthropic 1m context · openclaw/openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -61,6 +61,7 @@ Docs: https://docs.openclaw.ai

6161

- ACP/gateway: preserve `AcpRuntimeError` cause chain (code/method/JSON-RPC detail) through the lifecycle boundary so gateway logs, telegram replies, and tool-result text show the actual upstream failure instead of opaque `Internal error`/`[object Object]`, with redaction applied before the chain reaches log or reply surfaces.

6262

- Channels/iMessage: wire `action: "reply"` attachments through `imsg send-rich --file` when the installed imsg build advertises that capability (probed once via `imsg send-rich --help` and cached on the private-API status). Reply now hydrates `media`/`mediaUrl`/`fileUrl`/`mediaUrls[0]`/`filePath`/`path`/base64 `buffer`+`filename` through the shared outbound resolver, stages buffers via the existing `withTempFile` helper, rejects `http(s)://` URL attachments with a targeted error pointing callers at `send`'s full attachment-resolver pipeline, and falls back to the explicit `imsg#114 not landed yet` error on older imsg builds. Depends on the upstream `openclaw/imsg#114` capability landing in an installable release; until then the new path stays gated and users see the same explicit fallback `#79822` introduced. (#79864) Thanks @omarshahine.

6363

- Telegram: preserve the first-preview debounce while appending true partial-stream deltas, so edited draft previews no longer duplicate earlier text when providers emit incremental output. (#80045) Thanks @TurboTheTurtle.

64+

- Agents/Anthropic: report 1M session context for Claude Opus/Sonnet 4 models even when local model config still advertises 200k, matching model discovery and preventing premature status/UI overflow. Fixes #66766.

6465

- Volcengine/Kimi: strip provider-unsupported tool schema length and item constraint keywords for direct and coding-plan models so hosted Kimi runs do not reject message tools with `minLength`. Fixes #38817.

6566

- DeepSeek: backfill V4 `reasoning_content` replay fields for unowned OpenAI-compatible proxy providers, preventing follow-up request failures outside the bundled DeepSeek and OpenRouter routes. Fixes #79608.

6667
Original file line numberDiff line numberDiff line change

@@ -347,7 +347,7 @@ describe("resolveContextTokensForModel", () => {

347347

expect(result).toBe(ANTHROPIC_CONTEXT_1M_TOKENS);

348348

});

349349
350-

it("does not force 1M context when context1m is not enabled", () => {

350+

it("returns 1M context for Anthropic opus/sonnet 4 even without context1m", () => {

351351

const result = resolveContextTokensForModel({

352352

cfg: {

353353

models: {

@@ -374,7 +374,28 @@ describe("resolveContextTokensForModel", () => {

374374

allowAsyncLoad: false,

375375

});

376376
377-

expect(result).toBe(200_000);

377+

expect(result).toBe(ANTHROPIC_CONTEXT_1M_TOKENS);

378+

});

379+
380+

it("returns 1M context for Anthropic sonnet 4 even when config reports 200k", () => {

381+

const result = resolveContextTokensForModel({

382+

cfg: {

383+

models: {

384+

providers: {

385+

anthropic: {

386+

baseUrl: "https://api.anthropic.com",

387+

models: [testModelContextWindow("claude-sonnet-4-6", 200_000)],

388+

},

389+

},

390+

},

391+

},

392+

provider: "anthropic",

393+

model: "claude-sonnet-4-6",

394+

fallbackContextTokens: 200_000,

395+

allowAsyncLoad: false,

396+

});

397+
398+

expect(result).toBe(ANTHROPIC_CONTEXT_1M_TOKENS);

378399

});

379400
380401

it("does not force 1M context for non-opus/sonnet Anthropic models", () => {

Original file line numberDiff line numberDiff line change

@@ -32,7 +32,6 @@ type ProviderConfigEntry = {

3232

models?: ConfigModelEntry[];

3333

};

3434

type ModelsConfig = { providers?: Record<string, ProviderConfigEntry | undefined> };

35-

type AgentModelEntry = { params?: Record<string, unknown> };

3635
3736

const ANTHROPIC_1M_MODEL_PREFIXES = ["claude-opus-4", "claude-sonnet-4"] as const;

3837

const CLAUDE_OPUS_47_MODEL_PREFIXES = ["claude-opus-4-7", "claude-opus-4.7"] as const;

@@ -294,25 +293,6 @@ if (shouldEagerWarmContextWindowCache()) {

294293

void ensureContextWindowCacheLoaded();

295294

}

296295
297-

function resolveConfiguredModelParams(

298-

cfg: OpenClawConfig | undefined,

299-

provider: string,

300-

model: string,

301-

): Record<string, unknown> | undefined {

302-

const models = cfg?.agents?.defaults?.models;

303-

if (!models) {

304-

return undefined;

305-

}

306-

const key = normalizeLowercaseStringOrEmpty(`${provider}/${model}`);

307-

for (const [rawKey, entry] of Object.entries(models)) {

308-

if (normalizeLowercaseStringOrEmpty(rawKey) === key) {

309-

const params = (entry as AgentModelEntry | undefined)?.params;

310-

return params && typeof params === "object" ? params : undefined;

311-

}

312-

}

313-

return undefined;

314-

}

315-
316296

function resolveProviderModelRef(params: {

317297

provider?: string;

318298

model?: string;

@@ -476,8 +456,7 @@ export function resolveContextTokensForModel(params: {

476456

});

477457

const explicitProvider = params.provider?.trim();

478458

if (ref) {

479-

const modelParams = resolveConfiguredModelParams(params.cfg, ref.provider, ref.model);

480-

if (modelParams?.context1m === true && isAnthropic1MModel(ref.provider, ref.model)) {

459+

if (explicitProvider && isAnthropic1MModel(ref.provider, ref.model)) {

481460

return ANTHROPIC_CONTEXT_1M_TOKENS;

482461

}

483462

// Only do the config direct scan when the caller explicitly passed a