OpenGPA

Free and open General Purpose Agent

GitHubスター

58

ユーザー評価

未評価

お気に入り

0

閲覧数

6

フォーク

4

イシュー

2

インストール方法
難易度
上級
推定所要時間
20-45

インストール方法

In case of trouble, please reach out on [Discord](https://discord.gg/3XPsmCRNE2) for help! The docker-compose.quickstart.yml makes it easy to launch the latest stable version with a postgresql database (with pg_vector extension), the opengpa backend and the frontend, on the same host.

curl -O https://raw.githubusercontent.com/eschnou/OpenGPA/main/docker-compose.quickstart.yml
echo "OPENAI_API_KEY=your-key-here" > .env
docker compose -f docker-compose.quickstart.yml up -d
The simplest way to build and launch OpenGPA is using the provided Docker compose file:
bash
export OPENAI_API_KEY=sk-* 
docker compose up --build
This will build the opengpa image from source with all required dependencies (in particular the Playwright dependencies for web browsing) and launch the service on port 3000. Opening http://localhost:3000 will lead you to the OpenAPI documentation. If you are on a Mac, the following should be enough to get you started and running this locally. > [!WARNING]