diff --git a/ai/ai-samples/src/App.tsx b/ai/ai-samples/src/App.tsx
index c6902376f..a3b802829 100644
--- a/ai/ai-samples/src/App.tsx
+++ b/ai/ai-samples/src/App.tsx
@@ -1,11 +1,4 @@
import { Link, Outlet, useLocation } from 'react-router-dom';
-import TextGenerationView from './features/text-generation';
-import ChatView from './features/chat';
-import MultimodalView from './features/multimodal';
-import StructuredOutputView from './features/structured-output';
-import FunctionCallingView from './features/function-calling';
-import ImageGenerationView from './features/image-generation';
-import AutomaticFunctionCallingView from './features/automatic-function-calling';
const NAV_ITEMS = [
{ path: '/text-generation', label: 'Text Generation' },
@@ -15,26 +8,13 @@ const NAV_ITEMS = [
{ path: '/function-calling', label: 'Function Calling' },
{ path: '/automatic-function-calling', label: 'Automatic Function Calling' },
{ path: '/image-generation', label: 'Image Generation' },
-
+
];
export default function App() {
const { pathname } = useLocation();
- const isolatedFeature = import.meta.env.VITE_ISOLATED_FEATURE;
- // If running an isolated script, bypass the shell entirely
- if (isolatedFeature) {
- switch (isolatedFeature) {
- case 'text-generation': return