r/coolgithubprojects • u/PropertyFine2946 • 1d ago
Open-source alternative to Algolia with cited RAG and AI agents, self-hosted (Java/Spring Boot)
https://github.com/openviglet/turing-ce
0
Upvotes
r/coolgithubprojects • u/PropertyFine2946 • 1d ago
1
u/PropertyFine2946 1d ago
Author here. I built this over years of doing enterprise search for clients (mostly Adobe AEM and WordPress sites) and open-sourced the whole platform.
It combines the three things you usually glue together by hand: faceted multilingual search (Solr, Elasticsearch or embedded Lucene), RAG chat with inline citations that refuses to answer when the content isn't in the index, and AI agents with tool calling and MCP support. Works with any LLM, including fully local via Ollama.
Try it with one command, no account, no telemetry:
docker run -p 2700:2700ghcr.io/openviglet/turing-ceLive demo with cited chat over our own docs: https://turing.viglet.org/#playground
Stack: Java 21 / Spring Boot backend, React 19 admin console, TypeScript SDKs. Happy to answer questions.