continue_workflow
Resolve execution blockages in a paused workflow by retrying, skipping, aborting, or overriding the current step with custom instructions.
Instructions
对暂停的工作流执行决策:重试当前步骤、跳过、终止、或用自定义指令覆盖。用于处理工作流执行中遇到的阻塞。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| decision | Yes | 决策类型:retry=重新执行当前步骤, skip=跳过当前步骤, abort=终止工作流, manual=用自定义指令覆盖当前步骤 | |
| instruction | No | 自定义指令(仅 decision=manual 时使用),替换当前步骤的原始指令。 | |
| execution_id | Yes | 工作流执行 ID。从 execute_workflow 返回结果或 workflow_progress 推送中获取。 |