gitextract_5wlz5y8p/ ├── .github/ │ └── workflows/ │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── demo_gr.py ├── demo_st.py ├── demo_st_fill.py ├── docs/ │ ├── fill.md │ ├── image-editing.md │ ├── image-variation.md │ ├── structural-conditioning.md │ └── text-to-image.md ├── model_cards/ │ ├── FLUX.1-Krea-dev.md │ ├── FLUX.1-dev.md │ ├── FLUX.1-kontext-dev.md │ └── FLUX.1-schnell.md ├── model_licenses/ │ ├── LICENSE-FLUX1-dev │ └── LICENSE-FLUX1-schnell ├── pyproject.toml ├── setup.py └── src/ └── flux/ ├── __init__.py ├── __main__.py ├── cli.py ├── cli_control.py ├── cli_fill.py ├── cli_kontext.py ├── cli_redux.py ├── content_filters.py ├── math.py ├── model.py ├── modules/ │ ├── autoencoder.py │ ├── conditioner.py │ ├── image_embedders.py │ ├── layers.py │ └── lora.py ├── sampling.py ├── trt/ │ ├── __init__.py │ ├── engine/ │ │ ├── __init__.py │ │ ├── base_engine.py │ │ ├── clip_engine.py │ │ ├── t5_engine.py │ │ ├── transformer_engine.py │ │ └── vae_engine.py │ ├── trt_config/ │ │ ├── __init__.py │ │ ├── base_trt_config.py │ │ ├── clip_trt_config.py │ │ ├── t5_trt_config.py │ │ ├── transformer_trt_config.py │ │ └── vae_trt_config.py │ └── trt_manager.py └── util.py