🔧 Flux Sampler Parameters
essentials/sampling
FluxSamplerParams+Example
JSON Example
{
"class_type": "FluxSamplerParams+",
"inputs": {
"model": [
"node_id",
0
],
"conditioning": [
"node_id",
0
],
"latent_image": [
"node_id",
0
],
"noise": "?",
"sampler": "ipndm",
"scheduler": "simple",
"steps": "20",
"guidance": "3.5",
"max_shift": "1.15",
"base_shift": "0.5",
"split_sigmas": "1.0",
"denoise": "1.0"
}
}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 |
|---|---|---|---|---|
model | MODEL | required | - | - |
conditioning | CONDITIONING | required | - | - |
latent_image | LATENT | required | - | - |
noise | STRING | required | - | "?" |
sampler | STRING | required | - | "ipndm" |
scheduler | STRING | required | - | "simple" |
steps | STRING | required | - | "20" |
guidance | STRING | required | - | "3.5" |
max_shift | STRING | required | - | "1.15" |
base_shift | STRING | required | - | "0.5" |
split_sigmas | STRING | required | - | "1.0" |
denoise | STRING | required | - | "1.0" |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | latent | LATENT | No | ["{node_id}", 0] |
1 | params | SAMPLER_PARAMS | No | ["{node_id}", 1] |
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 FluxSamplerParams+ node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
latent (LATENT):["5", 0]params (SAMPLER_PARAMS):["5", 1]
Was this page helpful?