Agentboard is a project that allows you to use Open Interpreter in your browser.
It's made with E2B's sandbox. Inside the sandbox, we use Open Interpreter to run code.
Requirements
- Supabase project
- Your Supabase project needs to have enabled GitHub and Google auth providers
- Poetry
Frontend
- Copy
frontend/.env.example
tofrontend/.env
and set the correct env vars - Go to
frontend
- Install dependencies
pnpm i
- Start frontend
pnpm dev
Backend
- Copy
backend/.env.example
tobackend/.env
and set the correct env vars - Install dependencies
poetry install
- Active poetry environment
poetry shell
- Start backend
uvicorn server:app --reload --port 8080