Autogenerate files and folders using ChatGPT API
Project description
CodeGenPT
Autogenerate files using ChatGPT API.
Installation
pip install codegenpt
Usage
CodeGenPT looks for .codegenpt
files within the source tree and generate files using its instructions.
Example: hello_world.py.codegenpt
Create a hello world program
Then:
$ codegenpt helloworld.py.codegenpt
⏳ Generating file: helloworld.py
🍺 File generated: helloworld.py
🍻 Success
Will generate a file named helloworld.py
:
print("hello world");
The actual content of the file will be generated by ChatGPT, so it will vary at each run.
You can also recursevily generate all files within a directory:
$ codegenpt -R .
🔎 Searching files...
⏳ Generating file: helloworld.py
🍺 File generated: helloworld.py
⏳ Generating file: README.md
🍺 File generated: README.md
⏳ Generating file: tests/tests.py
🍺 File generated: tests/tests.py
🍻 Success
Setup
CodeGenPT expects an environment variable called OPEN_API_KEY
.
- Get an Open AI API Key
- Add the key to your
OPEN_API_KEY
environment variable:
- If you use
bash
:echo 'export OPENAI_API_KEY={your api key}' >> ~/.bash_profile && source ~/.bash_profile
- If yu use
zsh
:echo 'export OPENAI_API_KEY={your api key}' >> ~/.zshenv && source ~/.zshenv
Commands
Commands are special instructions you can use to instruct the generation process.
All codegenpt commands are placed in a single line in the format:
@command_name args...
@include
Includes one or more files on the context.
Included files can be referenced using @filename.ext
in the generation instructions
Example:
names.txt
:
Diego
Alberto
Daniel
random_name.js.codegenpt
:
@include assets/names.txt
Read @names.txt and write a function that returns one of the names
random_name.js
:
function getRandomName() {
const names = [
'Diego',
'Alberto',
'Daniel'
];
const randomIndex = Math.floor(Math.random() * names.length);
return names[randomIndex];
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file codegenpt-0.4.1.tar.gz
.
File metadata
- Download URL: codegenpt-0.4.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 19668f14973e0c5cea3f556b9b0db9b087e3f029cf26eec0fee77486125246bf |
|
MD5 | ecff32f0db6fbc579236729ba9002b64 |
|
BLAKE2b-256 | c3b0290f7c0c8476390be71ad449ef9a330f6380e210e04915b23403b5379603 |
File details
Details for the file codegenpt-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: codegenpt-0.4.1-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.3 Darwin/22.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aae04526b595eeca744d8c36984bce75b50834d11cd1651a475b93aa468d344c |
|
MD5 | 92795a2591eea5439bd238facc8b8e86 |
|
BLAKE2b-256 | 26c53cfe264dceb06abaef81723e026a0529a7ee603afac523e668d401dea3b7 |