-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathats.py
88 lines (67 loc) · 3.13 KB
/
ats.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# in this project we are taking a pdf(Resume), converting it into text using poppler-windows + pdf2image library and then extracting bytes from that image
from dotenv import load_dotenv
load_dotenv()
import streamlit as st
import os
import io
import base64
import google.generativeai as genai
from PIL import Image
import pdf2image # this pdf2image requires poppler-windows set up
genai.configure(api_key=os.environ['GOOGLE_API_KEY'])
# gemini=pr-vision is used because we want to convert pdf to image
def get_response(input, pdf_content, prompt):
model = genai.GenerativeModel("gemini-1.5-flash")
response = model.generate_content([input, pdf_content, prompt])
return response.text
def input_pdf_setup(uploaded_file):
if uploaded_file is not None:
# Convert the PDF to image
images = pdf2image.convert_from_bytes(uploaded_file.read())
# Convert the first page to bytes
first_page = images[0]
img_byte_arr = io.BytesIO()
first_page.save(img_byte_arr, format='JPEG')
img_byte_arr = img_byte_arr.getvalue()
# Encode the bytes to base64
pdf_content = base64.b64encode(img_byte_arr).decode()
return pdf_content
else:
raise FileNotFoundError("No file uploaded")
# streamlit app
st.set_page_config(page_title='ATS RESUME EXPERT')
st.header("ATS TRACKING SYSTEM")
input_text=st.text_area("Job Description: ",key="input")
uploaded_file=st.file_uploader("Upload your resume(PDF)...",type=["pdf"])
if uploaded_file is not None:
st.write("PDF Uploaded Successfully!")
submit1=st.button("Tell me About the Resume")
submit2=st.button("How can I Improvise my Skills")
# submit3=st.button("What are the Keywords that are missing")
submit3=st.button("Percentage match")
input_prompt1 = """
You are an experienced Technical Human Resource Manager,your task is to review the provided resume against the job description.
Please share your professional evaluation on whether the candidate's profile aligns with the role.
Highlight the strengths and weaknesses of the applicant in relation to the specified job requirements.
"""
input_prompt3 = """
You are an skilled ATS (Applicant Tracking System) scanner with a deep understanding of data science and ATS functionality,
your task is to evaluate the resume against the provided job description. give me the percentage of match if the resume matches
the job description. First the output should come as percentage and then keywords missing and last final thoughts.
"""
if submit1:
if uploaded_file is not None:
pdf_content = input_pdf_setup(uploaded_file)
response = get_response(input_prompt1, pdf_content, input_text)
st.subheader("The Response is")
st.write(response)
else:
st.write("Please upload the resume")
elif submit3:
if uploaded_file is not None:
pdf_content=input_pdf_setup(uploaded_file)
response=get_response(input_prompt3,pdf_content,input_text)
st.subheader("The Repsonse is")
st.write(response)
else:
st.write("Please uplaod the resume")