refactor(agent): remove memory agent, simplify runtime config system

This commit is contained in:
zl-q
2026-03-23 01:20:27 +08:00
parent 80ad5141a6
commit 3aacc756db
43 changed files with 1210 additions and 1312 deletions
+6 -4
View File
@@ -202,10 +202,12 @@ interface ForwardedProps {
### 运行模式说明
| runtime_mode | 说明 | 后端 Pipeline |
|--------------|------|---------------|
| `chat` | 标准对话模式 | `router` -> `worker` |
| `automation` | 自动化任务模式 | 由后端业务逻辑决定具体 Agent 类型 |
| runtime_mode | 说明 | Pipeline | 差异 |
|--------------|------|----------|------|
| `chat` | 标准对话模式 | `router` -> `worker` | `enabled_tools``context` 来自 `system_agents.yaml` |
| `automation` | 自动化任务模式 | `router` -> `worker` | `enabled_tools``context` 来自 `AutomationJob.config`(通过 `runtime_config` 注入)|
> `runtime_mode` 仅影响 `RuntimeConfig`(工具列表与上下文配置),不改变执行阶段。两模式均使用固定两阶段 pipeline。
### 时间来源优先级(固定)