Spaces:
Runtime error
Runtime error
Commit
·
8457e79
1
Parent(s):
a501d08
Update app.py
Browse files
app.py
CHANGED
|
@@ -32,12 +32,11 @@ interface = gr.Interface(
|
|
| 32 |
fn=generate_image,
|
| 33 |
inputs=inputs,
|
| 34 |
outputs=outputs,
|
| 35 |
-
title="",
|
| 36 |
-
description="
|
| 37 |
examples=[],
|
| 38 |
-
layout="
|
| 39 |
-
theme="
|
| 40 |
)
|
| 41 |
|
| 42 |
interface.launch()
|
| 43 |
-
|
|
|
|
| 32 |
fn=generate_image,
|
| 33 |
inputs=inputs,
|
| 34 |
outputs=outputs,
|
| 35 |
+
title="Image Generator",
|
| 36 |
+
description="Select options and enter a prompt to generate an image.",
|
| 37 |
examples=[],
|
| 38 |
+
layout="vertical",
|
| 39 |
+
theme="huggingface" # Eines der Standard-Themes
|
| 40 |
)
|
| 41 |
|
| 42 |
interface.launch()
|
|
|