Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -51,15 +51,15 @@ with gr.Blocks(theme="gradio/soft") as demo:
|
|
51 |
|
52 |
|
53 |
with gr.Column(elem_id="generated-gallery"):
|
54 |
-
openai_output = gr.Textbox(lines=4)
|
55 |
sd_output = gr.Gallery().style(grid=3, height="auto")
|
|
|
56 |
|
57 |
|
58 |
enter_username.click(get_images,
|
59 |
inputs = [
|
60 |
input_text
|
61 |
],
|
62 |
-
outputs = [
|
63 |
)
|
64 |
|
65 |
|
|
|
51 |
|
52 |
|
53 |
with gr.Column(elem_id="generated-gallery"):
|
|
|
54 |
sd_output = gr.Gallery().style(grid=3, height="auto")
|
55 |
+
openai_output = gr.Textbox(lines=4)
|
56 |
|
57 |
|
58 |
enter_username.click(get_images,
|
59 |
inputs = [
|
60 |
input_text
|
61 |
],
|
62 |
+
outputs = [sd_output, openai_output]
|
63 |
)
|
64 |
|
65 |
|