Dialoqbase
Retrieval-augmented chatbots on your own knowledge base - that is the whole mission of
Dialoqbase, an open-source bot-building platform. Feed it content through a broad set of data
loaders - web pages and full crawls, sitemaps, PDFs, DOCX, CSV, plain text, GitHub
repositories, YouTube videos, and MP3/MP4 audio - and it handles the whole RAG pipeline in one
self-contained app: chunking, embedding, vector storage, and LLM querying. The distinguishing
architecture choice is PostgreSQL with pgvector for embedding storage and similarity search,
which removes the separate vector-database dependency, and Redis-backed Bull queues for
ingesting large documents without blocking the API. Model choice is wide open: OpenAI,
Anthropic Claude, Google Gemini, Cohere, Fireworks, Hugging Face, local models via Ollama, and
any OpenAI-compatible endpoint, with an equally broad list of embedding providers. Finished
bots embed on any website with customizable styling or deploy to Telegram, Discord, and
WhatsApp, and an API creates and manages bots programmatically. Multi-user support adds
registration limits and per-user bot quotas. MIT-licensed and free for commercial use.
Deploy