Before starting up this project, make sure you have an AWS account and PyCharm installed in your machine. In this tutorial we will be using PyCharm Professional.
project/ └── workflows/ └── my_workflow/ # 一个工作流一个文件夹 ├── workflow.json # DAG 结构定义 ├── nodes/ │ ├── node_001.py # 代码执行节点 → Python 文件 │ ├── node_002_prompt.md # Agent 节点 → 提示词 │ ├── ...