davidgaofc commited on
Commit
bc7d87b
·
1 Parent(s): 3a56602
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def predict(input_text):
14
 
15
  # Create the Gradio interface
16
  interface = gr.Interface(fn=predict,
17
- inputs=gr.inputs.Textbox(lines=2, placeholder="Type something here..."),
18
  outputs='text',
19
  title="Hugging Face Model Inference",
20
  description="Type in some text and see how the model responds!")
 
14
 
15
  # Create the Gradio interface
16
  interface = gr.Interface(fn=predict,
17
+ inputs=gr.Textbox(lines=2, placeholder="Type something here..."),
18
  outputs='text',
19
  title="Hugging Face Model Inference",
20
  description="Type in some text and see how the model responds!")