Update app.py
Browse files
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.
|
30 |
|
31 |
# Output response
|
32 |
-
out_response = gradio.
|
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,
|