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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
有赞技术团队
有赞技术团队
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Blog — PlanetScale
Blog — PlanetScale
博客园_首页
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
罗磊的独立博客
T
Tailwind CSS Blog
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
博客园 - Franky
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

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(status): honor channel model context windows · opencl...
HemantSudars · 2026-04-30 · via Recent Commits to openclaw:main

@@ -489,6 +489,57 @@ const formatVoiceModeLine = (

489489

return parts.join(" · ");

490490

};

491491492+

function resolveChannelModelNote(params: {

493+

config?: OpenClawConfig;

494+

entry?: SessionEntry;

495+

selectedProvider: string;

496+

selectedModel: string;

497+

parentSessionKey?: string;

498+

}): string | undefined {

499+

if (!params.config || !params.entry) {

500+

return undefined;

501+

}

502+

if (

503+

normalizeOptionalString(params.entry.modelOverride) ||

504+

normalizeOptionalString(params.entry.providerOverride)

505+

) {

506+

return undefined;

507+

}

508+

const channelOverride = resolveChannelModelOverride({

509+

cfg: params.config,

510+

channel: params.entry.channel ?? params.entry.origin?.provider,

511+

groupId: params.entry.groupId,

512+

groupChatType: params.entry.chatType ?? params.entry.origin?.chatType,

513+

groupChannel: params.entry.groupChannel,

514+

groupSubject: params.entry.subject,

515+

parentSessionKey: params.parentSessionKey,

516+

});

517+

if (!channelOverride) {

518+

return undefined;

519+

}

520+

const aliasIndex = buildModelAliasIndex({

521+

cfg: params.config,

522+

defaultProvider: DEFAULT_PROVIDER,

523+

allowPluginNormalization: false,

524+

});

525+

const resolvedOverride = resolveModelRefFromString({

526+

raw: channelOverride.model,

527+

defaultProvider: DEFAULT_PROVIDER,

528+

aliasIndex,

529+

allowPluginNormalization: false,

530+

});

531+

if (!resolvedOverride) {

532+

return undefined;

533+

}

534+

if (

535+

resolvedOverride.ref.provider !== params.selectedProvider ||

536+

resolvedOverride.ref.model !== params.selectedModel

537+

) {

538+

return undefined;

539+

}

540+

return "channel override";

541+

}

542+492543

export function buildStatusMessage(args: StatusArgs): string {

493544

const now = args.now ?? Date.now();

494545

const entry = args.sessionEntry;

@@ -650,10 +701,21 @@ export function buildStatusMessage(args: StatusArgs): string {

650701

model: contextLookupModel,

651702

allowAsyncLoad: false,

652703

});

704+

const channelModelNote = resolveChannelModelNote({

705+

config: args.config,

706+

entry,

707+

selectedProvider,

708+

selectedModel,

709+

parentSessionKey: args.parentSessionKey,

710+

});

653711

const persistedContextTokens =

654712

typeof entry?.contextTokens === "number" && entry.contextTokens > 0

655713

? entry.contextTokens

656714

: undefined;

715+

const agentContextTokens =

716+

typeof args.agent?.contextTokens === "number" && args.agent.contextTokens > 0

717+

? args.agent.contextTokens

718+

: undefined;

657719

const explicitRuntimeContextTokens =

658720

typeof args.runtimeContextTokens === "number" && args.runtimeContextTokens > 0

659721

? args.runtimeContextTokens

@@ -669,6 +731,15 @@ export function buildStatusMessage(args: StatusArgs): string {

669731

? Math.min(explicitConfiguredContextTokens, activeContextTokens)

670732

: explicitConfiguredContextTokens

671733

: undefined;

734+

const channelOverrideContextTokens = channelModelNote

735+

? (explicitRuntimeContextTokens ??

736+

cappedConfiguredContextTokens ??

737+

(typeof activeContextTokens === "number"

738+

? typeof agentContextTokens === "number"

739+

? Math.min(agentContextTokens, activeContextTokens)

740+

: activeContextTokens

741+

: agentContextTokens))

742+

: undefined;

672743

// When a fallback model is active, the selected-model context limit that

673744

// callers keep on the agent config is often stale. Prefer an explicit runtime

674745

// snapshot when available. Separately, callers can pass an explicit configured

@@ -715,7 +786,8 @@ export function buildStatusMessage(args: StatusArgs): string {

715786

cfg: contextConfig,

716787

...(contextLookupProvider ? { provider: contextLookupProvider } : {}),

717788

model: contextLookupModel,

718-

contextTokensOverride: persistedContextTokens ?? args.agent?.contextTokens,

789+

contextTokensOverride:

790+

channelOverrideContextTokens ?? persistedContextTokens ?? agentContextTokens,

719791

fallbackContextTokens: DEFAULT_CONTEXT_TOKENS,

720792

allowAsyncLoad: false,

721793

}) ?? DEFAULT_CONTEXT_TOKENS);

@@ -854,50 +926,6 @@ export function buildStatusMessage(args: StatusArgs): string {

854926

const costLabel = showCost && hasUsage ? formatUsd(cost) : undefined;

855927856928

const selectedAuthLabel = selectedAuthLabelValue ? ` · 🔑 ${selectedAuthLabelValue}` : "";

857-

const channelModelNote = (() => {

858-

if (!args.config || !entry) {

859-

return undefined;

860-

}

861-

if (

862-

normalizeOptionalString(entry.modelOverride) ||

863-

normalizeOptionalString(entry.providerOverride)

864-

) {

865-

return undefined;

866-

}

867-

const channelOverride = resolveChannelModelOverride({

868-

cfg: args.config,

869-

channel: entry.channel ?? entry.origin?.provider,

870-

groupId: entry.groupId,

871-

groupChatType: entry.chatType ?? entry.origin?.chatType,

872-

groupChannel: entry.groupChannel,

873-

groupSubject: entry.subject,

874-

parentSessionKey: args.parentSessionKey,

875-

});

876-

if (!channelOverride) {

877-

return undefined;

878-

}

879-

const aliasIndex = buildModelAliasIndex({

880-

cfg: args.config,

881-

defaultProvider: DEFAULT_PROVIDER,

882-

allowPluginNormalization: false,

883-

});

884-

const resolvedOverride = resolveModelRefFromString({

885-

raw: channelOverride.model,

886-

defaultProvider: DEFAULT_PROVIDER,

887-

aliasIndex,

888-

allowPluginNormalization: false,

889-

});

890-

if (!resolvedOverride) {

891-

return undefined;

892-

}

893-

if (

894-

resolvedOverride.ref.provider !== selectedProvider ||

895-

resolvedOverride.ref.model !== selectedModel

896-

) {

897-

return undefined;

898-

}

899-

return "channel override";

900-

})();

901929

const modelNote = channelModelNote ? ` · ${channelModelNote}` : "";

902930

const modelLine = `🧠 Model: ${selectedModelLabel}${selectedAuthLabel}${modelNote}`;

903931