← All stories
● Covered by 1 source · 1 reportMedium impact1 neutral

Query Decomposition Does Not Solve Context Starvation in LLM Applications

🔄 Updated 3h ago
New to BrevFeed? We gather this story from every outlet covering it into one summary — ranked by real-world impact, not just the latest headline — so you never miss what matters. What is BrevFeed? →

Key points

  • Query decomposition splits complex queries into sub-queries.
  • Context starvation is when retrieved evidence is excluded from the final context.
  • This issue occurs despite successful retrieval of relevant passages.
  • It differs from semantic dilution and context poisoning.

The Problem with Query Decomposition

The article demonstrates that query decomposition, a common practice in LLM applications, does not inherently solve the problem of "context starvation." This issue arises when a multi-part query is broken down, and while relevant passages for each sub-query are successfully retrieved, not all of them make it into the limited context window provided to the LLM.

Illustrative Example

Using an example of a chat widget for GitLab's documentation, a five-part user query was processed. Despite the pipeline successfully retrieving all five correct passages corresponding to the sub-queries, only one passage was included in the final 2,000-token context. This indicates that four out of five sub-intents were starved of context, even though their evidence was found.

Defining Context Starvation

Context starvation is defined as a sub-intent receiving no allocation in the final packed context, regardless of whether its evidence was successfully retrieved. This definition focuses on allocation rather than retrieval, as current recall metrics might report perfect system performance even when sub-intents are starved due to allocation failures.

Distinction from Other Failure Modes

The article distinguishes context starvation from "semantic dilution" and "context poisoning." Semantic dilution occurs at retrieval time when a complex query's embedding is too generalized, preventing relevant evidence from being found. Query decomposition helps address semantic dilution, but it does not resolve context starvation, which happens later in the pipeline during context packing.

✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →

The daily brief

One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.

One email a day. Unsubscribe in one click, any time.

Today's brief

Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.

~24 min · 20 stories · Sep 24

▶ Play today's brief Listen on Spotify

New every morning, and the back catalogue is archived by date.

Reporting from

Query decomposition, a technique to break down complex user queries for Large Language Models (LLMs), does not prevent "context starvation." This occurs when relevant information for sub-intents is retrieved but fails to be included in the final context provided to the LLM, even if the retrieval metrics appear successful.