Launching today

A self-hosted RAG chatbot boilerplate
Own your RAG and LLM stack. GDPR compliance built-in.
10 followers
Own your RAG and LLM stack. GDPR compliance built-in.
10 followers
EuroRAG is source code for building AI chatbots over your documents. Upload PDF, DOCX, or spreadsheets. Ask questions. Get answers with source citations. GDPR compliance is architectural. Deletion cascades across database, vector store, search index, and disk. Per-provider data residency tracking. Strict EU Mode blocks non-compliant providers before any data leaves your server. Audit logging of every operation. Consent management with withdrawal support. Data export for subject access requests.




honestly the cascade deletion story is really well thought out, one thing that would make this even better is a built in redaction layer for PII before chunks get embedded, basically detect emails phone numbers and IBANs in the source documents and either mask them or replace them with placeholders so nothing sensitive ever lands in the vector store
Finally tried a RAG setup that takes GDPR seriously. The cascade delete across Postgres, the vector store, and the search index actually works as advertised, which is rarer than it should be. Strict EU Mode is a nice touch for anyone who has dealt with compliance audits.
Cascade deletion across all the stores at once is genuinely handy, not having to script cleanup for each layer separately. EU Mode blocking non-compliant providers before anything ships out is a nice touch, honestly saved me from a footgun I'd probably have missed.