mirror of
https://github.com/mudler/LocalAI.git
synced 2026-04-01 05:36:49 -04:00
* feat: add standalone and agentic functionalities Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * expose agents via responses api Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
85 lines
3.3 KiB
JavaScript
85 lines
3.3 KiB
JavaScript
import { createBrowserRouter } from 'react-router-dom'
|
|
import App from './App'
|
|
import Home from './pages/Home'
|
|
import Chat from './pages/Chat'
|
|
import Models from './pages/Models'
|
|
import Manage from './pages/Manage'
|
|
import ImageGen from './pages/ImageGen'
|
|
import VideoGen from './pages/VideoGen'
|
|
import TTS from './pages/TTS'
|
|
import Sound from './pages/Sound'
|
|
import Talk from './pages/Talk'
|
|
import Backends from './pages/Backends'
|
|
import Settings from './pages/Settings'
|
|
import Traces from './pages/Traces'
|
|
import P2P from './pages/P2P'
|
|
import Agents from './pages/Agents'
|
|
import AgentCreate from './pages/AgentCreate'
|
|
import AgentChat from './pages/AgentChat'
|
|
import AgentStatus from './pages/AgentStatus'
|
|
import Collections from './pages/Collections'
|
|
import CollectionDetails from './pages/CollectionDetails'
|
|
import Skills from './pages/Skills'
|
|
import SkillEdit from './pages/SkillEdit'
|
|
import AgentJobs from './pages/AgentJobs'
|
|
import AgentTaskDetails from './pages/AgentTaskDetails'
|
|
import AgentJobDetails from './pages/AgentJobDetails'
|
|
import ModelEditor from './pages/ModelEditor'
|
|
import ImportModel from './pages/ImportModel'
|
|
import Explorer from './pages/Explorer'
|
|
import Login from './pages/Login'
|
|
import NotFound from './pages/NotFound'
|
|
|
|
export const router = createBrowserRouter([
|
|
{
|
|
path: '/login',
|
|
element: <Login />,
|
|
},
|
|
{
|
|
path: '/explorer',
|
|
element: <Explorer />,
|
|
},
|
|
{
|
|
path: '/',
|
|
element: <App />,
|
|
children: [
|
|
{ index: true, element: <Home /> },
|
|
{ path: 'browse', element: <Models /> },
|
|
{ path: 'chat', element: <Chat /> },
|
|
{ path: 'chat/:model', element: <Chat /> },
|
|
{ path: 'image', element: <ImageGen /> },
|
|
{ path: 'image/:model', element: <ImageGen /> },
|
|
{ path: 'video', element: <VideoGen /> },
|
|
{ path: 'video/:model', element: <VideoGen /> },
|
|
{ path: 'tts', element: <TTS /> },
|
|
{ path: 'tts/:model', element: <TTS /> },
|
|
{ path: 'sound', element: <Sound /> },
|
|
{ path: 'sound/:model', element: <Sound /> },
|
|
{ path: 'talk', element: <Talk /> },
|
|
{ path: 'manage', element: <Manage /> },
|
|
{ path: 'backends', element: <Backends /> },
|
|
{ path: 'settings', element: <Settings /> },
|
|
{ path: 'traces', element: <Traces /> },
|
|
{ path: 'p2p', element: <P2P /> },
|
|
{ path: 'agents', element: <Agents /> },
|
|
{ path: 'agents/new', element: <AgentCreate /> },
|
|
{ path: 'agents/:name/edit', element: <AgentCreate /> },
|
|
{ path: 'agents/:name/chat', element: <AgentChat /> },
|
|
{ path: 'agents/:name/status', element: <AgentStatus /> },
|
|
{ path: 'collections', element: <Collections /> },
|
|
{ path: 'collections/:name', element: <CollectionDetails /> },
|
|
{ path: 'skills', element: <Skills /> },
|
|
{ path: 'skills/new', element: <SkillEdit /> },
|
|
{ path: 'skills/edit/:name', element: <SkillEdit /> },
|
|
{ path: 'agent-jobs', element: <AgentJobs /> },
|
|
{ path: 'agent-jobs/tasks/new', element: <AgentTaskDetails /> },
|
|
{ path: 'agent-jobs/tasks/:id', element: <AgentTaskDetails /> },
|
|
{ path: 'agent-jobs/tasks/:id/edit', element: <AgentTaskDetails /> },
|
|
{ path: 'agent-jobs/jobs/:id', element: <AgentJobDetails /> },
|
|
{ path: 'model-editor/:name', element: <ModelEditor /> },
|
|
{ path: 'import-model', element: <ImportModel /> },
|
|
{ path: '*', element: <NotFound /> },
|
|
],
|
|
},
|
|
])
|