From 44ffbd5412a1e352e0800b460ec55352a6369a91 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Thu, 25 Apr 2024 15:42:48 +0200 Subject: [PATCH] fix ui: fix mockup api route --- frontend/app/services/AiService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/services/AiService.ts b/frontend/app/services/AiService.ts index 3b0bc1862..befdb49a2 100644 --- a/frontend/app/services/AiService.ts +++ b/frontend/app/services/AiService.ts @@ -42,7 +42,7 @@ export default class AiService extends BaseService { } async getCardData(query: string, chartData: Record): Promise> { - const r = await this.client.post('/intelligent/search-plus', { + const r = await this.client.post('/intelligent/ask-or/charts', { ...chartData, question: query, });