From cdb96499bedd28421ec2d4c60ea44ad956b8ee07 Mon Sep 17 00:00:00 2001 From: jules Date: Sat, 2 May 2026 20:33:07 +1000 Subject: [PATCH] fix(deepseek): drop /v1 from probe URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Matches the arcadia-app providers map update — direct-mode "Test connection" was probing https://api.deepseek.com/v1/models which 404s on DeepSeek's new endpoint. Now probes /models at the host root. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/routes/settings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes/settings.tsx b/app/routes/settings.tsx index 173617f..9d3e3f6 100644 --- a/app/routes/settings.tsx +++ b/app/routes/settings.tsx @@ -120,7 +120,7 @@ export default function SettingsRoute() { : s.providerId === "openai" ? "https://api.openai.com/v1" : s.providerId === "deepseek" - ? "https://api.deepseek.com/v1" + ? "https://api.deepseek.com" : "https://dashscope-intl.aliyuncs.com/compatible-mode/v1") // Resolve key for the probe (lmstudio doesn't need one). let apiKey: string | undefined