From 628fef0ec1d2198a551ab354bc2fb10c5e9075a5 Mon Sep 17 00:00:00 2001 From: Huawei Date: Wed, 15 Jul 2026 15:24:42 +0000 Subject: [PATCH] docs: add type: python to workflow examples --- suite-developer/MEMORY.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/suite-developer/MEMORY.md b/suite-developer/MEMORY.md index c0ae88e..bd657ea 100644 --- a/suite-developer/MEMORY.md +++ b/suite-developer/MEMORY.md @@ -36,6 +36,7 @@ base_image: gis-base:latest steps: - id: step1 name: 步骤1 + type: python script_id: run params: input: $params.input_path @@ -53,8 +54,10 @@ steps: ```yaml steps: - id: step1 + type: python script_id: analyze - id: step2 + type: python script_id: report depends_on: [step1] # step2 等 step1 完成后才执行 ```