Autocode is a Python script that uses OpenAI models to generate and apply code automatically from a prompt.
I built this to help me generate code for my projects faster, and the user experience of IDEs like Cursor don't cut it for me.
This is designed for projects using version control. It will make changes to your files without warning or confirmation.
- Add autocode.py to your project root directory.
- Set the OPENAI_API_KEY environment variable in your terminal environment or set it in the autocode.py file.
- Install openai
pip install openai
- Run the script
python autocode.py
- Add
gpt.basic.log
andgpt.verbose.log
to your.gitignore
file to avoid committing them.
If you want to contribute, feel free to open a PR.