feat: Agent 运行时、对话 API、作业助手与引擎修复及前端执行超时

- agent_runtime 模块与 agent_chat API,前端 AgentChat 视图与路由对接
- workflow_engine: code 节点命名空间与 json 引用修复
- llm_service: 工具调用 extra_body(如 DeepSeek)
- create_homework_manager_agent / _3 脚本与测试脚本扩展
- frontend: WORKFLOW_EXECUTION_HTTP_TIMEOUT_MS、AgentChatPreview/MainLayout 等
- 文档:架构说明与自主 Agent 改造完成情况

Made-with: Cursor
This commit is contained in:
renjianbo
2026-05-01 11:31:48 +08:00
parent 4366312946
commit 09467568ec
23 changed files with 2798 additions and 77 deletions

View File

@@ -99,6 +99,18 @@ const router = createRouter({
name: 'node-templates',
component: () => import('@/views/NodeTemplates.vue'),
meta: { requiresAuth: true }
},
{
path: '/agent-chat',
name: 'agent-chat',
component: () => import('@/views/AgentChat.vue'),
meta: { requiresAuth: true }
},
{
path: '/agent-chat/:id',
name: 'agent-chat-with-agent',
component: () => import('@/views/AgentChat.vue'),
meta: { requiresAuth: true }
}
]
})