# Resumer Screener Pack
This LlamaPack loads a resume file, and review it against a user specified job description and screening criteria.
## CLI Usage
You can download llamapacks directly using `llamaindex-cli`, which comes installed with the `llama-index` python package:
```bash
llamaindex-cli download-llamapack ResumeScreenerPack --download-dir ./resume_screener_pack
```
You can then inspect the files at `./resume_screener_pack` and use them as a template for your own project!
## Code Usage
You can download the pack to a `./resume_screener_pack` directory:
```python
from llama_index.core.llama_pack import download_llama_pack
# download and install dependencies
ResumeScreenerPack = download_llama_pack(
"ResumeScreenerPack", "./resume_screener_pack"
)
```
From here, you can use the pack, or inspect and modify the pack in `./resume_screener_pack`.
Then, you can set up the pack like so:
```python
# create the pack
resume_screener = ResumeScreenerPack(
job_description="<general job description>",
criteria=["<job criterion>", "<another job criterion>"],
)
```
```python
response = resume_screener.run(resume_path="resume.pdf")
print(response.overall_decision)
```
The `response` will be a pydantic model with the following schema
```python
class CriteriaDecision(BaseModel):
"""The decision made based on a single criteria"""
decision: Field(
type=bool, description="The decision made based on the criteria"
)
reasoning: Field(type=str, description="The reasoning behind the decision")
class ResumeScreenerDecision(BaseModel):
"""The decision made by the resume screener"""
criteria_decisions: Field(
type=List[CriteriaDecision],
description="The decisions made based on the criteria",
)
overall_reasoning: Field(
type=str, description="The reasoning behind the overall decision"
)
overall_decision: Field(
type=bool,
description="The overall decision made based on the criteria",
)
```
Raw data
{
"_id": null,
"home_page": null,
"name": "llama-index-packs-resume-screener",
"maintainer": "Disiok",
"docs_url": null,
"requires_python": "<4.0,>=3.9",
"maintainer_email": null,
"keywords": "document, pdf, resume, structured output",
"author": null,
"author_email": "Your Name <you@example.com>",
"download_url": "https://files.pythonhosted.org/packages/f8/ba/ced9650f9a9fdde10558389df84d4be3b4877b2433eb8bc058d4270e3968/llama_index_packs_resume_screener-0.9.1.tar.gz",
"platform": null,
"description": "# Resumer Screener Pack\n\nThis LlamaPack loads a resume file, and review it against a user specified job description and screening criteria.\n\n## CLI Usage\n\nYou can download llamapacks directly using `llamaindex-cli`, which comes installed with the `llama-index` python package:\n\n```bash\nllamaindex-cli download-llamapack ResumeScreenerPack --download-dir ./resume_screener_pack\n```\n\nYou can then inspect the files at `./resume_screener_pack` and use them as a template for your own project!\n\n## Code Usage\n\nYou can download the pack to a `./resume_screener_pack` directory:\n\n```python\nfrom llama_index.core.llama_pack import download_llama_pack\n\n# download and install dependencies\nResumeScreenerPack = download_llama_pack(\n \"ResumeScreenerPack\", \"./resume_screener_pack\"\n)\n```\n\nFrom here, you can use the pack, or inspect and modify the pack in `./resume_screener_pack`.\n\nThen, you can set up the pack like so:\n\n```python\n# create the pack\nresume_screener = ResumeScreenerPack(\n job_description=\"<general job description>\",\n criteria=[\"<job criterion>\", \"<another job criterion>\"],\n)\n```\n\n```python\nresponse = resume_screener.run(resume_path=\"resume.pdf\")\nprint(response.overall_decision)\n```\n\nThe `response` will be a pydantic model with the following schema\n\n```python\nclass CriteriaDecision(BaseModel):\n \"\"\"The decision made based on a single criteria\"\"\"\n\n decision: Field(\n type=bool, description=\"The decision made based on the criteria\"\n )\n reasoning: Field(type=str, description=\"The reasoning behind the decision\")\n\n\nclass ResumeScreenerDecision(BaseModel):\n \"\"\"The decision made by the resume screener\"\"\"\n\n criteria_decisions: Field(\n type=List[CriteriaDecision],\n description=\"The decisions made based on the criteria\",\n )\n overall_reasoning: Field(\n type=str, description=\"The reasoning behind the overall decision\"\n )\n overall_decision: Field(\n type=bool,\n description=\"The overall decision made based on the criteria\",\n )\n```\n",
"bugtrack_url": null,
"license": null,
"summary": "llama-index packs resume_screener integration",
"version": "0.9.1",
"project_urls": null,
"split_keywords": [
"document",
" pdf",
" resume",
" structured output"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "e3c58854924ceedfd812bc191e73d14c9341ad0f1126d9f42ede82d710e6e078",
"md5": "aead8d464ea9fcc411516c223755da7d",
"sha256": "a7505a4805f19b5fca43fff6c36e6fae4c435243719f12ccf0c0f3059d5fe85c"
},
"downloads": -1,
"filename": "llama_index_packs_resume_screener-0.9.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "aead8d464ea9fcc411516c223755da7d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.9",
"size": 4220,
"upload_time": "2025-08-14T20:17:35",
"upload_time_iso_8601": "2025-08-14T20:17:35.172569Z",
"url": "https://files.pythonhosted.org/packages/e3/c5/8854924ceedfd812bc191e73d14c9341ad0f1126d9f42ede82d710e6e078/llama_index_packs_resume_screener-0.9.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f8baced9650f9a9fdde10558389df84d4be3b4877b2433eb8bc058d4270e3968",
"md5": "0c692541047837a9b8b96258f9c3548f",
"sha256": "5169b5e5c1edb2002940e7e246a9da22d6ec5e509aa9a3e858a087f5a69597ed"
},
"downloads": -1,
"filename": "llama_index_packs_resume_screener-0.9.1.tar.gz",
"has_sig": false,
"md5_digest": "0c692541047837a9b8b96258f9c3548f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.9",
"size": 4434,
"upload_time": "2025-08-14T20:17:36",
"upload_time_iso_8601": "2025-08-14T20:17:36.184929Z",
"url": "https://files.pythonhosted.org/packages/f8/ba/ced9650f9a9fdde10558389df84d4be3b4877b2433eb8bc058d4270e3968/llama_index_packs_resume_screener-0.9.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-14 20:17:36",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "llama-index-packs-resume-screener"
}