Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions runner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,20 @@ python -m runner.mobiagent.mobiagent --service_ip <服务IP> --decider_port <决
- `--data_dir <path>`:结果数据保存目录,默认为脚本目录下的 `data/`(若不存在会自动创建)。
- `--task_file <path>`:任务列表文件路径,默认为脚本目录下的 `task.json`。

### 基于经验模板的 AgentRR(实验性功能)

(这是一个实验性功能,可能导致任务执行出错或不稳定)

要启用基于经验模板的AgentRR(通过经验模板提供的子任务拆分来回放历史操作,从而加速任务执行),需要同时设置 `--use_experience` 和 `--enable_agentrr`:

```bash
python -m runner.mobiagent.mobiagent \
...
--use_experience \
--enable_agentrr
```

在执行 `task.json` 中指定的任务时,AgentRR 将搜索之前已完成任务中的可重用操作,并回放它们,从而绕过 agent 模型调用。

### 用户画像与偏好记忆(Mem0/GraphRAG)

Expand Down
16 changes: 16 additions & 0 deletions runner/README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,22 @@ Parameters
- `--grounder_port`: Grounder service port (default: `8001`)
- `--planner_port`: Planner service port (default: `8002`)

### Experience Template-based AgentRR (experimental)

(This is a experimental feature which can be unstable)

To enable experience template-based Agent Record & Replay, which accelerates task execution by replaying historical actions based on the subtask splitting provided by experience templates, set both `--use_experience` and `--enable_agentrr`:

```bash
python -m runner.mobiagent.mobiagent \
...
--use_experience \
--enable_agentrr
```

When executing a task in `task.json`, AgentRR will search for reuseable actions in previously completed tasks and replay them, bypassing agent model invocation.


### User Profile & Preference Memory (Mem0/GraphRAG)

MobiAgent integrates a user preference memory system (Mem0) to provide personalized context for planning.
Expand Down
Loading