smellslikeml commited on
Commit
56ccf9e
1 Parent(s): e7d1706

updating app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -62,8 +62,8 @@ def predict(image, prompt):
62
  result = llm_model.run_inference(image, prompt)
63
  return result
64
 
65
- image_input = gr.inputs.Image(type="pil", label="Input Image")
66
- text_input = gr.inputs.Textbox(label="Prompt")
67
 
68
  # Initialize interface with examples
69
  iface = gr.Interface(
 
62
  result = llm_model.run_inference(image, prompt)
63
  return result
64
 
65
+ image_input = gr.Image(type="pil", label="Input Image")
66
+ text_input = gr.Textbox(label="Prompt")
67
 
68
  # Initialize interface with examples
69
  iface = gr.Interface(