Skip to content

Commit

Permalink
prompt improved
Browse files Browse the repository at this point in the history
  • Loading branch information
jitendra-ky committed Sep 3, 2024
1 parent b366d31 commit 2ada36c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ def input_pdf_text(file_name):

def analyse_resume(resume_txt, job_description):
prompt = open('prompt.md', 'r').read()
prompt = prompt.replace("{{resume-8765}}", resume_txt)
prompt = prompt.replace("{{job_description_58945}}", job_description)

return get_gemini_response(prompt)


Expand Down
18 changes: 18 additions & 0 deletions prompt.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ Microsoft is an equal opportunity employer. Consistent with applicable law, all
```

# YOUR OUTPUT
this output is only for the give example of Resume and Job description. just giving u a better understanding that which type of output u have to give

## Match Percentage 70%

Expand All @@ -142,3 +143,20 @@ Microsoft is an equal opportunity employer. Consistent with applicable law, all
## Profile Summary

The resume shows a solid foundation in web development, machine learning, and problem-solving with notable projects and achievements. However, it lacks specific experience and skills that align with the Microsoft 365 Lighthouse role, such as proficiency in C++, C#, and Golang, experience with UI frameworks like Angular, and familiarity with Agile development methodologies. Additionally, the resume does not mention direct experience with debugging code in production systems or the required 2+ years of professional software engineering experience. Expanding the resume to include these aspects and tailoring it to the job description will improve alignment with the role.


# here are the user detail you have to give output for

## USER JOB DESCRIPTION

```
{{resume-8765}}
```


## USER RESUME

```
{{job_description_58945}}
```

0 comments on commit 2ada36c

Please sign in to comment.