pip install-able packages. For the hosted business platform (AI Office, WhatsApp/Voice bots, billing), see ragleap.com instead — docs.ragleap.com covers that product, not these libraries.
RagLeap Packages
Open, honestly documented Python libraries for retrieval-augmented generation and knowledge-graph retrieval. No projected numbers — every claim on this site is either live-verified or labeled as not yet verified.
Packages
All three are part of the same public monorepo — ragleap-graph composes with ragleap-rag for hybrid vector+graph retrieval, and ragleap-vectorstores extends ragleap-rag's VectorBackend interface with additional backends — but each installs and works independently.
Install
All three are on PyPI and installable independently.
pip install ragleap-rag # or, with uv uv add ragleap-rag
<dependency> <groupId>io.github.antonyrag</groupId> <artifactId>ragleap-rag</artifactId> <version>0.5.0</version> </dependency>
pip install ragleap-graph # or, with uv uv add ragleap-graph
pip install ragleap-vectorstores[chroma] # or, with uv uv add ragleap-vectorstores[chroma] pip install ragleap-vectorstores[lancedb] # or, with uv uv add ragleap-vectorstores[lancedb] pip install ragleap-vectorstores[redis] # or, with uv uv add ragleap-vectorstores[redis] pip install ragleap-vectorstores[upstash] # or, with uv uv add ragleap-vectorstores[upstash] pip install ragleap-vectorstores[opensearch] # or, with uv uv add ragleap-vectorstores[opensearch]
pip install ragleap-tools # or, with uv uv add ragleap-tools pip install ragleap-tools[ingest] # optional, needs ragleap-rag
pip install ragleap-ops # or, with uv uv add ragleap-ops
pip install ragleap-app-chart # or, with uv uv add ragleap-app-chart
pip install ragleap-observability # or, with uv uv add ragleap-observability
Ecosystem roadmap
The full plan, in build order. Four shipped, nine more to go — statuses reflect real progress, not intent.
| Order | Package | Purpose | Status |
|---|---|---|---|
| 1 | ragleap-rag | RAG engine core | ✓ v0.12.8 |
| -- | ragleap-rag (Java) | Java port of the ragleap-rag core pipeline, on Maven Central (not part of the numbered sequence, independently versioned from the Python package) | ✓ v0.5.0 |
| 2 | ragleap-graph | Neo4j knowledge-graph retrieval | ✓ v0.9.0 |
| 3 | ragleap-vectorstores | Pluggable backends beyond core defaults | ✓ v0.5.1 |
| 4 | ragleap-tools | Stateless tools + sandboxed file ops + document search for LLM tool-calling (search/code-exec/HTTP-fetch/connectors deliberately deferred) | ✓ v0.1.1 |
| 5 | ragleap-integrations | MCP-native connectors + WhatsApp/Telegram/Discord/Voice | not started |
| 6 | ragleap-agents | Role-based crews, tool-calling, HITL approval gates | not started |
| 7 | ragleap-flows | Low-code orchestration + HITL, bootstrapped from existing n8n integration | not started |
| 8 | ragleap-observability | Tracing, hallucination detection, LLM-as-judge evaluation framework | not started |
| 8⚠️ | (naming note) | The PyPI name ragleap-observability is already taken by a separate, shipped package below (infra monitoring). This roadmap item (LLM tracing/eval) needs a different package name when built. | n/a |
| -- | ragleap-observability | Prometheus + postgres_exporter for ragleap-ops, live-verified end-to-end (not part of the numbered sequence) | ✓ v0.1.0 (live-tested on a real kind cluster) |
| 9 | ragleap-ops | Docker/K8s/Helm/CI-CD templates, IaC | ✓ v0.3.0 (manifests, Helm chart, NetworkPolicies, Ingress+TLS, multi-env, Backup/DR) |
| -- | ragleap-app-chart | Generic, reusable Helm chart for arbitrary services (not RagLeap-specific, not part of the numbered sequence) | ✓ v0.2.0 (live-tested on a real kind cluster) |
| 10 | ragleap-studio | Visual low-code builder UI | not started |
| 11 | ragleap-memory | Long-term memory & context management | not started |
| 12 | ragleap-intelligence | Autonomous multi-step execution with optional human-in-the-loop approval | not started |
| 13 | ragleap | Meta-package — everything bundled | not started |
| 14 | ragleap-physical | Evolution: Embodied AI — MQTT/ROS/PLC bridge, sensors → actions | Evolution — after 1-13 |
Correction: an earlier version of this page said ragleap-vectorstores was folded into ragleap-rag's core rather than shipped separately — that plan changed. It shipped as its own package at v0.1.0, with Chroma as its first backend; see its reference page.
The standard
Every claim in code, docs, and this site is either live-verified against real infrastructure, or explicitly labeled unverified. When a past claim turns out wrong, a new entry documents the correction — nothing gets silently rewritten. See each package's reference page for the specific findings this held up against.