Spaces:
Runtime error
Runtime error
changed title
Browse files- apps/demo.py +2 -2
apps/demo.py
CHANGED
@@ -10,9 +10,9 @@ model = load_model()
|
|
10 |
skill_extractor = load_skill_extractor()
|
11 |
|
12 |
def app():
|
13 |
-
st.title("
|
14 |
with st.form(key="text_val"):
|
15 |
-
input_text = st.text_area('
|
16 |
submit_button = st.form_submit_button(label="Submit")
|
17 |
|
18 |
cls_text = clean_text(input_text)
|
|
|
10 |
skill_extractor = load_skill_extractor()
|
11 |
|
12 |
def app():
|
13 |
+
st.title("Enter or past the resume here")
|
14 |
with st.form(key="text_val"):
|
15 |
+
input_text = st.text_area('', value=default_text(), height=200)
|
16 |
submit_button = st.form_submit_button(label="Submit")
|
17 |
|
18 |
cls_text = clean_text(input_text)
|