Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dataflowmm init
这时你会看到:

```bash
gpu_pipelines/vision_mcts_pipeline.py
gpu_pipelines/vision_mct_reasoning_pipeline.py

```

Expand Down Expand Up @@ -83,7 +83,7 @@ if __name__ == "__main__":

```bash
cd gpu_pipelines
python vision_mcts_pipeline.py
python vision_mct_reasoning_pipeline.py

```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dataflowmm init
这时你会看到:

```bash
api_pipelines/vision_mcts_api_pipeline.py
api_pipelines/vision_mct_reasoning_api_pipeline.py

```

Expand All @@ -58,7 +58,7 @@ huggingface-cli download --repo-type dataset OpenDCAI/dataflow-demo-image --loca

### 第四步:配置 API Key

在 `api_pipelines/vision_mcts_api_pipeline.py` 中设置 API Key 环境变量:
在 `api_pipelines/vision_mct_reasoning_api_pipeline.py` 中设置 API Key 环境变量:

```python
import os
Expand All @@ -82,7 +82,7 @@ os.environ["DF_API_KEY"] = "your_api_key"

```bash
cd api_pipelines
python vision_mcts_api_pipeline.py
python vision_mct_reasoning_api_pipeline.py

```

Expand Down