Skip to content

Commit 466b379

Browse files
committed
SD3 UI
1 parent 518c6d6 commit 466b379

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

pages/1_Image_Creator.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
st.set_page_config(layout="wide")
66
from streamlit_drawable_canvas import st_canvas
77
from diffsynth.models import ModelManager
8-
from diffsynth.pipelines import SDImagePipeline, SDXLImagePipeline, HunyuanDiTImagePipeline
8+
from diffsynth.pipelines import SDImagePipeline, SDXLImagePipeline, SD3ImagePipeline, HunyuanDiTImagePipeline
99
from diffsynth.data.video import crop_and_resize
1010

1111

@@ -20,6 +20,11 @@
2020
"pipeline_class": SDXLImagePipeline,
2121
"fixed_parameters": {}
2222
},
23+
"Stable Diffusion 3": {
24+
"model_folder": "models/stable_diffusion_3",
25+
"pipeline_class": SD3ImagePipeline,
26+
"fixed_parameters": {}
27+
},
2328
"Stable Diffusion XL Turbo": {
2429
"model_folder": "models/stable_diffusion_xl_turbo",
2530
"pipeline_class": SDXLImagePipeline,

0 commit comments

Comments
 (0)