Skip to content

Commit be95d97

Browse files
committed
Added another diagram
1 parent 896dd68 commit be95d97

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed
73.4 KB
Loading

articles/search/search-agentic-retrieval-concept.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ The *retrieval* component is the ability to run subqueries simultaneously, merge
3131

3232
Query expansion and parallel execution, plus the retrieval response, are the key capabilities of agentic retrieval that make it the best choice for generative AI (RAG) applications.
3333

34+
:::image type="content" source="media/agentic-retrieval/agentric-retrieval-example.png" alt-text="Diagram of a complex query with implied context and an intentional typo." lightbox="media/agentic-retrieval/agentric-retrieval-example.png" :::
35+
3436
Agentic retrieval adds latency to query processing, but it makes up for it by adding these capabilities:
3537

3638
+ Reads in chat history as an input to the retrieval pipeline.

articles/search/search-agentic-retrieval-how-to-pipeline.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to design and build a custom agentic retrieval solution w
55
author: HeidiSteen
66
ms.author: heidist
77
manager: nitinme
8-
ms.date: 05/21/2025
8+
ms.date: 06/08/2025
99
ms.service: azure-ai-search
1010
ms.topic: how-to
1111
ms.custom:
@@ -16,7 +16,9 @@ ms.custom:
1616

1717
[!INCLUDE [Feature preview](./includes/previews/preview-generic.md)]
1818

19-
This article describes an approach or pattern for building a solution that uses Azure AI Search for knowledge retrieval, and how to integrate knowledge retrieval into a custom solution that includes Azure AI Agent.
19+
This article describes an approach or pattern for building a solution that uses Azure AI Search for knowledge retrieval, and how to integrate knowledge retrieval into a custom solution that includes Azure AI Agent. This pattern uses an agent tool to invoke an agentic retrieval pipeline in Azure AI Search.
20+
21+
:::image type="content" source="media/agentic-retrieval/agent-to-agent-pipeline.png" alt-text="Diagram of Azure AI Search integration with Azure AI Agent service." lightbox="media/agentic-retrieval/agent-to-agent-pipeline.png" :::
2022

2123
This article supports the [agentic-retrieval-pipeline-example](https://github.com/Azure-Samples/azure-search-python-samples/tree/main/agentic-retrieval-pipeline-example) Python sample on GitHub.
2224

articles/search/search-agentic-retrieval-how-to-retrieve.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ ms.date: 06/08/2025
1717

1818
In Azure AI Search, *agentic retrieval* is a new parallel query architecture that uses a large language model (LLM) for query planning. It generates subqueries that broaden the scope of what's searchable and relevant. It incorporates chat history for context. The LLM studies the query and subdivides it into more targeted queries, using different phrases and terminology for subquery composition.
1919

20-
:::image type="content" source="media/agentic-retrieval/agentric-retrieval-example.png" alt-text="Diagram of a complex query with implied context and an intentional typo." lightbox="media/agentic-retrieval/agentric-retrieval-example.png" :::
21-
2220
This article explains how to use the [**retrieve method**](/rest/api/searchservice/knowledge-retrieval/retrieve?view=rest-searchservice-2025-05-01-preview&preserve-view=true) that invokes a knowledge agent and parallel query processing. This article also explains the three components of the retrieval response:
2321

2422
+ *extracted response for the LLM*

0 commit comments

Comments
 (0)