Quick Start
Get Apollo RAG up and running in under 5 minutes.
Prerequisites
- Docker 20.10+ and Docker Compose 2.0+
- 8GB RAM minimum (16GB recommended)
- (Optional) NVIDIA GPU with CUDA 11.8+ for 10x faster performance
Clone the Repository
git clone https://github.com/yourusername/apollo-rag.git
cd apollo-ragConfigure Environment
Create a .env file:
cp .env.example .envEssential variables:
OLLAMA_BASE_URL=http://localhost:11434
OLLAMA_MODEL=llama3.1:8b
VECTOR_STORE=chromaLaunch Apollo
docker compose up -dMake Your First Query
curl -X POST http://localhost:8000/api/query \
-H "Content-Type: application/json" \
-d '{"question": "What is Apollo RAG?", "mode": "simple"}'Next Steps
- API Reference - Complete endpoint documentation
- Architecture - How Apollo works