Prepare python env:
conda create --name llm-programmer
conda activate llm-programmer
pip install -r backend/requirements.txtThis application uses OpenAI's GPT the OpenAI API.
You'll need to configure the API credentials.
To do so, create a .env file based on .env.sample.
Backend:
cd backend/
# Create an empty git repo to work in
mkdir workspace
cd workspace
git init
cd ..
# Either
docker-compose up
# or
uvicorn main:app --reloadFrontend:
cd frontend/
npm ci
npm run dev- async support for file system tools?
- do not include .env in Dockerfile (add to .dockerignore)