Ifeanyi commited on
Commit
03bfe72
·
verified ·
1 Parent(s): 4feaa93

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -25,9 +25,12 @@ def ImageChat(image, prompt):
25
  app = gr.Interface(ImageChat,
26
  inputs = [gr.Image(), gr.Text()],
27
  outputs = gr.Text(label = "Chat"),
28
- examples = ["drums.jpg",
29
  "desk.jpg",
30
  "clown.png"],
 
 
 
31
  title = "Image Chat",
32
  theme = gr.themes.Soft())
33
 
 
25
  app = gr.Interface(ImageChat,
26
  inputs = [gr.Image(), gr.Text()],
27
  outputs = gr.Text(label = "Chat"),
28
+ examples = [["drums.jpg",
29
  "desk.jpg",
30
  "clown.png"],
31
+ ["What is this image about?",
32
+ "List the items in this image",
33
+ "Give me 5 facts about this image."]],
34
  title = "Image Chat",
35
  theme = gr.themes.Soft())
36