Spaces:
Building
Building
Update app.py
Browse files
app.py
CHANGED
@@ -231,6 +231,11 @@ demo = gr.ChatInterface(fn=respond,
|
|
231 |
title="OpenGPT 4o mini",
|
232 |
textbox=gr.MultimodalTextbox(),
|
233 |
multimodal=True,
|
234 |
-
concurrency_limit=20
|
|
|
|
|
|
|
|
|
|
|
235 |
|
236 |
demo.launch()
|
|
|
231 |
title="OpenGPT 4o mini",
|
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",}]])
|
240 |
|
241 |
demo.launch()
|