Get help with Golden Retriever quickly and easily
/ask [your question]
systemctl status golden-retriever
tail -f /var/log/golden-retriever/app.log
systemctl restart golden-retriever
htop
or docker stats
redis-cli ping
python check_embeddings.py
pg_stat_activity
nvidia-smi
celery inspect active
grep "ERROR" /var/log/golden-retriever/indexer.log
python manage.py reindex --force
ls -la /data/documents/
grep "RAG_MODE" /etc/golden-retriever/config.yml
ollama list
ollama pull llama3.2
/etc/golden-retriever/.env
curl -X POST http://localhost:11434/api/generate
redis-cli FLUSHDB
python check_sessions.py
/clear
command to reset conversation context.
# Clone repository
git clone https://github.com/nololabs/golden-retriever.git
cd golden-retriever
# Configure environment
cp .env.example .env
nano .env # Add your API keys and settings
# Start with Docker Compose
docker-compose up -d
# Verify installation
docker ps
curl http://localhost:8080/health
# Install dependencies
sudo apt update
sudo apt install python3.10 postgresql redis-server
# Install Ollama (for local LLM)
curl -fsSL https://ollama.ai/install.sh | sh
# Setup Golden Retriever
pip install -r requirements.txt
python setup.py install
# Initialize database
python manage.py migrate
python manage.py init
# Start services
systemctl start golden-retriever