Ifeanyi commited on
Commit
39c6037
·
verified ·
1 Parent(s): 11f0c83

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -24,8 +24,13 @@ def ImageChat(image, prompt):
24
 
25
  app = gr.Interface(ImageChat,
26
  inputs = [gr.Image(), gr.Text()],
27
- outputs = gr.Text(),
28
- examples = ["drums.jpg","desk.jpg","clown.png"],
 
 
 
 
 
29
  title = "Image Chat",
30
  theme = gr.themes.Soft())
31
 
 
24
 
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 the image about?",
32
+ "How many items are in this image?",
33
+ "Give me 5 facts about this image"],
34
  title = "Image Chat",
35
  theme = gr.themes.Soft())
36