Skip to content

danielweller-swp/llm-programmer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

GPT Programmer

Initial Setup

Prepare python env:

conda create --name llm-programmer
conda activate llm-programmer
pip install -r backend/requirements.txt

API credentials setup

This 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.

Running

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 --reload

Frontend:

cd frontend/
npm ci
npm run dev

TODO

  • async support for file system tools?
  • do not include .env in Dockerfile (add to .dockerignore)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published