From 8536c9a8aab810a8cbed780d66b7d1bfc6423218 Mon Sep 17 00:00:00 2001 From: Manus Date: Tue, 5 May 2026 09:31:54 -0400 Subject: [PATCH] fix: corriger URL Manus Forge de forge.manus.im vers forge.manus.ai --- server/_core/llm.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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`; }