Documentation

Ship beast-mode RAG, fast.

Guides, references and recipes for building retrieval and autonomous agents on BeastRAG — from your first index to a global, multi-tenant deployment.

Quickstart

From zero to grounded answers

Install the SDK, drop in your API key, and point the beast at your data. That is the whole setup.

quickstart.sh
# 1. Install the SDK
pip install beastrag

# 2. Authenticate
export BEAST_API_KEY="bk_live_..."

# 3. Ingest + query
python - <<'PY'
from beastrag import Beast
beast = Beast()
beast.ingest(paths=["./docs/*.pdf"])
print(beast.query("What changed in v2?", slim_context=True).text)
PY
Next: explore the API reference