Obotu commited on
Commit
e9560d6
1 Parent(s): 2bd8587

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,8 +7,8 @@ def load_model():
7
  return model
8
 
9
 
10
- input_component = gr.inputs.Textbox(lines=2, placeholder="Enter your input here...")
11
- output_component = gr.outputs.Textbox()
12
 
13
  iface = gr.Interface(fn=predict, inputs=input_component, outputs=output_component, title="OYI")
14
 
 
7
  return model
8
 
9
 
10
+ input_component = gr.Textbox(lines=2, placeholder="Enter your input here...")
11
+ output_component = gr.Textbox()
12
 
13
  iface = gr.Interface(fn=predict, inputs=input_component, outputs=output_component, title="OYI")
14