An open API service indexing awesome lists of open source software.

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

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`