Ifeanyi commited on
Commit
0dc37ac
·
verified ·
1 Parent(s): 03bfe72

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -25,12 +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
- ["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
 
 
25
  app = gr.Interface(ImageChat,
26
  inputs = [gr.Image(), gr.Text()],
27
  outputs = gr.Text(label = "Chat"),
28
+ examples = {"Images":["drums.jpg",
29
  "desk.jpg",
30
  "clown.png"],
31
+ "Text":["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