KingNish commited on
Commit
83483fb
1 Parent(s): 9e96853

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -232,11 +232,11 @@ demo = gr.ChatInterface(fn=respond,
232
  textbox=gr.MultimodalTextbox(),
233
  multimodal=True,
234
  concurrency_limit=20,
235
- examples=[[{"text": "Hy, who are you?",}],
236
- [{"text": "What's the current price of Bitcoin",}],
237
- [{"text": "Write me a Python function to calculate the first 10 digits of the fibonacci sequence.",}],
238
- [{"text": "Create A Beautiful image of Effiel Tower at Night",}],
239
- [{"text": "What's the colour of Car in given image","files": ["./car1.png", "./car2.png"]}],
240
- [{"text": "Read what's written on paper", "files": ["./paper_with_text.png"]}]])
241
 
242
  demo.launch()
 
232
  textbox=gr.MultimodalTextbox(),
233
  multimodal=True,
234
  concurrency_limit=20,
235
+ examples=[{"text": "Hy, who are you?",},
236
+ {"text": "What's the current price of Bitcoin",},
237
+ {"text": "Write me a Python function to calculate the first 10 digits of the fibonacci sequence.",},
238
+ {"text": "Create A Beautiful image of Effiel Tower at Night",},
239
+ {"text": "What's the colour of Car in given image","files": ["./car1.png", "./car2.png"]},
240
+ {"text": "Read what's written on paper", "files": ["./paper_with_text.png"]}])
241
 
242
  demo.launch()