Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -56,11 +56,11 @@ guidance_scale = gr.Number(minimum=0.1, value=7.5, label="Guidance Scale", info=
|
|
| 56 |
|
| 57 |
interface = gr.Interface(
|
| 58 |
fn=generate_image,
|
| 59 |
-
inputs=[prompt, negative_prompt, num_inference_steps, height, width, guidance_scale]
|
| 60 |
outputs="image",
|
| 61 |
title="Stable Diffusion 3 Medium",
|
| 62 |
description="Made by [Nick088](https://linktr.ee/Nick088"
|
| 63 |
)
|
| 64 |
|
| 65 |
# Launch the interface
|
| 66 |
-
interface.launch(share=False)
|
|
|
|
| 56 |
|
| 57 |
interface = gr.Interface(
|
| 58 |
fn=generate_image,
|
| 59 |
+
inputs=[prompt, negative_prompt, num_inference_steps, height, width, guidance_scale],
|
| 60 |
outputs="image",
|
| 61 |
title="Stable Diffusion 3 Medium",
|
| 62 |
description="Made by [Nick088](https://linktr.ee/Nick088"
|
| 63 |
)
|
| 64 |
|
| 65 |
# Launch the interface
|
| 66 |
+
interface.launch(share = False)
|