Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -72,6 +72,13 @@ with gr.Blocks(theme='snehilsanyal/scikit-learn') as app:
|
|
72 |
[chatbot,text_box,image_box],
|
73 |
chatbot
|
74 |
)
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
app.queue()
|
77 |
app.launch()
|
|
|
72 |
[chatbot,text_box,image_box],
|
73 |
chatbot
|
74 |
)
|
75 |
+
gr.Markdown("## Examples")
|
76 |
+
gr.Examples(
|
77 |
+
[["what is in the image", "Vision classification"], ["Alternative title", "Vision completion-understanding"],["How many birds", "ViT Completion"]],
|
78 |
+
[txt, txt_2],
|
79 |
+
txt_3,
|
80 |
+
combine,
|
81 |
+
cache_examples=True,
|
82 |
+
)
|
83 |
app.queue()
|
84 |
app.launch()
|