Update app.py
Browse files
app.py
CHANGED
|
@@ -59,7 +59,7 @@ with gr.Blocks() as demo:
|
|
| 59 |
label="Erzeugte Bilder", show_label=False, elem_id="gallery"
|
| 60 |
).style(columns=[2], rows=[2], object_fit="contain", height="auto")
|
| 61 |
|
| 62 |
-
btn.click(erzeuge, inputs=[user_input], gallery)
|
| 63 |
|
| 64 |
if __name__ == "__main__":
|
| 65 |
demo.launch()
|
|
|
|
| 59 |
label="Erzeugte Bilder", show_label=False, elem_id="gallery"
|
| 60 |
).style(columns=[2], rows=[2], object_fit="contain", height="auto")
|
| 61 |
|
| 62 |
+
btn.click(erzeuge, inputs=[user_input], outputs=[gallery])
|
| 63 |
|
| 64 |
if __name__ == "__main__":
|
| 65 |
demo.launch()
|