RAG Classifications, Architectures: A Field Guide for Production-Grade Systems
If you've shipped a "chat with your docs" prototype in a weekend, congratulations — you've built Naive RAG . If you've then watched it hallucinate on …
Latest Team Management news from Tech News
If you've shipped a "chat with your docs" prototype in a weekend, congratulations — you've built Naive RAG . If you've then watched it hallucinate on …
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…
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…
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…
Stop Stuffing Your LLM Agent's Context Window: Structured Memory Categories with Mem0 Most tutorials on giving an LLM agent "memory" show you the same…
A follow-up to How Old Is My Data? The failure mode that gets worse when a machine is reading the data In a classic dashboard, stale data is a human p…
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…
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…
Disclosure: I maintain Tura. A coding agent often spends a separate model turn on each part of a routine workflow: inspect the environment, edit packa…
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…
DoorDash RAG Architecture, AI Agent Mesh, & Open-Source Supply-Chain Scanner Today's Highlights This week, we explore advanced AI agent orchestrat…
RAG Retrieval Gotchas at Scale: Insights and Solutions Retrieval-Augmented Generation (RAG) has become a popular technique for enhancing natural langu…
If you ask an LLM for structured output and validate it against a schema, you already know the failure mode: most of the time it is fine, and every so…
Ask a current-generation AI assistant which Protobuf library to use in JavaScript, and you're about to get a confident recommendation. On the surface,…
TL;DR Build AI-agents in 5 lines of code. Skip the set up & infrastructure. Live and running. from custodian_labs import Custodian app = Custodian…
Introduction to Overfitting in LLM Evaluation We've all been there: you train a model, it performs exceptionally well on your test set, but when you d…
If you've been building AI applications recently, you've probably come across Retrieval-Augmented Generation (RAG) . It has become the go-to way of gi…
RAG is one of those patterns that sounds more complicated than it has to be. At its core, retrieval-augmented generation is just: Store some documents…
Most discussions around MCP focus on tool calling. That is natural. When people first see MCP, the obvious use case is simple: Let the AI call externa…
System design interviews are changing. Traditional questions such as “Design Twitter,” “Design Uber,” and “Design YouTube” are still important. They t…
Originally published on hexisteme notes , part of a series on building and running an AI agent fleet. To stop an AI research or RAG agent from present…
How to Build Systems That Actually Know Your Data (Not Hallucinate About It) Introduction: The Story Begins 👦 Nephew: Uncle, I keep hearing "RAG this,…
Меня зовут Дмитрий Валов, я тимлид команды «Инструменты для банка (агенты)» в Sber AI Lab — Центре практического искусственного интеллекта Сбера. Боль…
Most RAG demos answer "what's the right chunk?" Very few can answer the two questions a regulator or an auditor will actually ask: Replay this decisio…
What I built A small business owner needed an automated customer support system that works 24/7, answering questions based only on their internal poli…
In the previous post , we talked about context windows. The model has a fixed-size desk and everything has to fit on it at once. When too much is on t…
A support agent tells a customer their plan is still Enterprise, even though finance downgraded it last week. A coding copilot forgets a repo conventi…
Pattern Defined Precise Definition: Context Compression is an inference pattern that utilizes a specialized "selector" model or a ranker to distill la…