Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -1304,7 +1304,7 @@ def generate_audio_elevenlabs(text):
|
|
1304 |
return None
|
1305 |
|
1306 |
# Stable Diffusion setup
|
1307 |
-
pipe =
|
1308 |
pipe = pipe.to("cuda")
|
1309 |
|
1310 |
def generate_image(prompt):
|
|
|
1304 |
return None
|
1305 |
|
1306 |
# Stable Diffusion setup
|
1307 |
+
pipe = StableDiffusion3Pipeline.from_pretrained("stabilityai/stable-diffusion-3-medium-diffusers", torch_dtype=torch.float16)
|
1308 |
pipe = pipe.to("cuda")
|
1309 |
|
1310 |
def generate_image(prompt):
|