v0.12: stabilize search routing and profile-driven phase4 pipeline
This commit is contained in:
+17
-4
@@ -85,20 +85,33 @@ Phase 4 推荐走确定性 CLI,而不是让单个 agent 翻译整篇:
|
||||
|
||||
```bash
|
||||
uv run python scripts/dr.py finalize <slug> \
|
||||
--translate-workers 4 \
|
||||
--glossary-workers 4 \
|
||||
--polish-workers 4
|
||||
--model-profile medium
|
||||
```
|
||||
|
||||
网络不稳时:
|
||||
等价底层入口(统一 pipeline):
|
||||
|
||||
```bash
|
||||
uv run python scripts/phase4_pipeline.py <slug>
|
||||
```
|
||||
|
||||
网络不稳时可显式降并发:
|
||||
|
||||
```bash
|
||||
uv run python scripts/dr.py finalize <slug> \
|
||||
--model-profile medium \
|
||||
--translate-workers 1 \
|
||||
--glossary-workers 3 \
|
||||
--polish-workers 1
|
||||
```
|
||||
|
||||
术语核查策略可选:
|
||||
|
||||
```bash
|
||||
uv run python scripts/dr.py finalize <slug> --model-profile medium --glossary-mode low-confidence
|
||||
uv run python scripts/dr.py finalize <slug> --model-profile medium --glossary-mode full
|
||||
uv run python scripts/dr.py finalize <slug> --model-profile medium --glossary-mode off
|
||||
```
|
||||
|
||||
## Subagent Usage
|
||||
|
||||
Codex 的平台限制是:subagents 不会仅因为 `.codex/agents/*.toml` 存在就自动启动,必须由当前主线程明确要求。`dr-run` 已把这个要求写进 PM prompt:Phase 1 会调度 `dr-plan` / `dr-searcher`,Phase 2 会调度 `dr-analyst` / `dr-verifier`,Phase 3 会调度 `dr-chief-editor`。
|
||||
|
||||
Reference in New Issue
Block a user