Update app.py
Browse files
app.py
CHANGED
@@ -61,9 +61,10 @@ with gr.Blocks() as pan:
|
|
61 |
input_text = gr.Textbox(label="Prompt idea",)
|
62 |
with gr.Row():
|
63 |
output1 = gr.Image(label="")
|
64 |
-
|
|
|
65 |
output2 = gr.Image(label="")
|
66 |
-
|
67 |
|
68 |
run.click(send_it, inputs=[magic1, model_name1], outputs=[output1])
|
69 |
run.click(send_it, inputs=[magic2, model_name1], outputs=[output2])
|
|
|
61 |
input_text = gr.Textbox(label="Prompt idea",)
|
62 |
with gr.Row():
|
63 |
output1 = gr.Image(label="")
|
64 |
+
magic1 = gr.Textbox(label="Generated Prompt", lines=2)
|
65 |
+
|
66 |
output2 = gr.Image(label="")
|
67 |
+
magic2 = gr.Textbox(label="Generated Prompt", lines=2)
|
68 |
|
69 |
run.click(send_it, inputs=[magic1, model_name1], outputs=[output1])
|
70 |
run.click(send_it, inputs=[magic2, model_name1], outputs=[output2])
|