Skip to content

Instantly share code, notes, and snippets.

@dylanholmes
Last active May 31, 2025 14:47
Show Gist options
  • Save dylanholmes/3a6c97343f1cc4d95ad69c1fdb4b4a38 to your computer and use it in GitHub Desktop.
Save dylanholmes/3a6c97343f1cc4d95ad69c1fdb4b4a38 to your computer and use it in GitHub Desktop.
How to get the model of the "Flux ICEdit" aka "DiptychFluxFillPipeline" node in griptape nodes

Currently, the diffuser variants of the models need to be available in the huggingface cache. There is a little (albeit lacking) documentation here: https://docs.griptapenodes.com/en/stable/how_to/installs/hugging_face/

The tl;dr is:

  1. Install the huggingface-cli
  2. Log in to the huggingface-cli (required because its a gated model)
  3. Download the model for the Flux ICEdit (aka diptych...):
huggingface-cli download black-forest-labs/FLUX.1-Fill-dev

Or the repo actually contains the model in two formats, we can avoid ~20GB with this command instead:

huggingface-cli download black-forest-labs/FLUX.1-Fill-dev --include "scheduler/*" "text_encoder/*" "text_encoder_2/*" "tokenizer/*" "tokenizer_2/*" "transformer/*" "vae/*" "model_index.json"
  1. Re-add the node to the workflow
  2. Verify the model name appears in the dropdown on the node.

Oh, and don't forget to use the riverz lora for the best results (huggingface-cli download RiverZ/normal-lora, then find the lora node in the sidebar)

Hopefully this gets more intuitive (and customizable) soon!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment