tonyassi commited on
Commit
061706c
β€’
1 Parent(s): 23f891f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -3,12 +3,15 @@ import gradio as gr
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()
 
3
 
4
  with gr.Blocks() as demo:
5
  with gr.Row():
6
+ img1 = gr.Markdown("""![](https://media.vanityfair.com/photos/650095a4a5dad6d330c01de2/4:3/w_1648,h_1236,c_limit/elon-musk-amber-heard.jpg)""")
7
+ img2 = gr.Markdown("""![](https://i.insider.com/63d93b280a08ae0018a62b4f?width=700)""")
8
 
9
  with gr.Row():
10
  chatbot1 = gr.Chatbot()
11
  chatbot2 = gr.Chatbot()
12
+
13
+ with gr.Row():
14
+ textbox1 = gr.TextBox()
15
+ textbox2 = gr.TextBox()
16
 
17
  demo.launch()