This is a simple job description generator that uses a finetuned version of OpenAI's GPT-3 (Brown et al.).
Wrote in 2 hours. Quality not guaranteed.
- A web app that anyone can deploy and use for their own, even on a raspberry pi
- Automate job description writing with just 2 lines of Python (pip install and run)
- Specifically designed and finetuned GPT-3 for job description generation - no more copied training data and no more repeated nonsense
- Accounts for all levels of needs: level of experience, skills, education, location and more
- Option to create your own examples and specify what you want
- Faster, newer, and better version and package control
- Prompt engineering tips
- UI fixes
- OpenAI GPT-3 API key
- Python 3
yarn- installation.
- Install python libraries:
pip install -r requirements.txt - Place your API key: use
echo export OPENAI_API_KEY=[key] > .envto create an environment file, where[key]is your OpenAI API key. - Run
yarn install - Run
python3 app.pyand have fun!
A new tab should pop up in your browser, and the webapp should be ready!
To stop this app, run ctrl-c or command-c in your terminal.
Please do not leave your API key in text file when you push this code online!
If you put it in a .env file, make sure it is included in your .gitignore!
- Frontend: React.js
- Backend: Flask
- Language model: GPT-3 DaVinci
Inspired by gpt-3 sandbox.
