Update app.py
Browse files
app.py
CHANGED
@@ -12,16 +12,24 @@ def flip_image(x):
|
|
12 |
|
13 |
with gr.Blocks() as demo:
|
14 |
gr.Markdown("Flip text or image files using this demo.")
|
|
|
15 |
with gr.Tab("Flip Text"):
|
16 |
text_input = gr.Textbox()
|
17 |
text_output = gr.Textbox()
|
18 |
text_button = gr.Button("Flip")
|
|
|
19 |
with gr.Tab("Flip Image"):
|
20 |
with gr.Row():
|
21 |
image_input = gr.Image()
|
22 |
image_output = gr.Image()
|
23 |
image_button = gr.Button("Flip")
|
24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
with gr.Accordion("Open for More!"):
|
26 |
gr.Markdown("Look at me...")
|
27 |
|
|
|
12 |
|
13 |
with gr.Blocks() as demo:
|
14 |
gr.Markdown("Flip text or image files using this demo.")
|
15 |
+
|
16 |
with gr.Tab("Flip Text"):
|
17 |
text_input = gr.Textbox()
|
18 |
text_output = gr.Textbox()
|
19 |
text_button = gr.Button("Flip")
|
20 |
+
|
21 |
with gr.Tab("Flip Image"):
|
22 |
with gr.Row():
|
23 |
image_input = gr.Image()
|
24 |
image_output = gr.Image()
|
25 |
image_button = gr.Button("Flip")
|
26 |
|
27 |
+
with gr.Tab("Diffuser"):
|
28 |
+
with gr.Row():
|
29 |
+
text_input = gr.Textbox()
|
30 |
+
image_output = gr.Image()
|
31 |
+
image_button = gr.Button("Flip")
|
32 |
+
|
33 |
with gr.Accordion("Open for More!"):
|
34 |
gr.Markdown("Look at me...")
|
35 |
|