Skip to content

IvanIsCoding/ResuLLMe

Repository files navigation

ResuLLMe Open in Streamlit


🚀 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/.

🛠 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, execute:

streamlit run src/Main.py

🪄 Installation Instructions

Notice that you will need to install two things for the app to work. The first are the Python dependencies:

pip install -r requirements.txt

The second is the LaTeX packages:

sudo apt install -y < packages.txt

🤲 Contributing

ResuLLMe is an open source project.

If you want to contribute, open a Pull requests. 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)