Keyven commited on
Commit
b88b332
Β·
1 Parent(s): 64f1def

Update the type parameter for Image input from 'file' to 'filepath' to match the accepted values

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -155,8 +155,8 @@ with gr.Blocks(css=css) as demo:
155
  chat_interface = gr.Interface(
156
  fn=main_function,
157
  inputs=[
158
- gr.inputs.Textbox(lines=2, label='Input'),
159
- gr.inputs.Image(type='file', label='Upload Image')
160
  ],
161
  outputs='text',
162
  live=True,
 
155
  chat_interface = gr.Interface(
156
  fn=main_function,
157
  inputs=[
158
+ gr.components.Textbox(lines=2, label='Input'), # Update here
159
+ gr.components.Image(type='filepath', label='Upload Image') # Update here
160
  ],
161
  outputs='text',
162
  live=True,