Ifeanyi commited on
Commit
13d55c8
1 Parent(s): f51b679

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 = "Chat"),
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