webui: add bilingual task audit split-view page and backend task audit API; final-result only long-run flow

This commit is contained in:
DBT
2026-02-28 02:34:20 +00:00
parent e289b1fc24
commit 4dfd6ce11f
4 changed files with 134 additions and 1 deletions

View File

@@ -11,6 +11,7 @@ import Nodes from './pages/Nodes';
import Logs from './pages/Logs';
import Skills from './pages/Skills';
import Memory from './pages/Memory';
import TaskAudit from './pages/TaskAudit';
export default function App() {
return (
@@ -27,6 +28,7 @@ export default function App() {
<Route path="cron" element={<Cron />} />
<Route path="nodes" element={<Nodes />} />
<Route path="memory" element={<Memory />} />
<Route path="task-audit" element={<TaskAudit />} />
</Route>
</Routes>
</BrowserRouter>