Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
with gr.Blocks() as demo:
|
5 |
+
with gr.Row():
|
6 |
+
img1 = gr.Image()
|
7 |
+
img2 = gr.Image()
|
8 |
+
|
9 |
+
with gr.Row():
|
10 |
+
chatbot1 = gr.Chatbot()
|
11 |
+
chatbot2 = gr.Chatbot()
|
12 |
+
|
13 |
+
|
14 |
+
demo.launch()
|