The Ultimate Quantified Self: Building a Private Health Knowledge Base with RAG (PKM for Health)
We've all been there: staring at a blood test report from three years ago, trying to remember if that "slightly elevated" glucose level was a one-time…
Latest Architecture news from Tech News
We've all been there: staring at a blood test report from three years ago, trying to remember if that "slightly elevated" glucose level was a one-time…
At Univoco we build retrieval-augmented assistants over a customer's own documentation. One of them is a coding agent that writes code for a proprieta…
Retrieval-Augmented Generation (RAG) sounds simple on paper: embed your documents, retrieve the relevant chunks, stuff them into a prompt, let the LLM…
Part 4 of **The Answerability Problem , and the one that isn't about abstention. Parts 1–3 argued that the field measures the wrong half and that my o…
Part 3 of **The Answerability Problem . Part 1 showed the standard harness excluding the questions that test refusal, and my own system scoring 0.000 …
Part 2 of **The Answerability Problem . Part 1 showed the standard harness excluding the questions that test refusal, my own system scoring 0.000, and…
Most RAG demos are graded by an audience that cannot check the answer. Ask a docs bot something, get a fluent paragraph back, nobody in the room knows…
Этот проект долго вынашивался и, в конце концов, начался как очередная попытка разобраться в философских текстах, написанных Джейн Робертс во второй п…
The RAG Security Gap Retrieval-Augmented Generation (RAG) has rapidly emerged as the foundational architecture for grounding enterprise AI agents in p…
In my previous article , I built a fully local RAG assistant Ollama, ChromaDB, LangChain, all running in Docker. It answered technical support questio…
My index reported 354 points. The collection had 451. Both numbers were "correct," and that gap is the whole problem. Here's the setup. I have a wiki …
If you've tried building RAG over scientific papers, you've probably hit this: the PDF looks fine, the text extracts fine, and then a table with merge…
Most people think ChatGPT is "the AI." In reality, ChatGPT is just one layer of a much larger engineering stack. Modern AI applications aren't powered…
В первой статье я разбирал RAG-модуль этого проекта и главный вывод — что RAG оказался про замеры, а не про код. Здесь — про то, как устроена вся сист…
The first failure I had to eliminate in the blog pipeline was not a bad paragraph. It was a bad evidence set. The system was finding a few nearby chun…
Document Extraction I thought I had solved document extraction. My Node.js project could pull text out of a PDF. The library was free. No API bill, no…
How to Build a RAG Pipeline from PDFs Using Python Most RAG pipelines don't fail at retrieval. They don't fail at the model either. They fail at inges…
Every company sits on a mountain of internal knowledge — contracts, technical manuals, compliance policies — that traditional AI models simply cannot …
I mistook movement for improvement. For three months, I changed our ranking algorithm every two weeks. BM25. Hybrid BM25 + vector search. A cross-enco…
I recently completed Dev-Code , an AI coding assistant project built around Agentic AI, RAG-style memory, and developer-tool integration. GitHub repo:…
One of the first features users expect from an AI application is deceptively simple: Upload a document. Ask questions. Get accurate answers. Whether y…
RAG for developers who aren't AI engineers: what actually matters Most non-AI developers have a mental model of RAG that is either wrong or dangerousl…
Part 6 (finale) of Retrieval-Augmented Self-Recall. Code: RE-call . Part 5: the gap threshold that didn't transfer . I fine-tuned the embedder on my o…
Memento as a two-hour postmortem for retrieval-augmented generation. Leonard Shelby makes the pitch himself: memory is unreliable. It reinterprets, it…
One of the ideas behind RocheDB is easy to miss if we describe it only as a NoSQL database, a document store, or a vector-aware storage engine for AI …
In my last post, I walked through a RAG pipeline that answers questions from a company policy document. The next question I wanted to answer: what hap…
How building an AI chapter generator taught me to stop reaching for a vector database first. When I started building my AI chapter generator, I spent …
Классический RAG (Retrieval-Augmented Generation) решает задачу поиска релевантного контекста в векторных базах данных. Однако при работе с большими о…
Answer up front: A RAG pipeline architecture is a set of connected services that ingest raw documents, turn them into embeddings, store them in a vect…
Disclosure up front: I build agentproto and its corpus tooling, which is what the walkthrough uses. The commands are real and checkable; the problem i…