Sumanth指出检索质量是上下文工程的基础,并介绍Glean通过统一索引和多种检索方法解决检索覆盖缺口,使模型专注于推理而非排序
AI 摘要
Sumanth指出检索质量是上下文工程的基础,并介绍Glean通过统一索引和多种检索方法解决检索覆盖缺口,使模型专注于推理而非排序。
推荐理由常规快讯,保留列表
原文
Retrieval quality is the foundation of context engineering. Karpathy described it best: the heavy cognitive work should happen at ingestion, not at query time. When knowledge is properly structured before retrieval, the model's job becomes reasoning, not sorting.
Most AI systems focus on compressing what the model sees. The more important problem is what gets retrieved before the model sees anything.
Token efficiency starts at retrieval. When context is properly indexed and prepared, the model spends its tokens on reasoning. When retrieval is weak, the model spends those same tokens sorting through noise and filling gaps from its own weights.
That's the silent failure mode. Retrieval returns topically correct but incomplete context. The model completes the gaps from parametric knowledge and streams it out the same way as grounded content. No signal in the output tells you which parts came from retrieved context and which came from weights. The answer looks confident. It just isn't complete.
The common assumption is that hallucination is the main failure mode. It's not. Models handle off-domain questions reasonably well now. If nothing in the retrieved context looks relevant, there's no material to build an answer on. The harder failure is partial coverage. The right document was retrieved. But not the full picture.
Coverage gaps don't produce error messages. They produce confident answers with pieces missing.
This gets worse when sources stay isolated. The same person might appear across multiple tools and systems. If those sources are indexed separately, the model has to figure out they refer to the same entity on its own. That's work that should happen before the model starts reasoning.
Glean's system of context is built around this problem:
• Unified index across all connected applications, not each source kept separate • Specialized indexes for different types of information: company data, code, experts, profiles, tools, and calendars • Multiple retrieval methods - semantic when meaning matters, lexical when exact terms matter, structured when fields and relationships need to stay intact • Enterprise Graph that maps relationships across people, teams, customers, and projects so relevance reflects how the company actually works • Memory that carries context forward across sessions and tasks • Tools that let the model act on what it finds
The gap between finding information and understanding it is where most AI systems fall short.
I've shared the link in the replies!
讨论
暂无评论。