runaksh commited on
Commit
185aeef
·
1 Parent(s): 8039a04

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -26,10 +26,10 @@ description = "Enter the Resume you want to categorize"
26
  # Gradio elements
27
 
28
  # Input from user
29
- in_prompt = gradio.inputs.Textbox(lines=2, label='Enter the Resume')
30
 
31
  # Output response
32
- out_response = gradio.outputs.Textbox(label='Category')
33
 
34
  # Gradio interface to generate UI link
35
  iface = gradio.Interface(fn=predict,
 
26
  # Gradio elements
27
 
28
  # Input from user
29
+ in_prompt = gradio.components.Textbox(lines=2, label='Enter the Resume')
30
 
31
  # Output response
32
+ out_response = gradio.components.Textbox(label='Category')
33
 
34
  # Gradio interface to generate UI link
35
  iface = gradio.Interface(fn=predict,