Feat: Add agent-log-list page (#9076)

### What problem does this PR solve?

Fix: Add agent-log-list page And RAPTOR:Save directly after enabling,
incomplete form submission #3221

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-07-30 09:48:51 +08:00
committed by GitHub
parent 39ef2ffba9
commit 4f8e7ef763
11 changed files with 627 additions and 17 deletions

View File

@ -36,6 +36,7 @@ export enum Routes {
Result = '/result',
ResultView = `${Chunk}${Result}`,
KnowledgeGraph = '/knowledge-graph',
AgentLogPage = '/agent-log-page',
}
const routes = [
@ -244,6 +245,11 @@ const routes = [
},
],
},
{
path: `${Routes.AgentLogPage}/:id`,
layout: false,
component: `@/pages${Routes.Agents}${Routes.AgentLogPage}`,
},
{
path: `${Routes.Agent}/:id`,
layout: false,