> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shareofmodel.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# What is query fan-out and why it matters in LLM search?

> Learn how LLMs expand a single prompt into multiple internal queries and how that shapes visibility.

When users interact with an LLM, they enter a single prompt and receive a single answer. That answer is rarely built from one question alone.

Behind the scenes, LLMs like ChatGPT, Gemini or Claude often expand a prompt into multiple internal queries to retrieve information, compare viewpoints and structure their response. This mechanism is called **query fan-out**.

Query fan-out gives a clearer lens for understanding:

* how presence is distributed across multiple sub-questions
* how influence and visibility emerge across LLM answers
* how indirect traffic and brand exposure can be generated

## What is query fan-out

| Term          | What it means                                                                                                   | Key attributes                                                                                  |
| ------------- | --------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
| Query fan-out | The process by which an LLM expands a single user prompt into multiple internal queries to generate its answer. | Happens internally in the model. Not visible to users. Varies by engine, version and over time. |

In practice, the model does not answer one question — it answers several related questions, then synthesizes them into a single response.

<Info>
  **Example**

  User prompt:

  > What is the best project management software for small teams?

  To answer, the model may internally explore queries like:

  * *What tools are commonly used by small teams?*
  * *Which features matter most?*
  * *How do popular solutions compare?*
  * *What are their main strengths and limitations?*

  Each internal query contributes a piece of information used to assemble the final answer.
</Info>

## Fan-out, intent and answer construction

Query fan-out is closely linked to how the model interprets what the user is trying to achieve. Rather than treating a prompt as a single request, the LLM:

* breaks it down into several angles
* explores each angle through an internal query
* combines these perspectives into one answer

In practice, fan-out queries often cover:

* explanation or definition
* comparison between options
* examples or recommendations

This is how LLMs translate intent into smaller, answerable questions.

## What we observe in practice

<Note>
  These observations come from internal experiments by our data science team and reflect current behaviours.
</Note>

* A single prompt can generate **anywhere from zero to 15–20 fan-out queries**, depending on the model and version. Narrow questions may trigger little to no fan-out.
* Fan-out is **not fixed over time** — the same prompt can produce different internal queries at different moments. This helps explain why LLM answers are not always perfectly stable, even when the prompt does not change.
* Being ranked on Google for fan-out queries does **not directly increase** the probability of appearing as a Source or Link in LLM answers.
* Some models expose, via their APIs, the URLs associated with fan-out queries — ChatGPT does so today.
* Being present in these URLs **increases the likelihood** of later appearing as a Source or Link in the final answer (observed for GPT-5.1).
* The **relative position vs. competitors** appears more important than absolute ordering (observed for GPT-5.1).

These signals should be read as interpretation cues, not deterministic rules.

## To recap

* Query fan-out describes how a single prompt expands into multiple internal queries.
* These queries explore different angles of the same question.
* Fan-out varies by engine, version and over time.
* It plays a key role in how sources, links and brands appear in LLM answers.

## What's next

<CardGroup cols={2}>
  <Card title="Sources vs Links" icon="circle-info" href="/platform/search/what-s-the-difference-between-sources-and-links">
    The two layers behind every LLM answer.
  </Card>

  <Card title="Fan-out Queries" icon="diagram-project" href="/platform/search/fan-out-queries-what-how-purpose">
    Inspect fan-out queries in the platform.
  </Card>
</CardGroup>
