From 0a16b8399780cee2526e4ed59d4da40ac101839a Mon Sep 17 00:00:00 2001 From: Huawei Date: Mon, 13 Jul 2026 10:49:22 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20MEMORY.md=20=E2=80=94=20workflow=20?= =?UTF-8?q?=E7=A4=BA=E4=BE=8B=E7=BB=9F=E4=B8=80=E4=B8=BA=20script=5Fid?= =?UTF-8?q?=EF=BC=88=E4=B9=8B=E5=89=8D=E8=A1=A8=E6=A0=BC=E5=86=99=E5=8F=8D?= =?UTF-8?q?=E4=BA=86=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- suite-developer/MEMORY.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/suite-developer/MEMORY.md b/suite-developer/MEMORY.md index ea4b7fd..7c4fed4 100644 --- a/suite-developer/MEMORY.md +++ b/suite-developer/MEMORY.md @@ -21,7 +21,7 @@ steps: - id: my-step name: 我的步骤 - script: run # ✅ script: run,不是 script: run.py + script_id: run # ✅ script_id 优先 params: input: $params.input_path # ✅ 使用 $params.xxx ``` @@ -30,8 +30,8 @@ steps: | ❌ 错误 | ✅ 正确 | |---------|--------| -| `script: run.py` | `script: run` | -| `script_id: run` | `script: run` | +| `script: run.py` | `script_id: run` | +| `script: run` | `script_id: run` | | `params_mapping: {...}` | `params: {...}` | | `$params.xxx` | `$params.xxx` | | `$inputs.xxx` | `$params.xxx` |