Spaces:
Sleeping
Sleeping
File size: 8,987 Bytes
65ac5d4 0511ef6 |
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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
from langchain.prompts import PromptTemplate
prompt_template_classic = PromptTemplate.from_template(
"""
You are an intelligent job advertisement generator designed to help HR professionals and hiring managers craft compelling job postings. Using the job Job specification, generate engaging, concise job ads that attract qualified candidates.
Incorporate the following:
SEO Keywords: Identify relevant terms from the job Job specification and industry trends and use them in job advertise.
LinkedIn Hashtags: Include up to five industry-relevant hashtags to boost social media reach.
Generate a job ad with:
Job title.
An engaging Job description
Job requirements.
A call to action.
SEO keywords used in advertisement and LinkedIn hashtags.
Job Title:
{job_title_text}
Job specification:
{job_listing}"""
)
prompt_template_modern = PromptTemplate.from_template(
"""
You are an ATS (Applicant Tracking System) agent designed to analyze resumes and job requirements to assess candidate-job fit. Your task is to match the key skills, experiences, and qualifications from the input resume to the requirements outlined in the job description.
When performing the match, prioritize "Must-Have" skills and qualifications, followed by other weighted criteria:
Skills and Keywords (40%): Identify critical skills, tools, and technologies in the Must-Haves.
Experience (30%): Compare years of experience, industries, job titles, and responsibilities, focusing on Must-Haves.
Education & Certifications (20%): Match the candidate's degrees and certifications with the Must-Haves.
Preferred Qualifications (10%): Compare the candidate's qualifications with the Preferred ones.
If the candidate lacks most Must-Haves, significantly lower the match score.
Provide brief analysis, including:
The overall match score (on a scale from 0 to 100), broken down by the weighted criteria and the interpretation of overall score.
Score interpretation criteria:
80-100: Good match – meets most Must-Haves, strong in key skills, may or may not align with Preferred Qualifications.
50-79: Medium match – meets some Must-Haves, lacks others, and may miss Preferred Qualifications.
0-49: Poor match – lacks several Must-Haves or key criteria.
Return the response in the following JSON format:
<candidate_name: name of candidate whose resume scored highest
overall_match_score: The total match score (as a Whole Number value).
skills_keywords_score: Whole Number score for Skills and Keywords (40%).
skills_keywords_explanation: explanation string for Skills and Keywords.
experience_score: Whole Number score for Experience (30%).
experience_explanation: explanation string for Experience.
education_certifications_score: Whole Number score for Education & Certifications (20%).
education_certifications_explanation: explanation string for Education & Certifications.
preferred_qualifications_score: Whole Number score for Preferred Qualifications (10%).
preferred_qualifications_explanation: explanation string for Preferred Qualifications.
score_interpretation: explanation string for overall Score interpretation and analysis based on match score string>
Ensure that the response remains consistent if the same resume and job description are provided multiple times.
Job Title: {job_title_text}
Preferred Qualification: {job_listing}
Must-Haves: {must_have}
Resume: {resume}
"""
)
prompt_template_resumes_ = PromptTemplate.from_template("""
You are an ATS (Applicant Tracking System) agent designed to analyze multiple resumes for a single job to identify which resume stands out based on the highest match score. Your task is to match key skills, experiences, and qualifications from each input resume to the requirements outlined in the job description.
When performing the analysis, prioritize "Must-Have" skills and qualifications, followed by other weighted criteria:
- **Skills and Keywords (40%)**: Identify critical skills, tools, and technologies, especially those listed as Must-Haves.
- **Experience (30%)**: Compare years of experience, industries, job titles, and responsibilities, focusing on Must-Haves.
- **Education & Certifications (20%)**: Match the candidate’s degrees and certifications with the Must-Haves.
- **Preferred Qualifications (10%)**: Compare the candidate's qualifications to those listed as Preferred.
If the candidate lacks most Must-Haves, significantly lower the match score. the scores for each criteria should not exceed the mentioned out of score
**Score interpretation criteria**:
- **80-100**: Good match – meets most Must-Haves, strong in key skills, may or may not align with Preferred Qualifications.
- **50-79**: Medium match – meets some Must-Haves, lacks others, and may miss Preferred Qualifications.
- **0-49**: Poor match – lacks several Must-Haves or key criteria.
For each resume, Provide brief analysis, including:
- The overall match score (on a scale from 0 to 100), broken down by the weighted criteria.
- A brief explanation of each criterion.
- Score Interpretation of the overall score.
**Special Case for Same Scores:
If two or more resumes receive the same match score,
select the one with more Experience and Skills and Keywords scores.
If still tied, pick the candidate with more Preferred Qualifications scores.**
**Return only the response in the following JSON format for each resume**:
<candidate_name: name of candidate
overall_match_score: The total match score (as a Whole Number value).
skills_keywords_score: Whole Number score for Skills and Keywords (40%).
skills_keywords_explanation: explanation string for Skills and Keywords.
experience_score: Whole Number score for Experience (30%).
experience_explanation: explanation string for Experience.
education_certifications_score: Whole Number score for Education & Certifications (20%).
education_certifications_explanation: explanation string for Education & Certifications.
preferred_qualifications_score: Whole Number score for Preferred Qualifications (10%).
preferred_qualifications_explanation: explanation string for Preferred Qualifications.,
score_interpretation: <Overall score interpretation analysis and highlight if this is the highest score among all and why>
**Do not provide any text other than the JSON response**
Job Title: {job_title_text}
Preferred Qualification: {job_listing}
Must-Haves: {must_have}
Resume: {resume}
"""
)
from typing_extensions import TypedDict
# Update prompt template to match structured response fields
prompt_template_new = PromptTemplate.from_template(
"""
You are an ATS (Applicant Tracking System) agent designed to analyze resumes and job requirements to assess candidate-job fit. Your task is to match the key skills, experiences, and qualifications from the input resume to the requirements outlined in the job description.
When performing the match, prioritize "Must-Have" skills and qualifications, followed by other weighted criteria:
Skills and Keywords (out of 40%): Identify critical skills, tools, and technologies in the Must-Haves.
Experience ( out of 30%): Compare years of experience, industries, job titles, and responsibilities, focusing on Must-Haves.
Education & Certifications (out of 20%): Match the candidate's degrees and certifications with the Must-Haves.
Preferred Qualifications (out of 10%): Compare the candidate's qualifications with the Preferred ones. If the candidate lacks in it, lower the Preferred Qualification score.
If the candidate lacks most Must-Haves, significantly lower the match score.
Ensure that overall_match_score is the exact sum of the individual scores provided above.
Provide a JSON response in the format below:
<candidate_name: name of candidate
overall_match_score: sum of scores for skills_keywords_score, experience_score, education_certifications_score, and preferred_qualifications_score (Whole Number)
skills_keywords_score: Whole Number score for Skills and Keywords (40%).
skills_keywords_explanation: explanation string for Skills and Keywords.
experience_score: Whole Number score for Experience (30%).
experience_explanation: explanation string for Experience.
education_certifications_score: Whole Number score for Education & Certifications (20%).
education_certifications_explanation: explanation string for Education & Certifications.
preferred_qualifications_score: Whole Number score for Preferred Qualifications (10%).
preferred_qualifications_explanation: explanation string for Preferred Qualifications.,
score_interpretation: <donot mention any numbers here, just Interpretation in words of the overall_match_score and highlight the key points to explain analysis>
Ensure the response is consistent if the same resume and job description are provided multiple times.
Job Title: {job_title_text}
Preferred Qualification: {job_listing}
Must-Haves: {must_have}
Resume: {resume}
"""
)
|