Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -20,12 +20,12 @@ def input_pdf_text(uploaded_file):
|
|
20 |
return text
|
21 |
##Prompt Template
|
22 |
input_prompt="""
|
23 |
-
Hey Act like a skilled or very experience ATS(Application Tracking System) with a deep understanding of
|
24 |
-
Machine Learning Engineer,LLM Engineer, and Deep Learning engineer.Your task is to evaluate the resume based on the given job description.You must consider the job market
|
25 |
is very competitive and you should provide best assistance for improving the resume.Assign the percentage matching based on
|
26 |
job description and the missing keywords with high accuracy
|
27 |
resume:{text}
|
28 |
description:{jd}
|
|
|
29 |
|
30 |
I want the response in one single string having the structure
|
31 |
{{"JD Match":"%","MissingKeywords:[]","Profile Summary":""}}
|
@@ -33,7 +33,8 @@ I want the response in one single string having the structure
|
|
33 |
##streamlit app
|
34 |
st.title("Smart ATS")
|
35 |
st.text("Improve your Resume ATS")
|
36 |
-
jd=st.text_area("
|
|
|
37 |
uploaded_file=st.file_uploader("Upload your Resume",type="pdf",help="Please upload your resume")
|
38 |
submit=st.button("Submit")
|
39 |
|
|
|
20 |
return text
|
21 |
##Prompt Template
|
22 |
input_prompt="""
|
23 |
+
Hey Act like a skilled or very experience ATS(Application Tracking System) with a deep understanding of jobtitle given.Your task is to evaluate the resume based on the given job description.You must consider the job market
|
|
|
24 |
is very competitive and you should provide best assistance for improving the resume.Assign the percentage matching based on
|
25 |
job description and the missing keywords with high accuracy
|
26 |
resume:{text}
|
27 |
description:{jd}
|
28 |
+
jobtitle:{jt}
|
29 |
|
30 |
I want the response in one single string having the structure
|
31 |
{{"JD Match":"%","MissingKeywords:[]","Profile Summary":""}}
|
|
|
33 |
##streamlit app
|
34 |
st.title("Smart ATS")
|
35 |
st.text("Improve your Resume ATS")
|
36 |
+
jd=st.text_area("Paste the job description")
|
37 |
+
jt=st.text_area("Paste the job title")
|
38 |
uploaded_file=st.file_uploader("Upload your Resume",type="pdf",help="Please upload your resume")
|
39 |
submit=st.button("Submit")
|
40 |
|