diff --git a/server/_core/llm.ts b/server/_core/llm.ts index 549a895..b83b7ae 100644 --- a/server/_core/llm.ts +++ b/server/_core/llm.ts @@ -218,7 +218,7 @@ const resolveApiUrl = () => { // Otherwise use Manus Forge API return ENV.forgeApiUrl && ENV.forgeApiUrl.trim().length > 0 ? `${ENV.forgeApiUrl.replace(/\/$/, "")}/v1/chat/completions` - : "https://forge.manus.im/v1/chat/completions"; + : "https://forge.manus.ai/v1/chat/completions"; }; const assertApiKey = () => { @@ -289,7 +289,7 @@ function resolveApiUrlWithSettings(settings?: { aiProvider?: string | null; mist return "https://api.mistral.ai/v1/chat/completions"; } // Manus provider - const forgeUrl = settings?.manusForgeApiUrl || ENV.forgeApiUrl || "https://forge.manus.im"; + const forgeUrl = settings?.manusForgeApiUrl || ENV.forgeApiUrl || "https://forge.manus.ai"; return `${forgeUrl.replace(/\/$/, "")}/v1/chat/completions`; }