Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ from PyPDF2 import PdfReader
|
|
19 |
from gliner import GLiNER
|
20 |
|
21 |
|
22 |
-
txt = st.text_area("Job description")
|
23 |
job_description_series = pd.Series([txt], name="Text")
|
24 |
st.dataframe(job_description_series)
|
25 |
|
@@ -63,12 +63,16 @@ if uploaded_files:
|
|
63 |
|
64 |
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
uploaded_files = st.file_uploader(
|
67 |
"Choose a PDF file(s) for candidate profiles", type="pdf", key = "candidate 2"
|
68 |
-
)
|
69 |
-
|
70 |
|
71 |
-
|
72 |
|
73 |
all_resumes_text = [] # Store the text content of each PDF
|
74 |
|
|
|
19 |
from gliner import GLiNER
|
20 |
|
21 |
|
22 |
+
txt = st.text_area("Job description", key = "text 1")
|
23 |
job_description_series = pd.Series([txt], name="Text")
|
24 |
st.dataframe(job_description_series)
|
25 |
|
|
|
63 |
|
64 |
|
65 |
|
66 |
+
st.divider()
|
67 |
+
|
68 |
+
txt = st.text_area("Job description", key = "text 2")
|
69 |
+
job_description_series = pd.Series([txt], name="Text")
|
70 |
+
st.dataframe(job_description_series)
|
71 |
+
|
72 |
uploaded_files = st.file_uploader(
|
73 |
"Choose a PDF file(s) for candidate profiles", type="pdf", key = "candidate 2"
|
74 |
+
)
|
|
|
75 |
|
|
|
76 |
|
77 |
all_resumes_text = [] # Store the text content of each PDF
|
78 |
|