tonyassi commited on
Commit
23f891f
β€’
1 Parent(s): 341fe6a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
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()