HackerTrans
TopNewTrendsCommentsPastAskShowJobs

2dogsanerd

no profile record

Submissions

Ask HN: Founder is claiming my 2-year RAG architecture as his AI's Featured Work

3 points·by 2dogsanerd·4 ay önce·2 comments

Show HN: Self-hosted RAG with MCP support for OpenClaw

github.com
4 points·by 2dogsanerd·5 ay önce·2 comments

Show HN: The feature gap "Chat with PDF" tuts and a regulated enterprise system

gist.github.com
3 points·by 2dogsanerd·7 ay önce·2 comments

Show HN: DAUT – AI-powered documentation generator for your codebase

github.com
1 points·by 2dogsanerd·7 ay önce·0 comments

Show HN: Validated Table Extractor–Verify PDF Tables Using Docling+Vision LLMs

github.com
3 points·by 2dogsanerd·7 ay önce·0 comments

Show HN: Side-by-side PDF parser comparison for RAG pipelines

github.com
2 points·by 2dogsanerd·7 ay önce·1 comments

Show HN: Self-hosted RAG for docs and code (FastAPI, Docling, ChromaDB)

github.com
4 points·by 2dogsanerd·7 ay önce·1 comments

Show HN: Smart Router Kit – Prevent "Garbage in" for RAG Using Pydantic and LLMs

github.com
1 points·by 2dogsanerd·8 ay önce·0 comments

Show HN: Built a tool solve the nightmare of chunking tables in PDF vs. Markdown

github.com
15 points·by 2dogsanerd·8 ay önce·0 comments

comments

2dogsanerd
·4 ay önce·discuss
thank you...its the right lesson at the right moment ;) i learned a lot
2dogsanerd
·5 ay önce·discuss
Thanks! The Community Edition is intentionally a 'primitive' – single container, zero config However, I disagree on the 'maintenance tax'. ClawRAG isn't a weekend project; it's the retrieval engine extracted directly from our Enterprise RAG Core V4 system. It keeps the same connection pooling and health checks, so it is built to be 'always-on' without babying The full V4 system adds Governance (Solomon Consensus/Multi-lane validation), not basic stability. You don't need the Enterprise layer just to keep the lights on

Re: PAIO – if they implement an MCP Client, ClawRAG can serve them. But I'd argue: if you already run a host, adding a container gives you provable privacy vs. 'trust us' managed services. I prefer owning the keys AND the lock ;-)
2dogsanerd
·7 ay önce·discuss
preparing to and found a pilot project with endboss pdf which im able to handle already.... but i focus on 100% quality in the db, so there is always a hitl below 100% confi...cant wait to proof im able to have a "hallucination free" rag..... main goal so far....next headache will be the update of data in the rag
2dogsanerd
·7 ay önce·discuss
Hi HN, I built this "Community Edition" kit because I wanted a clean, self-hosted way to chat with my documents AND my codebase without sending data to the cloud. It's a Docker Compose setup that wires together: Docling for parsing (handles PDFs/Tables really well) ChromaDB for vector storage FastAPI backend + Simple UI Ollama for local embeddings/LLM The main feature: It separates "Code" and "Docs" into different collections with optimized chunking strategies, so you can ask "How does the auth middleware work?" and get actual code snippets back. It's open source (MIT). I stripped out the heavy async worker queues from my enterprise version to keep this kit lightweight enough for a standard VPS or local machine. Repo: https://github.com/2dogsandanerd/Knowledge-Base-Self-Hosting... I'd love your feedback on the architecture or the parsing quality!