From d529954865347342911a3571d681f442a0adf002 Mon Sep 17 00:00:00 2001 From: Kesku Date: Tue, 27 Jan 2026 16:19:40 -0800 Subject: [PATCH] update naming convention to MoltbotConfig --- src/commands/onboard-auth.config-core.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/onboard-auth.config-core.ts b/src/commands/onboard-auth.config-core.ts index b76854fd9..67f923f93 100644 --- a/src/commands/onboard-auth.config-core.ts +++ b/src/commands/onboard-auth.config-core.ts @@ -416,7 +416,7 @@ export function applyVeniceConfig(cfg: MoltbotConfig): MoltbotConfig { * Apply Perplexity Agentic provider configuration without changing the default model. * Registers model alias but preserves existing model selection. */ -export function applyPerplexityAgenticProviderConfig(cfg: ClawdbotConfig): ClawdbotConfig { +export function applyPerplexityAgenticProviderConfig(cfg: MoltbotConfig): MoltbotConfig { const models = { ...cfg.agents?.defaults?.models }; models[PERPLEXITY_AGENTIC_DEFAULT_MODEL_REF] = { ...models[PERPLEXITY_AGENTIC_DEFAULT_MODEL_REF], @@ -439,7 +439,7 @@ export function applyPerplexityAgenticProviderConfig(cfg: ClawdbotConfig): Clawd * Apply Perplexity Agentic provider configuration AND set it as the default model. * Use this when Perplexity Agentic is the primary provider choice during onboarding. */ -export function applyPerplexityAgenticConfig(cfg: ClawdbotConfig): ClawdbotConfig { +export function applyPerplexityAgenticConfig(cfg: MoltbotConfig): MoltbotConfig { const next = applyPerplexityAgenticProviderConfig(cfg); const existingModel = next.agents?.defaults?.model; return {