Spaces:
Paused
Paused
Update app.py
Browse files
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=[
|
| 236 |
-
|
| 237 |
-
|
| 238 |
-
|
| 239 |
-
|
| 240 |
-
|
| 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()
|