From fd4e952f5106a7031b5f3cfd0773cf3e7e6229ee Mon Sep 17 00:00:00 2001 From: Prem Palanisamy Date: Fri, 20 Feb 2026 16:31:52 +0000 Subject: [PATCH] fix: remove duplicate /v1 prefix from assistant fetch URLs --- src/lib/commandCenter/panels/ai.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/commandCenter/panels/ai.svelte b/src/lib/commandCenter/panels/ai.svelte index 3964e254e..c72b0808c 100644 --- a/src/lib/commandCenter/panels/ai.svelte +++ b/src/lib/commandCenter/panels/ai.svelte @@ -196,7 +196,7 @@ traceId = ''; try { - const res = await fetch(`${endpoint}/v1/console/assistant`, { + const res = await fetch(`${endpoint}/console/assistant`, { method: 'POST', headers: { 'Content-Type': 'application/json', @@ -349,7 +349,7 @@ function sendFeedback(score: 'positive' | 'negative') { if (!traceId) return; feedback = score; - fetch(`${endpoint}/v1/console/assistant/feedback`, { + fetch(`${endpoint}/console/assistant/feedback`, { method: 'POST', headers: { 'Content-Type': 'application/json',