Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,9 +30,9 @@ st.markdown("""
|
|
| 30 |
""", unsafe_allow_html=True)
|
| 31 |
|
| 32 |
# Text Input for Job Opening Details
|
| 33 |
-
st.subheader("📢 Enter
|
| 34 |
job_opening_text = st.text_area(
|
| 35 |
-
"Paste the job opening details here...",
|
| 36 |
height=150,
|
| 37 |
placeholder="Example: 'We are hiring a Research Assistant at XYZ University. The ideal candidate has experience in machine learning and data analysis...'"
|
| 38 |
)
|
|
@@ -71,7 +71,7 @@ cv_resume_text = extract_text(cv_resume_file)
|
|
| 71 |
|
| 72 |
# Display Extracted Text
|
| 73 |
if job_opening_text:
|
| 74 |
-
with st.expander("🔍 View Entered
|
| 75 |
st.markdown(f"**Job Opening Details:**\n\n{job_opening_text}")
|
| 76 |
|
| 77 |
if cv_resume_text:
|
|
|
|
| 30 |
""", unsafe_allow_html=True)
|
| 31 |
|
| 32 |
# Text Input for Job Opening Details
|
| 33 |
+
st.subheader("📢 Enter Opening Details")
|
| 34 |
job_opening_text = st.text_area(
|
| 35 |
+
"Paste the job/research opening details here...",
|
| 36 |
height=150,
|
| 37 |
placeholder="Example: 'We are hiring a Research Assistant at XYZ University. The ideal candidate has experience in machine learning and data analysis...'"
|
| 38 |
)
|
|
|
|
| 71 |
|
| 72 |
# Display Extracted Text
|
| 73 |
if job_opening_text:
|
| 74 |
+
with st.expander("🔍 View Entered Opening Details"):
|
| 75 |
st.markdown(f"**Job Opening Details:**\n\n{job_opening_text}")
|
| 76 |
|
| 77 |
if cv_resume_text:
|