mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 04:15:48 -06:00
041938bc2f
Adds a generic plugin-declared selectable-context-window surface mirroring thinkingLevels: ModelCatalogEntry.contextWindows + contextWindowDefault through catalog normalization and the gateway protocol, session validation on sessions.create/patch, and a 200K/1M switch inside the Control UI model picker for Claude CLI 5-series models. The Anthropic plugin owns the option mapping: explicit 1m → `[1m]` argv suffix, 200k → bare id + CLAUDE_CODE_DISABLE_1M_CONTEXT=1, omitted → bare id (shipped default argv). Run budgets follow the selection on both CLI and native paths, so a 200K session gets a matching auto-compact window instead of a silent 1M budget. Review fixes landed in this PR: run-owner prepared-fact plumbing so ordinary replies honor the selection; atomic catalog overlay merge and normalization for the options/default tuple; one-owner tuple reads in the picker; sessions.create key-presence patch semantics; native-run budget capping. Feature direction and in-picker switch shape by @obviyus (maintainer review).
110 lines
3.9 KiB
TypeScript
110 lines
3.9 KiB
TypeScript
/**
|
|
* Claude CLI model catalog entries. Subscription-backed CLI models use picker
|
|
* metadata and do not require API-key auth rows.
|
|
*/
|
|
import type { ModelCatalogEntry } from "openclaw/plugin-sdk/agent-runtime";
|
|
import { CLAUDE_CLI_BACKEND_ID, CLAUDE_CLI_DEFAULT_ALLOWLIST_REFS } from "./cli-constants.js";
|
|
|
|
// Claude CLI auth is subscription-backed, so catalog rows only need picker metadata.
|
|
const CLAUDE_CLI_DEFAULT_CONTEXT_WINDOW = 200_000;
|
|
const CLAUDE_CLI_CONTEXT_WINDOWS: Record<string, number> = {
|
|
"claude-opus-5": 1_000_000,
|
|
"claude-sonnet-5": 1_000_000,
|
|
"claude-fable-5": 1_000_000,
|
|
};
|
|
const CLAUDE_CLI_SELECTABLE_CONTEXT_WINDOW_MODELS = new Set(
|
|
Object.keys(CLAUDE_CLI_CONTEXT_WINDOWS),
|
|
);
|
|
const CLAUDE_CLI_CONTEXT_WINDOW_OPTIONS = [
|
|
{ id: "200k", label: "200K", contextWindow: 200_000 },
|
|
{ id: "1m", label: "1M", contextWindow: 1_000_000 },
|
|
] satisfies NonNullable<ModelCatalogEntry["contextWindows"]>;
|
|
|
|
// Omitted selection spawns the bare id: Claude 5 already defaults to 1M on the
|
|
// CLI, so suffixing the default path would change shipped argv (and break CLIs
|
|
// predating the [1m] syntax) for zero gain. An explicit "1m" selection keeps
|
|
// the suffix because it is the only lever that outranks an operator's
|
|
// settings.json CLAUDE_CODE_DISABLE_1M_CONTEXT block; 200K maps to env only.
|
|
export function resolveClaudeCliContextWindowModelId(
|
|
modelId: string,
|
|
contextWindow: string | undefined,
|
|
): string {
|
|
return contextWindow === "1m" ? `${modelId}[1m]` : modelId;
|
|
}
|
|
const CLAUDE_CLI_DEFAULT_MAX_OUTPUT_TOKENS = 64_000;
|
|
const CLAUDE_CLI_MAX_OUTPUT_TOKENS: Record<string, number> = {
|
|
"claude-opus-5": 128_000,
|
|
"claude-opus-4-8": 128_000,
|
|
"claude-opus-4-7": 128_000,
|
|
"claude-opus-4-6": 128_000,
|
|
"claude-sonnet-5": 128_000,
|
|
"claude-fable-5": 128_000,
|
|
"claude-sonnet-4-6": 128_000,
|
|
};
|
|
|
|
const CLAUDE_CLI_MODEL_LABELS: Record<string, string> = {
|
|
"claude-opus-5": "Claude Opus 5 (Claude CLI)",
|
|
"claude-opus-4-8": "Claude Opus 4.8 (Claude CLI)",
|
|
"claude-opus-4-7": "Claude Opus 4.7 (Claude CLI)",
|
|
"claude-opus-4-6": "Claude Opus 4.6 (Claude CLI)",
|
|
"claude-sonnet-5": "Claude Sonnet 5 (Claude CLI)",
|
|
"claude-fable-5": "Claude Fable 5 (Claude CLI)",
|
|
"claude-sonnet-4-6": "Claude Sonnet 4.6 (Claude CLI)",
|
|
};
|
|
|
|
function resolveClaudeCliImageMediaInput(id: string): ModelCatalogEntry["mediaInput"] {
|
|
const maxSidePx =
|
|
id === "claude-opus-5" ||
|
|
id === "claude-opus-4-8" ||
|
|
id === "claude-opus-4-7" ||
|
|
id === "claude-sonnet-5" ||
|
|
id === "claude-fable-5"
|
|
? 2576
|
|
: 1568;
|
|
return {
|
|
image: {
|
|
maxSidePx,
|
|
preferredSidePx: maxSidePx,
|
|
tokenMode: "provider",
|
|
},
|
|
};
|
|
}
|
|
|
|
function extractClaudeCliModelIds(): string[] {
|
|
const ids: string[] = [];
|
|
const seen = new Set<string>();
|
|
for (const ref of CLAUDE_CLI_DEFAULT_ALLOWLIST_REFS) {
|
|
if (!ref.startsWith(`${CLAUDE_CLI_BACKEND_ID}/`)) {
|
|
continue;
|
|
}
|
|
const id = ref.slice(CLAUDE_CLI_BACKEND_ID.length + 1);
|
|
if (id.length === 0 || seen.has(id)) {
|
|
continue;
|
|
}
|
|
seen.add(id);
|
|
ids.push(id);
|
|
}
|
|
return ids;
|
|
}
|
|
|
|
/** Build catalog entries for the default Claude CLI allowlist. */
|
|
export function buildClaudeCliCatalogEntries(): ModelCatalogEntry[] {
|
|
return extractClaudeCliModelIds().map((id) => {
|
|
const entry: ModelCatalogEntry & { maxTokens: number } = {
|
|
id,
|
|
name: CLAUDE_CLI_MODEL_LABELS[id] ?? `${id} (Claude CLI)`,
|
|
provider: CLAUDE_CLI_BACKEND_ID,
|
|
reasoning: true,
|
|
input: ["text", "image"],
|
|
mediaInput: resolveClaudeCliImageMediaInput(id),
|
|
contextWindow: CLAUDE_CLI_CONTEXT_WINDOWS[id] ?? CLAUDE_CLI_DEFAULT_CONTEXT_WINDOW,
|
|
maxTokens: CLAUDE_CLI_MAX_OUTPUT_TOKENS[id] ?? CLAUDE_CLI_DEFAULT_MAX_OUTPUT_TOKENS,
|
|
};
|
|
if (CLAUDE_CLI_SELECTABLE_CONTEXT_WINDOW_MODELS.has(id)) {
|
|
entry.contextWindows = CLAUDE_CLI_CONTEXT_WINDOW_OPTIONS;
|
|
entry.contextWindowDefault = "1m";
|
|
}
|
|
return entry;
|
|
});
|
|
}
|