Update app.py
Browse files
app.py
CHANGED
@@ -85,7 +85,11 @@ with gr.Blocks(theme='pikto/theme@>=0.0.1,<0.0.3') as pan:
|
|
85 |
model_name1.change(set_model, inputs=model_name1, outputs=[output1, output2,])
|
86 |
|
87 |
with gr.Tab("Flip Image"):
|
88 |
-
|
|
|
|
|
|
|
|
|
89 |
|
90 |
|
91 |
with gr.Tab("Diffuser"):
|
|
|
85 |
model_name1.change(set_model, inputs=model_name1, outputs=[output1, output2,])
|
86 |
|
87 |
with gr.Tab("Flip Image"):
|
88 |
+
output1 = gr.Image() ##F Flip Image
|
89 |
+
image_input = gr.Image()
|
90 |
+
image_button = gr.Button("Flip")
|
91 |
+
|
92 |
+
run.click(send_it, inputs=[magic1, model_name1], outputs=[output1])
|
93 |
|
94 |
|
95 |
with gr.Tab("Diffuser"):
|