run_workflow
Execute AI image generation workflows using Fal.ai models like SDXL to process inputs and stream results for creative projects.
Instructions
Run a Fal.ai workflow (e.g., sdxl-sticker pipeline)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes | Input parameters for the workflow | |
stream | No | Whether to stream workflow events | |
workflow_id | Yes | The workflow ID |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"description": "Input parameters for the workflow",
"type": "object"
},
"stream": {
"default": false,
"description": "Whether to stream workflow events",
"type": "boolean"
},
"workflow_id": {
"description": "The workflow ID",
"type": "string"
}
},
"required": [
"workflow_id",
"input"
],
"type": "object"
}