An experimental code generation tool powered by OpenAI's ChatGPT. It is quite heavily inspired by smol-ai/developer, but uses LangChain under the hood instead of open-ai directly.
Copy .env.example to .env and enter your OpenAI API key. Without an API key, you won't be able to generate any output.
To install the project dependencies, you need to have Poetry installed. Run the following command to install Poetry:
pip install poetryOnce Poetry is installed, you can navigate to the project directory and run the following command to install the project dependencies:
poetry installpoetry run python main.py -p examples/hello-world.md -l nodejsTo run the project, you can use the following command:
poetry run python main.py -p path/to/prompt.md [-l python] [-o ./output]usage: main.py [-h] [-l LANG] -p PROMPT [-o OUTPUT]
options:
-h, --help show this help message and exit
-l LANG, --lang LANG programming language/framework to use
-p PROMPT, --prompt PROMPT
prompt to use to describe the program. It can also be a path to a Markdown file (.md)
-o OUTPUT, --output OUTPUT
output directory to write the generated code to
Since we are still waiting for beta access to GPT-4, the current version has been developed with the gpt-3.5-model model in mind. The first experimental results are quite promising, but this does not always produce perfectly usable or consistent code. We expect a significant improvement of the results with access to GPT-4.
If you already have access, you currently have to manually update the corresponding model in main.py.
--chat_model = ChatOpenAI(temperature=0.0, client=None)
++chat_model = ChatOpenAI(temperature=0.0, model_name="gpt-4" client=None)This project is licensed under the terms of the MIT license.