KingNish commited on
Commit
2b88c78
1 Parent(s): 2e627cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -226,10 +226,10 @@ def respond(
226
  yield output
227
 
228
  demo = gr.ChatInterface(fn=respond, title="OpenGPT 4o mini", textbox=gr.MultimodalTextbox(), multimodal=True,
229
- examples=[["Hy, who are you?"],
230
- ["What's the current price of Bitcoin",None],
231
- ["Write me a Python function to calculate the first 10 digits of the fibonacci sequence.",None],
232
- ["Create A Beautiful image of Effiel Tower at Night",None],
233
- ["What's the colour of Car in given image",None]])
234
 
235
  demo.launch()
 
226
  yield output
227
 
228
  demo = gr.ChatInterface(fn=respond, title="OpenGPT 4o mini", textbox=gr.MultimodalTextbox(), multimodal=True,
229
+ examples=[[{"Hy, who are you?"}],
230
+ [{"What's the current price of Bitcoin"}],
231
+ [{"Write me a Python function to calculate the first 10 digits of the fibonacci sequence."}],
232
+ [{"Create A Beautiful image of Effiel Tower at Night"}],
233
+ [{"What's the colour of Car in given image"}]])
234
 
235
  demo.launch()