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