venkataseetharam commited on
Commit
bbb2667
·
verified ·
1 Parent(s): 2a04d0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
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 Generative AI Engineeer,Data Scientist,
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("paste the job description")
 
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