mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 17:30:42 +00:00
Fixes #77858. Co-authored-by: Edionwheels <267595845+lilesjtu@users.noreply.github.com> Co-authored-by: Peter Steinberger <steipete@gmail.com>
904 lines
27 KiB
TypeScript
904 lines
27 KiB
TypeScript
import { resolveAgentModelPrimaryValue } from "../config/model-input.js";
|
|
import type { OpenClawConfig } from "../config/types.openclaw.js";
|
|
import { createSubsystemLogger } from "../logging/subsystem.js";
|
|
import type { PluginManifestRecord } from "../plugins/manifest-registry.js";
|
|
import {
|
|
normalizeLowercaseStringOrEmpty,
|
|
normalizeOptionalString,
|
|
} from "../shared/string-coerce.js";
|
|
import { sanitizeForLog, stripAnsi } from "../terminal/ansi.js";
|
|
import { resolveConfiguredProviderFallback } from "./configured-provider-fallback.js";
|
|
import { DEFAULT_PROVIDER } from "./defaults.js";
|
|
import { findModelCatalogEntry } from "./model-catalog-lookup.js";
|
|
import type { ModelCatalogEntry } from "./model-catalog.types.js";
|
|
import { splitTrailingAuthProfile } from "./model-ref-profile.js";
|
|
import { normalizeStaticProviderModelId } from "./model-ref-shared.js";
|
|
import {
|
|
type ModelRef,
|
|
findNormalizedProviderValue,
|
|
modelKey,
|
|
normalizeModelRef,
|
|
normalizeProviderId,
|
|
parseModelRef,
|
|
} from "./model-selection-normalize.js";
|
|
|
|
let log: ReturnType<typeof createSubsystemLogger> | null = null;
|
|
|
|
function getLog(): ReturnType<typeof createSubsystemLogger> {
|
|
log ??= createSubsystemLogger("model-selection");
|
|
return log;
|
|
}
|
|
|
|
const OPENROUTER_COMPAT_FREE_ALIAS = "openrouter:free";
|
|
|
|
export type ModelAliasIndex = {
|
|
byAlias: Map<string, { alias: string; ref: ModelRef }>;
|
|
byKey: Map<string, string[]>;
|
|
};
|
|
|
|
type ManifestNormalizationContext = {
|
|
manifestPlugins?: readonly Pick<PluginManifestRecord, "modelIdNormalization">[];
|
|
};
|
|
|
|
function sanitizeModelWarningValue(value: string): string {
|
|
const stripped = value ? stripAnsi(value) : "";
|
|
let controlBoundary = -1;
|
|
for (let index = 0; index < stripped.length; index += 1) {
|
|
const code = stripped.charCodeAt(index);
|
|
if (code <= 0x1f || code === 0x7f) {
|
|
controlBoundary = index;
|
|
break;
|
|
}
|
|
}
|
|
if (controlBoundary === -1) {
|
|
return sanitizeForLog(stripped);
|
|
}
|
|
return sanitizeForLog(stripped.slice(0, controlBoundary));
|
|
}
|
|
|
|
function mergeModelCatalogEntries(params: {
|
|
primary: readonly ModelCatalogEntry[];
|
|
secondary: readonly ModelCatalogEntry[];
|
|
}): ModelCatalogEntry[] {
|
|
const merged = [...params.primary];
|
|
const seen = new Set(merged.map((entry) => modelKey(entry.provider, entry.id)));
|
|
for (const entry of params.secondary) {
|
|
const key = modelKey(entry.provider, entry.id);
|
|
if (seen.has(key)) {
|
|
continue;
|
|
}
|
|
merged.push(entry);
|
|
seen.add(key);
|
|
}
|
|
return merged;
|
|
}
|
|
|
|
export function inferUniqueProviderFromConfiguredModels(params: {
|
|
cfg: OpenClawConfig;
|
|
model: string;
|
|
}): string | undefined {
|
|
const model = params.model.trim();
|
|
if (!model) {
|
|
return undefined;
|
|
}
|
|
const normalized = normalizeLowercaseStringOrEmpty(model);
|
|
const providers = new Set<string>();
|
|
const addProvider = (provider: string) => {
|
|
const normalizedProvider = normalizeProviderId(provider);
|
|
if (!normalizedProvider) {
|
|
return;
|
|
}
|
|
providers.add(normalizedProvider);
|
|
};
|
|
const configuredModels = params.cfg.agents?.defaults?.models;
|
|
if (configuredModels) {
|
|
for (const key of Object.keys(configuredModels)) {
|
|
const ref = key.trim();
|
|
if (!ref || !ref.includes("/")) {
|
|
continue;
|
|
}
|
|
const parsed = parseModelRef(ref, DEFAULT_PROVIDER, {
|
|
allowPluginNormalization: false,
|
|
});
|
|
if (!parsed) {
|
|
continue;
|
|
}
|
|
if (parsed.model === model || normalizeLowercaseStringOrEmpty(parsed.model) === normalized) {
|
|
addProvider(parsed.provider);
|
|
if (providers.size > 1) {
|
|
return undefined;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
const configuredProviders = params.cfg.models?.providers;
|
|
if (configuredProviders) {
|
|
for (const [providerId, providerConfig] of Object.entries(configuredProviders)) {
|
|
const models = providerConfig?.models;
|
|
if (!Array.isArray(models)) {
|
|
continue;
|
|
}
|
|
for (const entry of models) {
|
|
const modelId = entry?.id?.trim();
|
|
if (!modelId) {
|
|
continue;
|
|
}
|
|
if (modelId === model || normalizeLowercaseStringOrEmpty(modelId) === normalized) {
|
|
addProvider(providerId);
|
|
}
|
|
}
|
|
if (providers.size > 1) {
|
|
return undefined;
|
|
}
|
|
}
|
|
}
|
|
if (providers.size !== 1) {
|
|
return undefined;
|
|
}
|
|
return providers.values().next().value;
|
|
}
|
|
|
|
export function inferUniqueProviderFromCatalog(params: {
|
|
catalog: readonly ModelCatalogEntry[];
|
|
model: string;
|
|
}): string | undefined {
|
|
const model = params.model.trim();
|
|
if (!model) {
|
|
return undefined;
|
|
}
|
|
const normalized = normalizeLowercaseStringOrEmpty(model);
|
|
const providers = new Set<string>();
|
|
for (const entry of params.catalog) {
|
|
const entryId = entry.id.trim();
|
|
if (!entryId) {
|
|
continue;
|
|
}
|
|
if (entryId !== model && normalizeLowercaseStringOrEmpty(entryId) !== normalized) {
|
|
continue;
|
|
}
|
|
const provider = normalizeProviderId(entry.provider);
|
|
if (provider) {
|
|
providers.add(provider);
|
|
}
|
|
if (providers.size > 1) {
|
|
return undefined;
|
|
}
|
|
}
|
|
return providers.size === 1 ? providers.values().next().value : undefined;
|
|
}
|
|
|
|
export function resolveBareModelDefaultProvider(params: {
|
|
cfg: OpenClawConfig;
|
|
catalog: readonly ModelCatalogEntry[];
|
|
model: string;
|
|
defaultProvider: string;
|
|
}): string {
|
|
return (
|
|
inferUniqueProviderFromConfiguredModels({ cfg: params.cfg, model: params.model }) ??
|
|
inferUniqueProviderFromCatalog({ catalog: params.catalog, model: params.model }) ??
|
|
params.defaultProvider
|
|
);
|
|
}
|
|
|
|
function isConcreteOpenRouterFreeModelRef(ref: ModelRef): boolean {
|
|
return ref.provider === "openrouter" && ref.model.includes("/") && ref.model.endsWith(":free");
|
|
}
|
|
|
|
function resolveConfiguredOpenRouterCompatFreeRef(
|
|
params: {
|
|
cfg: OpenClawConfig;
|
|
defaultProvider: string;
|
|
allowManifestNormalization?: boolean;
|
|
allowPluginNormalization?: boolean;
|
|
} & ManifestNormalizationContext,
|
|
): ModelRef | null {
|
|
const configuredModels = params.cfg.agents?.defaults?.models ?? {};
|
|
for (const raw of Object.keys(configuredModels)) {
|
|
if (!raw.includes("/")) {
|
|
continue;
|
|
}
|
|
const parsed = parseModelRef(raw, params.defaultProvider, {
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
});
|
|
if (parsed && isConcreteOpenRouterFreeModelRef(parsed)) {
|
|
return parsed;
|
|
}
|
|
}
|
|
|
|
const openrouterProviderConfig = findNormalizedProviderValue(
|
|
params.cfg.models?.providers,
|
|
"openrouter",
|
|
);
|
|
for (const entry of openrouterProviderConfig?.models ?? []) {
|
|
const modelId = entry?.id?.trim();
|
|
if (!modelId || !modelId.includes("/") || !modelId.endsWith(":free")) {
|
|
continue;
|
|
}
|
|
return normalizeModelRef("openrouter", modelId, {
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
});
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
export function resolveConfiguredOpenRouterCompatAlias(
|
|
params: {
|
|
cfg?: OpenClawConfig;
|
|
raw: string;
|
|
defaultProvider: string;
|
|
allowManifestNormalization?: boolean;
|
|
allowPluginNormalization?: boolean;
|
|
} & ManifestNormalizationContext,
|
|
): ModelRef | null {
|
|
const normalized = normalizeLowercaseStringOrEmpty(params.raw);
|
|
if (normalized === "openrouter:auto") {
|
|
return normalizeModelRef("openrouter", "auto", {
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
});
|
|
}
|
|
if (normalized !== OPENROUTER_COMPAT_FREE_ALIAS || !params.cfg) {
|
|
return null;
|
|
}
|
|
return resolveConfiguredOpenRouterCompatFreeRef({
|
|
cfg: params.cfg,
|
|
defaultProvider: params.defaultProvider,
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
});
|
|
}
|
|
|
|
function parseModelRefWithCompatAlias(
|
|
params: {
|
|
cfg?: OpenClawConfig;
|
|
raw: string;
|
|
defaultProvider: string;
|
|
allowManifestNormalization?: boolean;
|
|
allowPluginNormalization?: boolean;
|
|
} & ManifestNormalizationContext,
|
|
): ModelRef | null {
|
|
return (
|
|
resolveConfiguredOpenRouterCompatAlias(params) ??
|
|
resolveExactConfiguredProviderRef(params) ??
|
|
parseModelRef(params.raw, params.defaultProvider, {
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
})
|
|
);
|
|
}
|
|
|
|
function resolveExactConfiguredProviderRef(
|
|
params: {
|
|
cfg?: OpenClawConfig;
|
|
raw: string;
|
|
allowManifestNormalization?: boolean;
|
|
allowPluginNormalization?: boolean;
|
|
} & ManifestNormalizationContext,
|
|
): ModelRef | null {
|
|
const slash = params.raw.indexOf("/");
|
|
if (slash <= 0 || !params.cfg?.models?.providers) {
|
|
return null;
|
|
}
|
|
const providerRaw = params.raw.slice(0, slash).trim();
|
|
const modelRaw = params.raw.slice(slash + 1).trim();
|
|
if (!providerRaw || !modelRaw) {
|
|
return null;
|
|
}
|
|
const providerKey = normalizeLowercaseStringOrEmpty(providerRaw);
|
|
const exactConfigured = Object.entries(params.cfg.models.providers).find(
|
|
([key]) => normalizeLowercaseStringOrEmpty(key) === providerKey,
|
|
);
|
|
if (!exactConfigured) {
|
|
return null;
|
|
}
|
|
const [configuredProvider, providerConfig] = exactConfigured;
|
|
const normalizedConfiguredProvider = normalizeProviderId(configuredProvider);
|
|
const apiOwner =
|
|
typeof providerConfig?.api === "string" ? normalizeProviderId(providerConfig.api) : "";
|
|
if (!apiOwner || apiOwner === normalizedConfiguredProvider) {
|
|
return null;
|
|
}
|
|
const provider = normalizeLowercaseStringOrEmpty(configuredProvider);
|
|
return {
|
|
provider,
|
|
model: normalizeStaticProviderModelId(provider, modelRaw.trim(), {
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
}),
|
|
};
|
|
}
|
|
|
|
export function resolveAllowlistModelKey(params: {
|
|
cfg?: OpenClawConfig;
|
|
raw: string;
|
|
defaultProvider: string;
|
|
}): string | null {
|
|
const parsed = parseModelRefWithCompatAlias({
|
|
cfg: params.cfg,
|
|
raw: params.raw,
|
|
defaultProvider: params.defaultProvider,
|
|
});
|
|
if (!parsed) {
|
|
return null;
|
|
}
|
|
return modelKey(parsed.provider, parsed.model);
|
|
}
|
|
|
|
export function buildConfiguredAllowlistKeys(params: {
|
|
cfg: OpenClawConfig | undefined;
|
|
defaultProvider: string;
|
|
}): Set<string> | null {
|
|
const rawAllowlist = Object.keys(params.cfg?.agents?.defaults?.models ?? {});
|
|
if (rawAllowlist.length === 0) {
|
|
return null;
|
|
}
|
|
|
|
const keys = new Set<string>();
|
|
for (const raw of rawAllowlist) {
|
|
const key = resolveAllowlistModelKey({
|
|
cfg: params.cfg,
|
|
raw,
|
|
defaultProvider: params.defaultProvider,
|
|
});
|
|
if (key) {
|
|
keys.add(key);
|
|
}
|
|
}
|
|
return keys.size > 0 ? keys : null;
|
|
}
|
|
|
|
export function buildModelAliasIndex(
|
|
params: {
|
|
cfg: OpenClawConfig;
|
|
defaultProvider: string;
|
|
allowManifestNormalization?: boolean;
|
|
allowPluginNormalization?: boolean;
|
|
} & ManifestNormalizationContext,
|
|
): ModelAliasIndex {
|
|
const byAlias = new Map<string, { alias: string; ref: ModelRef }>();
|
|
const byKey = new Map<string, string[]>();
|
|
|
|
const rawModels = params.cfg.agents?.defaults?.models ?? {};
|
|
for (const [keyRaw, entryRaw] of Object.entries(rawModels)) {
|
|
const parsed = parseModelRefWithCompatAlias({
|
|
cfg: params.cfg,
|
|
raw: keyRaw,
|
|
defaultProvider: params.defaultProvider,
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
});
|
|
if (!parsed) {
|
|
continue;
|
|
}
|
|
const alias =
|
|
normalizeOptionalString((entryRaw as { alias?: string } | undefined)?.alias) ?? "";
|
|
if (!alias) {
|
|
continue;
|
|
}
|
|
const aliasKey = normalizeLowercaseStringOrEmpty(alias);
|
|
byAlias.set(aliasKey, { alias, ref: parsed });
|
|
const key = modelKey(parsed.provider, parsed.model);
|
|
const existing = byKey.get(key) ?? [];
|
|
existing.push(alias);
|
|
byKey.set(key, existing);
|
|
}
|
|
|
|
return { byAlias, byKey };
|
|
}
|
|
|
|
type ModelCatalogMetadata = {
|
|
configuredByKey: Map<string, ModelCatalogEntry>;
|
|
aliasByKey: Map<string, string>;
|
|
};
|
|
|
|
function buildModelCatalogMetadata(params: {
|
|
cfg: OpenClawConfig;
|
|
defaultProvider: string;
|
|
}): ModelCatalogMetadata {
|
|
const configuredByKey = new Map<string, ModelCatalogEntry>();
|
|
for (const entry of buildConfiguredModelCatalog({ cfg: params.cfg })) {
|
|
configuredByKey.set(modelKey(entry.provider, entry.id), entry);
|
|
}
|
|
|
|
const aliasByKey = new Map<string, string>();
|
|
const configuredModels = params.cfg.agents?.defaults?.models ?? {};
|
|
for (const [rawKey, entryRaw] of Object.entries(configuredModels)) {
|
|
const key = resolveAllowlistModelKey({
|
|
cfg: params.cfg,
|
|
raw: rawKey,
|
|
defaultProvider: params.defaultProvider,
|
|
});
|
|
if (!key) {
|
|
continue;
|
|
}
|
|
const alias = ((entryRaw as { alias?: string } | undefined)?.alias ?? "").trim();
|
|
if (!alias) {
|
|
continue;
|
|
}
|
|
aliasByKey.set(key, alias);
|
|
}
|
|
|
|
return { configuredByKey, aliasByKey };
|
|
}
|
|
|
|
function applyModelCatalogMetadata(params: {
|
|
entry: ModelCatalogEntry;
|
|
metadata: ModelCatalogMetadata;
|
|
}): ModelCatalogEntry {
|
|
const key = modelKey(params.entry.provider, params.entry.id);
|
|
const configuredEntry = params.metadata.configuredByKey.get(key);
|
|
const alias = params.metadata.aliasByKey.get(key);
|
|
if (!configuredEntry && !alias) {
|
|
return params.entry;
|
|
}
|
|
const nextAlias = alias ?? params.entry.alias;
|
|
const nextContextWindow = configuredEntry?.contextWindow ?? params.entry.contextWindow;
|
|
const nextContextTokens = configuredEntry?.contextTokens ?? params.entry.contextTokens;
|
|
const nextReasoning = configuredEntry?.reasoning ?? params.entry.reasoning;
|
|
const nextInput = configuredEntry?.input ?? params.entry.input;
|
|
const nextCompat = configuredEntry?.compat ?? params.entry.compat;
|
|
|
|
return {
|
|
...params.entry,
|
|
name: configuredEntry?.name ?? params.entry.name,
|
|
...(nextAlias ? { alias: nextAlias } : {}),
|
|
...(nextContextWindow !== undefined ? { contextWindow: nextContextWindow } : {}),
|
|
...(nextContextTokens !== undefined ? { contextTokens: nextContextTokens } : {}),
|
|
...(nextReasoning !== undefined ? { reasoning: nextReasoning } : {}),
|
|
...(nextInput ? { input: nextInput } : {}),
|
|
...(nextCompat ? { compat: nextCompat } : {}),
|
|
};
|
|
}
|
|
|
|
function buildSyntheticAllowedCatalogEntry(params: {
|
|
parsed: ModelRef;
|
|
metadata: ModelCatalogMetadata;
|
|
}): ModelCatalogEntry {
|
|
const key = modelKey(params.parsed.provider, params.parsed.model);
|
|
const configuredEntry = params.metadata.configuredByKey.get(key);
|
|
const alias = params.metadata.aliasByKey.get(key);
|
|
const nextContextWindow = configuredEntry?.contextWindow;
|
|
const nextContextTokens = configuredEntry?.contextTokens;
|
|
const nextReasoning = configuredEntry?.reasoning;
|
|
const nextInput = configuredEntry?.input;
|
|
const nextCompat = configuredEntry?.compat;
|
|
|
|
return {
|
|
id: params.parsed.model,
|
|
name: configuredEntry?.name ?? params.parsed.model,
|
|
provider: params.parsed.provider,
|
|
...(alias ? { alias } : {}),
|
|
...(nextContextWindow !== undefined ? { contextWindow: nextContextWindow } : {}),
|
|
...(nextContextTokens !== undefined ? { contextTokens: nextContextTokens } : {}),
|
|
...(nextReasoning !== undefined ? { reasoning: nextReasoning } : {}),
|
|
...(nextInput ? { input: nextInput } : {}),
|
|
...(nextCompat ? { compat: nextCompat } : {}),
|
|
};
|
|
}
|
|
|
|
export function resolveModelRefFromString(
|
|
params: {
|
|
cfg?: OpenClawConfig;
|
|
raw: string;
|
|
defaultProvider: string;
|
|
aliasIndex?: ModelAliasIndex;
|
|
allowManifestNormalization?: boolean;
|
|
allowPluginNormalization?: boolean;
|
|
} & ManifestNormalizationContext,
|
|
): { ref: ModelRef; alias?: string } | null {
|
|
const { model } = splitTrailingAuthProfile(params.raw);
|
|
if (!model) {
|
|
return null;
|
|
}
|
|
const aliasKey = normalizeLowercaseStringOrEmpty(model);
|
|
const aliasMatch = params.aliasIndex?.byAlias.get(aliasKey);
|
|
if (aliasMatch) {
|
|
return { ref: aliasMatch.ref, alias: aliasMatch.alias };
|
|
}
|
|
const parsed = parseModelRefWithCompatAlias({
|
|
cfg: params.cfg,
|
|
raw: model,
|
|
defaultProvider: params.defaultProvider,
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
manifestPlugins: params.manifestPlugins,
|
|
});
|
|
if (!parsed) {
|
|
return null;
|
|
}
|
|
return { ref: parsed };
|
|
}
|
|
|
|
export function resolveConfiguredModelRef(params: {
|
|
cfg: OpenClawConfig;
|
|
defaultProvider: string;
|
|
defaultModel: string;
|
|
allowManifestNormalization?: boolean;
|
|
allowPluginNormalization?: boolean;
|
|
}): ModelRef {
|
|
const rawModel = resolveAgentModelPrimaryValue(params.cfg.agents?.defaults?.model) ?? "";
|
|
if (rawModel) {
|
|
const trimmed = rawModel.trim();
|
|
const aliasIndex = buildModelAliasIndex({
|
|
cfg: params.cfg,
|
|
defaultProvider: params.defaultProvider,
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
});
|
|
const aliasKey = normalizeLowercaseStringOrEmpty(trimmed);
|
|
const aliasMatch = aliasIndex.byAlias.get(aliasKey);
|
|
if (aliasMatch) {
|
|
return aliasMatch.ref;
|
|
}
|
|
|
|
if (!trimmed.includes("/")) {
|
|
const openrouterCompatRef = resolveConfiguredOpenRouterCompatAlias({
|
|
cfg: params.cfg,
|
|
raw: trimmed,
|
|
defaultProvider: params.defaultProvider,
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
});
|
|
if (openrouterCompatRef) {
|
|
return openrouterCompatRef;
|
|
}
|
|
|
|
const inferredProvider = inferUniqueProviderFromConfiguredModels({
|
|
cfg: params.cfg,
|
|
model: trimmed,
|
|
});
|
|
if (inferredProvider) {
|
|
return { provider: inferredProvider, model: trimmed };
|
|
}
|
|
|
|
const safeTrimmed = sanitizeModelWarningValue(trimmed);
|
|
const safeResolved = sanitizeForLog(`${params.defaultProvider}/${safeTrimmed}`);
|
|
getLog().warn(
|
|
`Model "${safeTrimmed}" specified without provider. Falling back to "${safeResolved}". Please use "${safeResolved}" in your config.`,
|
|
);
|
|
return { provider: params.defaultProvider, model: trimmed };
|
|
}
|
|
|
|
const resolved = resolveModelRefFromString({
|
|
cfg: params.cfg,
|
|
raw: trimmed,
|
|
defaultProvider: params.defaultProvider,
|
|
aliasIndex,
|
|
allowManifestNormalization: params.allowManifestNormalization,
|
|
allowPluginNormalization: params.allowPluginNormalization,
|
|
});
|
|
if (resolved) {
|
|
return resolved.ref;
|
|
}
|
|
|
|
const safe = sanitizeForLog(trimmed);
|
|
const safeFallback = sanitizeForLog(`${params.defaultProvider}/${params.defaultModel}`);
|
|
getLog().warn(
|
|
`Model "${safe}" could not be resolved. Falling back to default "${safeFallback}".`,
|
|
);
|
|
}
|
|
const fallbackProvider = resolveConfiguredProviderFallback({
|
|
cfg: params.cfg,
|
|
defaultProvider: params.defaultProvider,
|
|
});
|
|
if (fallbackProvider) {
|
|
return fallbackProvider;
|
|
}
|
|
return { provider: params.defaultProvider, model: params.defaultModel };
|
|
}
|
|
|
|
export function buildAllowedModelSetWithFallbacks(params: {
|
|
cfg: OpenClawConfig;
|
|
catalog: ModelCatalogEntry[];
|
|
defaultProvider: string;
|
|
defaultModel?: string;
|
|
fallbackModels: readonly string[];
|
|
}): {
|
|
allowAny: boolean;
|
|
allowedCatalog: ModelCatalogEntry[];
|
|
allowedKeys: Set<string>;
|
|
} {
|
|
const metadata = buildModelCatalogMetadata({
|
|
cfg: params.cfg,
|
|
defaultProvider: params.defaultProvider,
|
|
});
|
|
const configuredCatalog = buildConfiguredModelCatalog({ cfg: params.cfg });
|
|
const catalog = mergeModelCatalogEntries({
|
|
primary: params.catalog,
|
|
secondary: configuredCatalog,
|
|
}).map((entry) => applyModelCatalogMetadata({ entry, metadata }));
|
|
const rawAllowlist = (() => {
|
|
const modelMap = params.cfg.agents?.defaults?.models ?? {};
|
|
return Object.keys(modelMap);
|
|
})();
|
|
const allowAny = rawAllowlist.length === 0;
|
|
const defaultModel = params.defaultModel?.trim();
|
|
const defaultRef =
|
|
defaultModel && params.defaultProvider
|
|
? parseModelRefWithCompatAlias({
|
|
cfg: params.cfg,
|
|
raw: defaultModel,
|
|
defaultProvider: params.defaultProvider,
|
|
})
|
|
: null;
|
|
const defaultKey = defaultRef ? modelKey(defaultRef.provider, defaultRef.model) : undefined;
|
|
const catalogKeys = new Set(catalog.map((entry) => modelKey(entry.provider, entry.id)));
|
|
|
|
if (allowAny) {
|
|
if (defaultKey) {
|
|
catalogKeys.add(defaultKey);
|
|
}
|
|
return {
|
|
allowAny: true,
|
|
allowedCatalog: catalog,
|
|
allowedKeys: catalogKeys,
|
|
};
|
|
}
|
|
|
|
const allowedKeys = new Set<string>();
|
|
const allowedRefs: ModelRef[] = [];
|
|
const syntheticCatalogEntries = new Map<string, ModelCatalogEntry>();
|
|
const addAllowedCatalogRef = (ref: ModelRef) => {
|
|
if (
|
|
!allowedRefs.some(
|
|
(existing) =>
|
|
modelKey(existing.provider, existing.model) === modelKey(ref.provider, ref.model),
|
|
)
|
|
) {
|
|
allowedRefs.push(ref);
|
|
}
|
|
};
|
|
const addAllowedModelRef = (raw: string) => {
|
|
const trimmed = raw.trim();
|
|
const defaultProvider = !trimmed.includes("/")
|
|
? resolveBareModelDefaultProvider({
|
|
cfg: params.cfg,
|
|
catalog,
|
|
model: trimmed,
|
|
defaultProvider: params.defaultProvider,
|
|
})
|
|
: params.defaultProvider;
|
|
const parsed = parseModelRefWithCompatAlias({
|
|
cfg: params.cfg,
|
|
raw,
|
|
defaultProvider,
|
|
});
|
|
if (!parsed) {
|
|
return;
|
|
}
|
|
const key = modelKey(parsed.provider, parsed.model);
|
|
allowedKeys.add(key);
|
|
addAllowedCatalogRef(parsed);
|
|
|
|
if (
|
|
!findModelCatalogEntry(catalog, { provider: parsed.provider, modelId: parsed.model }) &&
|
|
!syntheticCatalogEntries.has(key)
|
|
) {
|
|
syntheticCatalogEntries.set(key, buildSyntheticAllowedCatalogEntry({ parsed, metadata }));
|
|
}
|
|
};
|
|
|
|
for (const raw of rawAllowlist) {
|
|
addAllowedModelRef(raw);
|
|
}
|
|
|
|
for (const fallback of params.fallbackModels) {
|
|
addAllowedModelRef(fallback);
|
|
}
|
|
|
|
if (defaultKey) {
|
|
allowedKeys.add(defaultKey);
|
|
if (defaultRef) {
|
|
addAllowedCatalogRef(defaultRef);
|
|
}
|
|
}
|
|
|
|
const allowedCatalog = [
|
|
...catalog.filter((entry) =>
|
|
allowedRefs.some(
|
|
(ref) =>
|
|
findModelCatalogEntry([entry], { provider: ref.provider, modelId: ref.model }) === entry,
|
|
),
|
|
),
|
|
...syntheticCatalogEntries.values(),
|
|
];
|
|
|
|
if (allowedCatalog.length === 0 && allowedKeys.size === 0) {
|
|
if (defaultKey) {
|
|
catalogKeys.add(defaultKey);
|
|
}
|
|
return {
|
|
allowAny: true,
|
|
allowedCatalog: catalog,
|
|
allowedKeys: catalogKeys,
|
|
};
|
|
}
|
|
|
|
return { allowAny: false, allowedCatalog, allowedKeys };
|
|
}
|
|
|
|
export type ModelRefStatus = {
|
|
key: string;
|
|
inCatalog: boolean;
|
|
allowAny: boolean;
|
|
allowed: boolean;
|
|
};
|
|
|
|
export type ResolveAllowedModelRefResult =
|
|
| { ref: ModelRef; key: string }
|
|
| {
|
|
error: string;
|
|
};
|
|
|
|
function getModelRefStatusFromAllowedSet(params: {
|
|
catalog: ModelCatalogEntry[];
|
|
ref: ModelRef;
|
|
allowed: {
|
|
allowAny: boolean;
|
|
allowedKeys: Set<string>;
|
|
};
|
|
}): ModelRefStatus {
|
|
const key = modelKey(params.ref.provider, params.ref.model);
|
|
return {
|
|
key,
|
|
inCatalog: Boolean(
|
|
findModelCatalogEntry(params.catalog, {
|
|
provider: params.ref.provider,
|
|
modelId: params.ref.model,
|
|
}),
|
|
),
|
|
allowAny: params.allowed.allowAny,
|
|
allowed: params.allowed.allowAny || params.allowed.allowedKeys.has(key),
|
|
};
|
|
}
|
|
|
|
export function getModelRefStatusWithFallbackModels(params: {
|
|
cfg: OpenClawConfig;
|
|
catalog: ModelCatalogEntry[];
|
|
ref: ModelRef;
|
|
defaultProvider: string;
|
|
defaultModel?: string;
|
|
fallbackModels: readonly string[];
|
|
}): ModelRefStatus {
|
|
const allowed = buildAllowedModelSetWithFallbacks({
|
|
cfg: params.cfg,
|
|
catalog: params.catalog,
|
|
defaultProvider: params.defaultProvider,
|
|
defaultModel: params.defaultModel,
|
|
fallbackModels: params.fallbackModels,
|
|
});
|
|
return getModelRefStatusFromAllowedSet({
|
|
catalog: params.catalog,
|
|
ref: params.ref,
|
|
allowed,
|
|
});
|
|
}
|
|
|
|
export function resolveAllowedModelRefFromAliasIndex(params: {
|
|
cfg: OpenClawConfig;
|
|
raw: string;
|
|
defaultProvider: string;
|
|
aliasIndex: ModelAliasIndex;
|
|
getStatus: (ref: ModelRef) => ModelRefStatus;
|
|
}): ResolveAllowedModelRefResult {
|
|
const trimmed = params.raw.trim();
|
|
if (!trimmed) {
|
|
return { error: "invalid model: empty" };
|
|
}
|
|
|
|
const effectiveDefaultProvider = !trimmed.includes("/")
|
|
? (inferUniqueProviderFromConfiguredModels({ cfg: params.cfg, model: trimmed }) ??
|
|
params.defaultProvider)
|
|
: params.defaultProvider;
|
|
|
|
const resolved = resolveModelRefFromString({
|
|
cfg: params.cfg,
|
|
raw: trimmed,
|
|
defaultProvider: effectiveDefaultProvider,
|
|
aliasIndex: params.aliasIndex,
|
|
});
|
|
if (!resolved) {
|
|
return { error: `invalid model: ${trimmed}` };
|
|
}
|
|
|
|
const status = params.getStatus(resolved.ref);
|
|
if (!status.allowed) {
|
|
return { error: `model not allowed: ${status.key}` };
|
|
}
|
|
|
|
return { ref: resolved.ref, key: status.key };
|
|
}
|
|
|
|
export function buildConfiguredModelCatalog(params: { cfg: OpenClawConfig }): ModelCatalogEntry[] {
|
|
const providers = params.cfg.models?.providers;
|
|
if (!providers || typeof providers !== "object") {
|
|
return [];
|
|
}
|
|
|
|
const catalog: ModelCatalogEntry[] = [];
|
|
for (const [providerRaw, provider] of Object.entries(providers)) {
|
|
const providerId = normalizeProviderId(providerRaw);
|
|
if (!providerId || !Array.isArray(provider?.models)) {
|
|
continue;
|
|
}
|
|
for (const model of provider.models) {
|
|
const id = normalizeOptionalString(model?.id) ?? "";
|
|
if (!id) {
|
|
continue;
|
|
}
|
|
const name = normalizeOptionalString(model?.name) || id;
|
|
const contextWindow =
|
|
typeof model?.contextWindow === "number" && model.contextWindow > 0
|
|
? model.contextWindow
|
|
: undefined;
|
|
const contextTokens =
|
|
typeof model?.contextTokens === "number" && model.contextTokens > 0
|
|
? model.contextTokens
|
|
: undefined;
|
|
const reasoning = typeof model?.reasoning === "boolean" ? model.reasoning : undefined;
|
|
const input = Array.isArray(model?.input) ? model.input : undefined;
|
|
const compat = model?.compat && typeof model.compat === "object" ? model.compat : undefined;
|
|
catalog.push({
|
|
provider: providerId,
|
|
id,
|
|
name,
|
|
contextWindow,
|
|
contextTokens,
|
|
reasoning,
|
|
input,
|
|
compat,
|
|
});
|
|
}
|
|
}
|
|
|
|
return catalog;
|
|
}
|
|
|
|
export function resolveHooksGmailModel(params: {
|
|
cfg: OpenClawConfig;
|
|
defaultProvider: string;
|
|
}): ModelRef | null {
|
|
const hooksModel = params.cfg.hooks?.gmail?.model;
|
|
if (!hooksModel?.trim()) {
|
|
return null;
|
|
}
|
|
|
|
const aliasIndex = buildModelAliasIndex({
|
|
cfg: params.cfg,
|
|
defaultProvider: params.defaultProvider,
|
|
});
|
|
|
|
const resolved = resolveModelRefFromString({
|
|
cfg: params.cfg,
|
|
raw: hooksModel,
|
|
defaultProvider: params.defaultProvider,
|
|
aliasIndex,
|
|
});
|
|
|
|
return resolved?.ref ?? null;
|
|
}
|
|
|
|
export function normalizeModelSelection(value: unknown): string | undefined {
|
|
if (typeof value === "string") {
|
|
const trimmed = value.trim();
|
|
return trimmed || undefined;
|
|
}
|
|
if (!value || typeof value !== "object") {
|
|
return undefined;
|
|
}
|
|
const primary = (value as { primary?: unknown }).primary;
|
|
if (typeof primary === "string" && primary.trim()) {
|
|
return primary.trim();
|
|
}
|
|
return undefined;
|
|
}
|