Will agentic retrieval enable queries to run against more than one index?

btwstl 20 Reputation points
2025-05-23T19:50:41.1466667+00:00

I saw a couple of the demos from Build where it looked like the part of the code that was bringing in the index would allow for more than one, but then the demos only ever used one. With the idea of breaking up queries into sub-queries, is it going to be possible for those sub-queries to run against different indexes?

Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.

Locked Question. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

{count} votes
Answer accepted by question author
  1. Anonymous
    2025-05-26T03:39:40.74+00:00

    Hi btwstl,

    Yes, agentic retrieval in Azure AI Search does support querying multiple indexes, and this is a key part of its design.

    According to the official Microsoft documentation and announcements from Build 2025:

    • Agentic retrieval uses a multiturn query engine that can break down complex queries into subqueries.
    • These subqueries are then dispatched in parallel across both traditional text fields and vector embeddings within Azure AI Search.
    • While the demos may have shown only one index in use, the architecture is designed to support parallel searches across multiple data sources, which can include multiple indexes if configured appropriately.
    • The retrieval engine orchestrates the entire process: it invokes the LLM for query planning, dispatches subqueries (potentially to different indexes), collects and reranks results, and returns a unified response.

    This means that if you have different indexes for different domains (e.g., product data, support documents, user manuals), agentic retrieval can intelligently route subqueries to the appropriate index and synthesize the results into a coherent answer.

    https://techcommunity.microsoft.com/blog/azure-ai-services-blog/introducing-agentic-retrieval-in-azure-ai-search/4414677

    If you have any further assistant, do let me know.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. btwstl 20 Reputation points
    2025-05-27T19:00:35.02+00:00

    Excellent, thank you for the information.