Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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",
|
|
|
|
|
|
|
|
|
|
|
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 |
|