feat(ui): Add import agent screen

This commit is contained in:
Richard Palethorpe
2025-04-01 22:25:21 +01:00
parent 7494aa9c26
commit 74fdfd7a55
6 changed files with 248 additions and 6 deletions

View File

@@ -8,6 +8,7 @@ import Chat from './pages/Chat';
import ActionsPlayground from './pages/ActionsPlayground';
import GroupCreate from './pages/GroupCreate';
import AgentStatus from './pages/AgentStatus';
import ImportAgent from './pages/ImportAgent';
// Get the base URL from Vite's environment variables or default to '/app/'
const BASE_URL = import.meta.env.BASE_URL || '/app';
@@ -46,6 +47,10 @@ export const router = createBrowserRouter([
path: 'group-create',
element: <GroupCreate />
},
{
path: 'import',
element: <ImportAgent />
},
{
path: 'status/:name',
element: <AgentStatus />