-
-
diff --git a/VisualQnA/ui/svelte/src/lib/shared/constant/Interface.ts b/VisualQnA/ui/svelte/src/lib/shared/constant/Interface.ts
deleted file mode 100644
index c461e2b791..0000000000
--- a/VisualQnA/ui/svelte/src/lib/shared/constant/Interface.ts
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2024 Intel Corporation
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-export enum MessageRole {
- Assistant,
- User,
-}
-
-export enum MessageType {
- Text,
- SingleAudio,
- AudioList,
- SingleImage,
- ImageList,
- singleVideo,
-}
-
-type Map = T extends MessageType.Text | MessageType.SingleAudio
- ? string
- : T extends MessageType.AudioList
- ? string[]
- : T extends MessageType.SingleImage
- ? { imgSrc: string; imgId: string }
- : { imgSrc: string; imgId: string }[];
-
-export interface Message {
- imgSrc: string | null | undefined;
- role: MessageRole;
- type: MessageType;
- content: Map;
- time: number;
-}
-
-export enum LOCAL_STORAGE_KEY {
- STORAGE_CHAT_KEY = "chatMessages",
- STORAGE_TIME_KEY = "initTime",
-}
diff --git a/VisualQnA/ui/svelte/src/lib/shared/stores/common/Store.ts b/VisualQnA/ui/svelte/src/lib/shared/stores/common/Store.ts
deleted file mode 100644
index 88a581ab68..0000000000
--- a/VisualQnA/ui/svelte/src/lib/shared/stores/common/Store.ts
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 2024 Intel Corporation
-//
-// Licensed under the Apache License, Version 2.0 (the "License");
-// you may not use this file except in compliance with the License.
-// You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing, software
-// distributed under the License is distributed on an "AS IS" BASIS,
-// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-// See the License for the specific language governing permissions and
-// limitations under the License.
-
-import { writable } from "svelte/store";
-
-export let open = writable(true);
-
-export let knowledgeAccess = writable(true);
-
-export let showTemplate = writable(false);
-
-export let showSidePage = writable(false);
-
-export let droppedObj = writable({});
-
-export let isLoading = writable(false);
-
-export let newUploadNum = writable(0);
-
-export let ifStoreMsg = writable(true);
-
-export let isCheckedStore = writable(false);
-
-export const resetControl = writable(false);
-
-export const knowledge1 = writable<{
- id: string;
-}>();
-
-export const knowledgeName = writable("");
-
-export const base64ImageStore = writable("");
-
-export const stepValueStore = writable(512);
diff --git a/VisualQnA/ui/svelte/src/routes/+layout.svelte b/VisualQnA/ui/svelte/src/routes/+layout.svelte
deleted file mode 100644
index 8141177d4a..0000000000
--- a/VisualQnA/ui/svelte/src/routes/+layout.svelte
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-