Skip to content

Commit dea07c6

Browse files
committed
final revisions
1 parent 945fc5d commit dea07c6

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In Azure AI Search, *agentic retrieval* is a new multi-query pipeline designed f
2626

2727
+ Combining the best results into a unified response that your LLM can use to generate answers with your proprietary content.
2828

29-
This high-performance pipeline delivers fast, comprehensive answers to complex questions.
29+
This high-performance pipeline helps you return comprehensive answers to complex questions quickly.
3030

3131
Programmatically, agentic retrieval is supported through a new [Knowledge Agents object](/rest/api/searchservice/knowledge-agents?view=rest-searchservice-2025-05-01-preview&preserve-view=true) in the 2025-05-01-preview data plane REST API and in Azure SDK preview packages that provide the feature. A knowledge agent's retrieval response is designed for downstream consumption by other agents and chat apps.
3232

@@ -84,9 +84,8 @@ Agentic retrieval has these components:
8484
| Retrieval engine | Azure AI Search | Executes on the LLM-generated query plan and other parameters, returning a rich response that includes content and query plan metadata. Queries are keyword, vector, and hybrid. Results are merged and ranked. |
8585
| Semantic ranker | Azure AI Search | Provides L2 reranking, promoting the most relevant matches. Semantic ranker is required for agentic retrieval. |
8686
87-
Your solution should include a tool or app that drives the pipeline. An agentic retrieval pipeline concludes with the response object that provides grounding data. Your solution should take it from there, handling the response by passing it to an LLM to generate an answer, which you render inline in the user conversation. For more information about this step, see [Build an agent-to-agent retrieval solution](search-agentic-retrieval-how-to-pipeline.md).
87+
Your solution should include a tool or app that drives the pipeline. An agentic retrieval pipeline concludes with the response object that provides grounding data. Your solution should take it from there, handling the response by passing it to an LLM to generate an answer, which you render inline in the user conversation. For more information about this step, see [Build an agent-to-agent retrieval solution](search-agentic-retrieval-how-to-pipeline.md). -->
8888

89-
<!-- Insert multiquery pipeline diagram here -->
9089
Agentic retrieval has these processes:
9190

9291
+ Requests for agentic retrieval are initiated by calls to a knowledge agent on Azure AI Search.
@@ -96,7 +95,7 @@ Agentic retrieval has these processes:
9695
+ Results are ranked and merged.
9796
+ Knowledge agent responses are formulated and returned as a three-part response consisting of a unified result (a long string), a reference array, and an activities array that enumerates all operations.
9897

99-
Your search index determines query execution and any optimizations that occur during query execution. This includes your semantic configuration, as well as optional scoring profiles, synonym maps, analyzers, and normalizers (if you add filters). -->
98+
Your search index determines query execution and any optimizations that occur during query execution. This includes your semantic configuration, as well as optional scoring profiles, synonym maps, analyzers, and normalizers (if you add filters).
10099

101100
## Architecture and workflow
102101

0 commit comments

Comments
 (0)