vilarin commited on
Commit
60e7596
1 Parent(s): cff68a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -97,13 +97,11 @@ chat_input = gr.MultimodalTextbox(
97
  show_label=False,
98
 
99
  )
100
- EXAMPLES = gr.Examples(
101
- [
102
  [{"text": "What is on the desk?", "files": ["./laptop.jpg"]}],
103
  [{"text": "Where it is?", "files": ["./hotel.jpg"]}],
104
  [{"text": "Can yo describe this image?", "files": ["./spacecat.png"]}]
105
- ], [chat_input]
106
- )
107
 
108
  with gr.Blocks(css=CSS) as demo:
109
  gr.HTML(TITLE)
 
97
  show_label=False,
98
 
99
  )
100
+ EXAMPLES = [
 
101
  [{"text": "What is on the desk?", "files": ["./laptop.jpg"]}],
102
  [{"text": "Where it is?", "files": ["./hotel.jpg"]}],
103
  [{"text": "Can yo describe this image?", "files": ["./spacecat.png"]}]
104
+ ]
 
105
 
106
  with gr.Blocks(css=CSS) as demo:
107
  gr.HTML(TITLE)