Update README.md
Browse files
README.md
CHANGED
|
@@ -1,63 +1,98 @@
|
|
| 1 |
-
# ATS
|
|
|
|
| 2 |
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
-
|
|
|
|
| 8 |
|
| 9 |
-
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
-
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
|
| 23 |
-
|
| 24 |
-
pip install crewai
|
| 25 |
-
```
|
| 26 |
|
| 27 |
-
|
| 28 |
|
| 29 |
-
|
| 30 |
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
|
|
|
|
|
|
|
|
|
| 34 |
|
| 35 |
-
|
|
|
|
|
|
|
| 36 |
|
| 37 |
-
|
| 38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
|
|
|
| 40 |
|
| 41 |
-
|
| 42 |
|
| 43 |
-
### Run the Flow
|
| 44 |
|
| 45 |
-
|
|
|
|
| 46 |
|
| 47 |
-
|
| 48 |
-
crewai run
|
| 49 |
-
```
|
| 50 |
-
```bash
|
| 51 |
-
uv run kickoff
|
| 52 |
-
```
|
| 53 |
-
### Plot the Flow
|
| 54 |
|
| 55 |
-
```bash
|
| 56 |
-
uv run plot
|
| 57 |
-
```
|
| 58 |
|
| 59 |
-
|
|
|
|
|
|
|
| 60 |
|
| 61 |
-
|
| 62 |
|
|
|
|
| 63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CrewAI ATS Resume Screener & Rewriter
|
| 2 |
+
This is an intelligent Applicant Tracking System (ATS) Resume Screener & Rewriter built using CrewAI and LangChain tool integrations. It serves two primary user roles: Candidate and Employer.
|
| 3 |
|
| 4 |
+
## Features
|
| 5 |
+
### For Candidates
|
| 6 |
+
#### Resume Scoring
|
| 7 |
+
- Provide your resume and a job posting URL.
|
| 8 |
+
- The system analyzes and scores your resume based on ATS alignment with the job.
|
| 9 |
+
#### Resume Rewriting
|
| 10 |
+
- Upload a resume, and optionally provide a job posting URL.
|
| 11 |
+
- The system identifies gaps and rewrites your resume to improve the ATS score.
|
| 12 |
+
- Attempts rewriting up to 2 times for optimal improvement.
|
| 13 |
|
| 14 |
+
### For Employers
|
| 15 |
+
#### Candidate Evaluation
|
| 16 |
+
- Upload a job description as plain text.
|
| 17 |
+
- Upload multiple candidate resumes (PDF, DOCX, TXT).
|
| 18 |
+
- The system analyzes and ranks the top 3 best-fit candidates based on the job description.
|
| 19 |
+
- Automated Email Notifications
|
| 20 |
+
- Sends personalized emails to all candidates:
|
| 21 |
+
- Acceptance: Invitation for interview scheduling (top 3).
|
| 22 |
+
- Rejection: Polite rejection message (others).
|
| 23 |
|
| 24 |
+
## Tech Stack
|
| 25 |
+
Built with Python using uv and the following major libraries:
|
| 26 |
|
| 27 |
+
π€ crewai[tools] β Agent orchestration
|
| 28 |
|
| 29 |
+
π§± langchain-tools, crewai-tools β Tool abstraction for job and resume parsing
|
| 30 |
|
| 31 |
+
π§ google-auth-oauthlib, google-api-python-client β Gmail API integration for personalized emails
|
| 32 |
|
| 33 |
+
π pyvis β Visualizing the agent execution graph
|
| 34 |
|
| 35 |
+
β‘ onnxruntime β For fast LLM inference where applicable
|
| 36 |
|
| 37 |
+
π python-docx, docx2txt, pymupdf β Resume document parsing
|
| 38 |
|
| 39 |
+
π§ spacy, nltk β NLP for keyword extraction and semantic comparison
|
| 40 |
|
| 41 |
+
π firecrawl-py β Job post scraping from URLs
|
|
|
|
|
|
|
| 42 |
|
| 43 |
+
π streamlit β Frontend interface for candidate and employer interaction
|
| 44 |
|
| 45 |
+
βοΈ asyncio, numpy β Utility libraries for async tasks and data processing
|
| 46 |
|
| 47 |
+
π Installation
|
| 48 |
+
bash
|
| 49 |
+
Copy
|
| 50 |
+
Edit
|
| 51 |
+
# Install uv if not already installed
|
| 52 |
+
pip install uv
|
| 53 |
|
| 54 |
+
# Install dependencies
|
| 55 |
+
uv pip install -r pyproject.toml
|
| 56 |
+
Or, if using requirements.txt:
|
| 57 |
|
| 58 |
+
bash
|
| 59 |
+
Copy
|
| 60 |
+
Edit
|
| 61 |
+
pip install -r requirements.txt
|
| 62 |
+
π οΈ Usage
|
| 63 |
+
Run the Streamlit App
|
| 64 |
+
bash
|
| 65 |
+
Copy
|
| 66 |
+
Edit
|
| 67 |
+
streamlit run app.py
|
| 68 |
+
Modes of Operation
|
| 69 |
+
Select your role: Candidate or Employer
|
| 70 |
|
| 71 |
+
Follow on-screen instructions to upload documents and optionally provide URLs
|
| 72 |
|
| 73 |
+
View results and email status in the dashboard
|
| 74 |
|
|
|
|
| 75 |
|
| 76 |
+
π File Types Supported
|
| 77 |
+
PDF
|
| 78 |
|
| 79 |
+
DOCX
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
|
|
|
|
|
|
|
|
|
|
| 81 |
|
| 82 |
+
π Output
|
| 83 |
+
For Candidates:
|
| 84 |
+
Score Report
|
| 85 |
|
| 86 |
+
Rewritten Resume
|
| 87 |
|
| 88 |
+
Comparison Overview
|
| 89 |
|
| 90 |
+
For Employers:
|
| 91 |
+
Top 3 Candidate Names
|
| 92 |
+
|
| 93 |
+
Email Dispatch Report
|
| 94 |
+
|
| 95 |
+
Ranking Table
|
| 96 |
+
|
| 97 |
+
π§ͺ Retry Mechanism
|
| 98 |
+
Resume rewriting has a 2-attempt max to ensure optimal rewriting without excessive API calls.
|