Skip to main content

🔧 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

NameTypeStatusConstraintsDefault
modelMODELrequired--
conditioningCONDITIONINGrequired--
latent_imageLATENTrequired--
noiseSTRINGrequired-"?"
samplerSTRINGrequired-"ipndm"
schedulerSTRINGrequired-"simple"
stepsSTRINGrequired-"20"
guidanceSTRINGrequired-"3.5"
max_shiftSTRINGrequired-"1.15"
base_shiftSTRINGrequired-"0.5"
split_sigmasSTRINGrequired-"1.0"
denoiseSTRINGrequired-"1.0"

Outputs

IndexNameTypeIs ListConnection Reference
0latentLATENTNo["{node_id}", 0]
1paramsSAMPLER_PARAMSNo["{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?