https://github.com/e2b-dev/agentboard
ChatGPT-like interface for working with AI Agents
https://github.com/e2b-dev/agentboard
Last synced: 4 months ago
JSON representation
ChatGPT-like interface for working with AI Agents
- Host: GitHub
- URL: https://github.com/e2b-dev/agentboard
- Owner: e2b-dev
- Created: 2023-11-25T23:09:48.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T01:00:27.000Z (over 1 year ago)
- Last Synced: 2024-11-11T07:10:07.885Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://agentboard.dev
- Size: 2.23 MB
- Stars: 17
- Watchers: 3
- Forks: 7
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Agentboard
Agentboard is a project that allows you to use Open Interpreter in your browser.
It's made with [E2B's sandbox](https://e2b.dev). Inside the sandbox, we use [Open Interpreter](https://openinterpreter.com/) to run code.
## Free hosted version
[agentboard.dev](https://agentboard.dev)
## How to run app locally
**Requirements**
- Supabase project
- Your Supabase project needs to have enabled [GitHub and Google auth providers](./supabase-auth.png)
- [Poetry](https://python-poetry.org/)
### Steps
**Frontend**
1. Copy `frontend/.env.example` to `frontend/.env` and set the correct env vars
1. Go to `frontend`
1. Install dependencies `pnpm i`
1. Start frontend `pnpm dev`
**Backend**
1. Copy `backend/.env.example` to `backend/.env` and set the correct env vars
1. Install dependencies `poetry install`
1. Active poetry environment `poetry shell`
1. Start backend `uvicorn server:app --reload --port 8080`