hsienchen commited on
Commit
05eae32
·
verified ·
1 Parent(s): 207e26b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
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()