GitHub Stars
58
User Rating
Not Rated
Favorites
0
Views
38
Forks
4
Issues
2
Installation
Difficulty
AdvancedEstimated Time
20-45 minutes
Installation
In case of trouble, please reach out on [Discord](https://discord.gg/3XPsmCRNE2) for help!
The
The simplest way to build and launch OpenGPA is using the provided Docker compose file:
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]
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
bash
export OPENAI_API_KEY=sk-*
docker compose up --build
Additional Resources
Author Information
Related MCPs
FastGPT
25733
FastGPT is a knowledge-based platform built on the LLMs, offers a comprehensive suite of out-of-the-box capabilities such as data processing, RAG retrieval, and visual AI workflow orchestration, letting you easily develop and deploy complex question-answering systems without the need for extensive setup or configuration.