Spaces:
Building
Building
Update app.py
Browse files
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"
|
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()
|
|
|
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()
|