feat: add chat history and edit

This commit is contained in:
2024-09-30 02:53:13 +08:00
parent 029710f31c
commit 441b94a061
10 changed files with 269 additions and 30 deletions

View File

@@ -8,6 +8,8 @@ import { App as MapApp } from './pages/map';
import { App as PromptApp } from './pages/prompt';
import { App as AiAgentApp } from './pages/ai-agent';
import { App as UserApp } from './pages/user';
import { App as ChatApp } from './pages/chat-manager';
import '@abearxiong/container/dist/container.css';
export const App = () => {
@@ -28,6 +30,7 @@ export const App = () => {
<Route path='/prompt/*' element={<PromptApp />} />
<Route path='/agent/*' element={<AiAgentApp />} />
<Route path='/user/*' element={<UserApp />} />
<Route path='/chat/*' element={<ChatApp />} />
<Route path='/404' element={<div>404</div>} />
<Route path='*' element={<div>404</div>} />
</Routes>