42What is parent-child (small-to-big) retrieval, and why does it improve RAG?▼mediumMicrosoftCohereGlean1 replies◆ premiumSmall chunks match precisely but starve the LLM of context; big chunks carry context but match badly. Parent-child retrieval declines to choose. The signal is separating what you match on from what you feed the model.Open full answer →
43What is contextual retrieval, and how does it fix the lost-context problem in chunking?▼mediumAnthropicCohereMicrosoft2 replies◆ premiumA chunk embedded in isolation forgets which document, section, and entity it came from, so it retrieves poorly. Contextual retrieval writes that context back in before indexing. The signal is fixing retrieval at index time rather than query time.Open full answer →
24How do you build content moderation / toxicity classification, and what makes it hard?▼mediumGoogleMetaMicrosoft1 replies◆ premiumToxicity detection looks like plain text classification but is nothing of the sort: context flips labels, adversaries evolve weekly, and naive models tag dialects as hate. The signal is naming those failure modes and building the human-in-the-loop system around them.Open full answer →