From d5878f12f84fd87e03ede3fd102669b0567bd584 Mon Sep 17 00:00:00 2001 From: 0xGingi <0xgingi@0xgingi.com> Date: Wed, 28 Jan 2026 16:29:25 -0500 Subject: [PATCH] update onboard naming for moltbot --- 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 babe70880..277a3d211 100644 --- a/src/commands/onboard-auth.config-core.ts +++ b/src/commands/onboard-auth.config-core.ts @@ -345,7 +345,7 @@ export function applySyntheticConfig(cfg: MoltbotConfig): MoltbotConfig { /** * Apply NanoGPT provider configuration without changing the default model. */ -export function applyNanoGptProviderConfig(cfg: ClawdbotConfig): ClawdbotConfig { +export function applyNanoGptProviderConfig(cfg: MoltbotConfig): MoltbotConfig { const models = { ...cfg.agents?.defaults?.models }; models[NANOGPT_DEFAULT_MODEL_REF] = { ...models[NANOGPT_DEFAULT_MODEL_REF], @@ -395,7 +395,7 @@ export function applyNanoGptProviderConfig(cfg: ClawdbotConfig): ClawdbotConfig /** * Apply NanoGPT provider configuration AND set NanoGPT as the default model. */ -export function applyNanoGptConfig(cfg: ClawdbotConfig): ClawdbotConfig { +export function applyNanoGptConfig(cfg: MoltbotConfig): MoltbotConfig { const next = applyNanoGptProviderConfig(cfg); const existingModel = next.agents?.defaults?.model; return {