https://github.com/IvanIsCoding/ResuLLMe
Enhance your résumé with Large Language Models
https://github.com/IvanIsCoding/ResuLLMe
collaborate generative-ai json-resume large-language-models latex-resume latex-resume-template latex-template learn resume resume-builder resume-parser resume-template streamlit
Last synced: 4 months ago
JSON representation
Enhance your résumé with Large Language Models
- Host: GitHub
- URL: https://github.com/IvanIsCoding/ResuLLMe
- Owner: IvanIsCoding
- License: mit
- Created: 2023-03-22T17:15:38.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-28T04:39:27.000Z (10 months ago)
- Last Synced: 2024-09-04T16:36:56.236Z (8 months ago)
- Topics: collaborate, generative-ai, json-resume, large-language-models, latex-resume, latex-resume-template, latex-template, learn, resume, resume-builder, resume-parser, resume-template, streamlit
- Language: Python
- Homepage: https://resullme.streamlit.app/
- Size: 6.55 MB
- Stars: 294
- Watchers: 6
- Forks: 81
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# ResuLLMe [](https://resullme.streamlit.app/) [](https://github.com/IvanIsCoding/ResuLLMe/blob/main/LICENSE) 
---

👉 Check some sample résumés generated by ResuLLMe ([1](./.github/samples/Simple.pdf), [2](./.github/samples/Alta.pdf), [3](./.github/samples/Awesome.pdf))
## 🚀 Concept
ResuLLMe is a prototype that uses Large Language Models (LLMs) to tailor résumés. It's goal is to enhance résumés to help candidates avoid common mistakes that occur while applying for jobs. It is like a smart career advisor to check your résumé.
You can use ResuLLMe live at [https://resullme.streamlit.app/](https://resullme.streamlit.app/).
## 🛠 How It Works
ResuLLMe receives your previous CV as a PDF or Word Document. Then, it uses LLMs to:
* Improve the résumé following published résumé guidelines by well-reputed schools
* Convert the résumés to a JSON Resume format
* Render the JSON resume using LaTeX to generate a new PDF of the enhanced resume## 🏃 Running
To run ResuLLMe locally, the simplest way is to use Docker:
```
docker-compose up -d
```This will make the app avaialable at [`https://localhost:8501/`](https://localhost:8501/)
### 🪄 Installation Instructions for Running Natively
To run the app without Docker, you will need to install two things for the app to work. The first item is to install the Python dependencies:
```
pip install -r requirements.txt
```The second item is to install the LaTeX packages:
```
xargs sudo apt install -y < packages.txt
```Lastly, to run ResuLLMe locally, execute:
```
streamlit run src/Main.py
```## 🤲 Contributing
ResuLLMe is an open source project.
If you want to contribute, open a [Pull requests](https://github.com/360macky/project-name/pulls).
All contributions are welcome, but some that would particularly be useful to the community are:
* Fixes in existing LaTeX templates
* Adding new LaTeX templates
* Improved prompts
* Support for other LLMs (e.g. Bard, Claude, LLaMA)