├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── linux.md └── windows.md ├── models ├── checkpoints │ └── put_checkpoints_here ├── controlnet │ └── put_controlnets_here ├── embeddings │ └── put_embeddings_here ├── loras │ └── put_loras_here ├── photomaker │ └── put_photomaker_models_here ├── taesd │ └── put_taesd_here ├── text_encoders │ └── put_clip_or_text_encoder_models_here ├── unet │ └── put_unet_files_here ├── upscale_models │ └── put_upscale_models_here └── vae │ └── put_vae_here ├── modules ├── __init__.py ├── any2video_ui.py ├── config.py ├── convert_ui.py ├── gallery.py ├── gallery_ui.py ├── img2img_ui.py ├── imgedit_ui.py ├── loader.py ├── options_ui.py ├── sdcpp.py ├── shared_instance.py ├── txt2img_ui.py ├── ui │ ├── __init__.py │ ├── chroma.py │ ├── constants.py │ ├── controlnet.py │ ├── easycache.py │ ├── environment.py │ ├── eta.py │ ├── experimental.py │ ├── extra.py │ ├── folder_settings.py │ ├── generation_settings.py │ ├── models.py │ ├── performance.py │ ├── photomaker.py │ ├── preview.py │ ├── prompts.py │ ├── taesd.py │ ├── timestep_shift.py │ ├── upscale.py │ └── vae_tiling.py ├── upscale_ui.py └── utils │ ├── __init__.py │ ├── image_utils.py │ ├── sd_interface.py │ ├── ui_handler.py │ └── utility.py ├── outputs ├── any2video │ └── any2video_outputs.txt ├── img2img │ └── img2img_outputs.txt ├── imgedit │ └── imgedit_outputs.txt ├── txt2img │ └── txt2img_outputs.txt └── upscale │ └── upscaler_outputs.txt ├── pyproject.toml ├── requirements.txt ├── sdcpp_webui.py ├── sdcpp_webui.sh ├── sdcpp_webui_windows.ps1 └── test ├── __init__.py ├── conftest.py ├── test_gallery.py └── utils ├── __init__.py ├── master-367-b88cc32.txt ├── test_sd_interface.py └── test_utility.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/README.md -------------------------------------------------------------------------------- /docs/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/docs/linux.md -------------------------------------------------------------------------------- /docs/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/docs/windows.md -------------------------------------------------------------------------------- /models/checkpoints/put_checkpoints_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/controlnet/put_controlnets_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/embeddings/put_embeddings_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/loras/put_loras_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/photomaker/put_photomaker_models_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/taesd/put_taesd_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/text_encoders/put_clip_or_text_encoder_models_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/unet/put_unet_files_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/upscale_models/put_upscale_models_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/vae/put_vae_here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/any2video_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/any2video_ui.py -------------------------------------------------------------------------------- /modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/config.py -------------------------------------------------------------------------------- /modules/convert_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/convert_ui.py -------------------------------------------------------------------------------- /modules/gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/gallery.py -------------------------------------------------------------------------------- /modules/gallery_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/gallery_ui.py -------------------------------------------------------------------------------- /modules/img2img_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/img2img_ui.py -------------------------------------------------------------------------------- /modules/imgedit_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/imgedit_ui.py -------------------------------------------------------------------------------- /modules/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/loader.py -------------------------------------------------------------------------------- /modules/options_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/options_ui.py -------------------------------------------------------------------------------- /modules/sdcpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/sdcpp.py -------------------------------------------------------------------------------- /modules/shared_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/shared_instance.py -------------------------------------------------------------------------------- /modules/txt2img_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/txt2img_ui.py -------------------------------------------------------------------------------- /modules/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/ui/chroma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/chroma.py -------------------------------------------------------------------------------- /modules/ui/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/constants.py -------------------------------------------------------------------------------- /modules/ui/controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/controlnet.py -------------------------------------------------------------------------------- /modules/ui/easycache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/easycache.py -------------------------------------------------------------------------------- /modules/ui/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/environment.py -------------------------------------------------------------------------------- /modules/ui/eta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/eta.py -------------------------------------------------------------------------------- /modules/ui/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/experimental.py -------------------------------------------------------------------------------- /modules/ui/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/extra.py -------------------------------------------------------------------------------- /modules/ui/folder_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/folder_settings.py -------------------------------------------------------------------------------- /modules/ui/generation_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/generation_settings.py -------------------------------------------------------------------------------- /modules/ui/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/models.py -------------------------------------------------------------------------------- /modules/ui/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/performance.py -------------------------------------------------------------------------------- /modules/ui/photomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/photomaker.py -------------------------------------------------------------------------------- /modules/ui/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/preview.py -------------------------------------------------------------------------------- /modules/ui/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/prompts.py -------------------------------------------------------------------------------- /modules/ui/taesd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/taesd.py -------------------------------------------------------------------------------- /modules/ui/timestep_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/timestep_shift.py -------------------------------------------------------------------------------- /modules/ui/upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/upscale.py -------------------------------------------------------------------------------- /modules/ui/vae_tiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/ui/vae_tiling.py -------------------------------------------------------------------------------- /modules/upscale_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/upscale_ui.py -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/utils/image_utils.py -------------------------------------------------------------------------------- /modules/utils/sd_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/utils/sd_interface.py -------------------------------------------------------------------------------- /modules/utils/ui_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/utils/ui_handler.py -------------------------------------------------------------------------------- /modules/utils/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/modules/utils/utility.py -------------------------------------------------------------------------------- /outputs/any2video/any2video_outputs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/img2img/img2img_outputs.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /outputs/imgedit/imgedit_outputs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outputs/txt2img/txt2img_outputs.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /outputs/upscale/upscaler_outputs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gradio==5.44.1 2 | -------------------------------------------------------------------------------- /sdcpp_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/sdcpp_webui.py -------------------------------------------------------------------------------- /sdcpp_webui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/sdcpp_webui.sh -------------------------------------------------------------------------------- /sdcpp_webui_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/sdcpp_webui_windows.ps1 -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/test/test_gallery.py -------------------------------------------------------------------------------- /test/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/utils/master-367-b88cc32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/test/utils/master-367-b88cc32.txt -------------------------------------------------------------------------------- /test/utils/test_sd_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/test/utils/test_sd_interface.py -------------------------------------------------------------------------------- /test/utils/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniandtheweb/sd.cpp-webui/HEAD/test/utils/test_utility.py --------------------------------------------------------------------------------