From dbe74ae6e3777003165a783d7380e9085eb277e3 Mon Sep 17 00:00:00 2001 From: Chandrapal Badshah <12944530+Chan9390@users.noreply.github.com> Date: Mon, 21 Apr 2025 15:17:50 +0530 Subject: [PATCH] Remove unused interface --- ui/types/chatbot/chatbot.ts | 23 ----------------------- ui/types/chatbot/index.ts | 1 - 2 files changed, 24 deletions(-) delete mode 100644 ui/types/chatbot/chatbot.ts delete mode 100644 ui/types/chatbot/index.ts diff --git a/ui/types/chatbot/chatbot.ts b/ui/types/chatbot/chatbot.ts deleted file mode 100644 index 28a8567532..0000000000 --- a/ui/types/chatbot/chatbot.ts +++ /dev/null @@ -1,23 +0,0 @@ -export interface AIInfoDetailResponse { - data: { - type: string; - id: string; - attributes: { - name: string; - model: string; - temperature: number; - max_tokens: number; - business_context: string | null; - is_active: boolean; - inserted_at: string; - updated_at: string; - api_key: string; - }; - links: { - self: string; - }; - }; - meta: { - version: string; - }; -} diff --git a/ui/types/chatbot/index.ts b/ui/types/chatbot/index.ts deleted file mode 100644 index 7a9d1d1c46..0000000000 --- a/ui/types/chatbot/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "./chatbot";