diff --git a/src/agents/model-selection.ts b/src/agents/model-selection.ts index 5a672c581..78b0ddac8 100644 --- a/src/agents/model-selection.ts +++ b/src/agents/model-selection.ts @@ -140,8 +140,7 @@ export function resolveConfiguredModelRef(params: { // Default to anthropic if no provider is specified, but warn as this is deprecated. console.warn( - `[clawdbot] Model "${trimmed}" specified without provider. Falling back to "anthropic/${trimmed}". ` + - `Please use "anthropic/${trimmed}" in your config.`, + `[clawdbot] Model "${trimmed}" specified without provider. Falling back to "anthropic/${trimmed}". Please use "anthropic/${trimmed}" in your config.`, ); return { provider: "anthropic", model: trimmed }; }