Spaces:
Sleeping
Sleeping
15x the height of the text entry
Browse files- streamlit_app.py +1 -1
streamlit_app.py
CHANGED
@@ -48,7 +48,7 @@ llm_dict = {
|
|
48 |
col1, col2 = st.columns(2)
|
49 |
|
50 |
with col1:
|
51 |
-
job_description = st.text_area("Enter the job description", height=
|
52 |
extract_button = st.button("Extract Fields from Description")
|
53 |
|
54 |
if extract_button and job_description:
|
|
|
48 |
col1, col2 = st.columns(2)
|
49 |
|
50 |
with col1:
|
51 |
+
job_description = st.text_area("Enter the job description", height=3000)
|
52 |
extract_button = st.button("Extract Fields from Description")
|
53 |
|
54 |
if extract_button and job_description:
|