sohoso commited on
Commit
44b20d8
·
verified ·
1 Parent(s): 55a12d6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -66,8 +66,8 @@ def ImageChat(image, prompt="Analyze"):
66
 
67
  app = gr.Interface(
68
  fn=ImageChat,
69
- inputs=[gr.Image(label="Image"), gr.Text(label="Prompt", default="Analyze")],
70
- outputs=gr.Text(label="Response"),
71
  title="Trading View Chat Analyzer",
72
  theme=gr.themes.Soft()
73
  )
 
66
 
67
  app = gr.Interface(
68
  fn=ImageChat,
69
+ inputs=[gr.Image(label="Image"), gr.Textbox(label="Prompt", value="Analyze")],
70
+ outputs=gr.Textbox(label="Response"),
71
  title="Trading View Chat Analyzer",
72
  theme=gr.themes.Soft()
73
  )