RagLeap - No CUDA, no 2GB torch. 23MB reranker. 6 vector DBs.
by•
The open-source core of RagLeap — a self-hosted RAG chat engine (document ingestion, retrieval, citations) powering RagLeap's full AI business manager: Voice AI, WhatsApp/Telegram/Discord bots, database & CRM integrations, workflow automation, and a private executive assistant. Foundation layer — hosted platform at ragleap.com - antonyrag/ragleap-core

Replies
Quickstart for anyone who wants to try it:
pip install ragleap-rag
from ragleap import RagLeap, ProviderConfig, EmbeddingConfig
rag = RagLeap(
database_url="postgresql://user:pass@localhost/mydb",
embedder=EmbeddingConfig(provider="gemini", api_key="YOUR_KEY"),
primary=ProviderConfig(provider="gemini", api_key="YOUR_KEY"),
)
rag.init_schema()
rag.ingest("doc.pdf", open("doc.pdf","rb").read())
answer = rag.ask("your question")
print(answer["answer"])
Works on CPU with 23MB ONNX. No GPU needed.
I also added WhatsApp/Telegram/Discord examples in /examples folder on GitHub.
Which one should I demo next?