Skip to content

Commit e0c77f7

Browse files
Merge pull request #7702 from HeidiSteen/heidist-rag
edits
2 parents 2db96d1 + d940e47 commit e0c77f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/search/retrieval-augmented-generation-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can choose between two approaches for RAG workloads: agentic retrieval, or t
3535
> [!NOTE]
3636
> New to copilot and RAG concepts? Watch [Vector search and state of the art retrieval for Generative AI apps](https://www.youtube.com/watch?v=lSzc1MJktAo).
3737
38-
## Modern RAG with Agentic Retrieval
38+
## Modern RAG with agentic retrieval
3939

4040
Azure AI Search now provides **agentic retrieval**, a specialized pipeline designed specifically for RAG patterns. This approach uses large language models to intelligently break down complex user queries into focused subqueries, executes them in parallel, and returns structured responses optimized for chat completion models.
4141

@@ -53,7 +53,7 @@ For new RAG implementations, we recommend starting with [agentic retrieval](agen
5353

5454
## Classic RAG pattern for Azure AI Search
5555

56-
A RAG solution can be implemented on Azure AI Search using the original query execution architecture. With this approach, your application sends a single query request to Azure AI Search, the search engine processes the request, and returns search results to the caller. There's no side trip to an LLM query planning or LLM integration in the query pipeline. There's no query execution details in the response, and citations are built into the response only if you have fields in your index that provide a parent document name or page. This approach is faster and simpler with fewer components. Depending on your application requirements, it can be the best choice.
56+
A RAG solution can be implemented on Azure AI Search using the original query execution architecture. With this approach, your application sends a single query request to Azure AI Search, the search engine processes the request, and returns search results to the caller. There's no side trip to an LLM for query planning or answer formulation. There's no query execution details in the response, and citations are built into the response only if you have fields in your index that provide a parent document name or page. This approach is faster and simpler with fewer components. Depending on your application requirements, it could be the best choice.
5757

5858
A high-level summary of classic RAG pattern built on Azure AI Search looks like this:
5959

0 commit comments

Comments
 (0)