Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -23,8 +23,8 @@ def ImageChat(image, prompt):
|
|
23 |
|
24 |
|
25 |
app = gr.Interface(ImageChat,
|
26 |
-
inputs = [gr.Image(), gr.Text()],
|
27 |
-
outputs = gr.Text(label = "
|
28 |
title = "Image Chat",
|
29 |
theme = gr.themes.Soft())
|
30 |
|
|
|
23 |
|
24 |
|
25 |
app = gr.Interface(ImageChat,
|
26 |
+
inputs = [gr.Image(label = "Image"), gr.Text(label = "Prompt")],
|
27 |
+
outputs = gr.Text(label = "Response"),
|
28 |
title = "Image Chat",
|
29 |
theme = gr.themes.Soft())
|
30 |
|