llama-index-packs-resume-screener


Namellama-index-packs-resume-screener JSON
Version 0.7.0 PyPI version JSON
download
home_pageNone
Summaryllama-index packs resume_screener integration
upload_time2024-11-18 01:31:02
maintainerDisiok
docs_urlNone
authorYour Name
requires_python<4.0,>=3.9
licenseMIT
keywords document pdf resume structured output
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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": "Your Name",
    "author_email": "you@example.com",
    "download_url": "https://files.pythonhosted.org/packages/6b/1d/0da4aa02cc88744de08fb8326890bda26c11ae2334f3ed7f3caaacc4103c/llama_index_packs_resume_screener-0.7.0.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": "MIT",
    "summary": "llama-index packs resume_screener integration",
    "version": "0.7.0",
    "project_urls": null,
    "split_keywords": [
        "document",
        " pdf",
        " resume",
        " structured output"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5706201770886bfe7991fab7674c29ccbf64d737ec7fd66aaeebdc96669dcb11",
                "md5": "8373f731e689c8b60fccc372e90337ec",
                "sha256": "eda60df7c66719bfd0c69b3ae7072ebcb92c6ec3419ce2320ebd66b846faf2ec"
            },
            "downloads": -1,
            "filename": "llama_index_packs_resume_screener-0.7.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8373f731e689c8b60fccc372e90337ec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.9",
            "size": 3402,
            "upload_time": "2024-11-18T01:31:01",
            "upload_time_iso_8601": "2024-11-18T01:31:01.444379Z",
            "url": "https://files.pythonhosted.org/packages/57/06/201770886bfe7991fab7674c29ccbf64d737ec7fd66aaeebdc96669dcb11/llama_index_packs_resume_screener-0.7.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b1d0da4aa02cc88744de08fb8326890bda26c11ae2334f3ed7f3caaacc4103c",
                "md5": "9c9270790f2fd7e0eb1ee07e6609716a",
                "sha256": "66cb8bb2caa0acae827269b7063fb1ba3912e7e906ff0131d4034c72f3ba552c"
            },
            "downloads": -1,
            "filename": "llama_index_packs_resume_screener-0.7.0.tar.gz",
            "has_sig": false,
            "md5_digest": "9c9270790f2fd7e0eb1ee07e6609716a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.9",
            "size": 3025,
            "upload_time": "2024-11-18T01:31:02",
            "upload_time_iso_8601": "2024-11-18T01:31:02.940672Z",
            "url": "https://files.pythonhosted.org/packages/6b/1d/0da4aa02cc88744de08fb8326890bda26c11ae2334f3ed7f3caaacc4103c/llama_index_packs_resume_screener-0.7.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-18 01:31:02",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "llama-index-packs-resume-screener"
}
        
Elapsed time: 0.42958s