Road map product 2021
ComfyUI Tutorial 101: The Basics
Welcome to ComfyUI
This tutorial will walk you through the fundamental concepts of using the ComfyUI API to generate images.
Step-by-Step Guide
- Setup Your Environment: Ensure you have the ComfyUI server running and that you have your API endpoint ready. The default is usually `http://127.0.0.1:8188/`.
- Understand the Workflow JSON: ComfyUI uses a JSON structure to define the nodes and connections of your workflow. You will need to construct this JSON object to tell the API what to do.
- Sending the API Request: Use a `POST` request to the `/prompt` endpoint with your workflow JSON as the payload. This will queue the job.
- Viewing the Output: Once the image is generated, you can retrieve it from the `/view` endpoint using the filename provided in the API response.