Flux2Scheduler
sampling/custom_sampling/schedulers
Flux2SchedulerExample
JSON Example
{
"class_type": "Flux2Scheduler",
"inputs": {
"steps": 20,
"width": 1024,
"height": 1024
}
}This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.
Inputs
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
steps | INT | required | min: 1, max: 4096 | 20 |
width | INT | required | min: 16, max: 16384, step: 1 | 1024 |
height | INT | required | min: 16, max: 16384, step: 1 | 1024 |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | SIGMAS | SIGMAS | No | ["{node_id}", 0] |
How to connect to these outputs
To connect another node's input to an output from this node, use the connection reference format:
["node_id", output_index]Where node_id is the ID of this Flux2Scheduler node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
SIGMAS (SIGMAS):["5", 0]
Was this page helpful?