Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.44 KB

File metadata and controls

37 lines (23 loc) · 1.44 KB

stable-diffusion-webui-extension-templates

a template of stable-diffusion-webui extension for understand and develop quickly

basic design

├── install.py (optional)
└── scripts
    ├── ${extension_name}.py
    ... (if extension need module division)

Pattern 1. custom script

see scripts/template.py

Pattern 2. ui on tab

see scripts/template_on_tab.py

Pattern 3. ui on settings

see scripts/template_on_settings.py

Ref.