Skip to content

Commit 3cac75b

Browse files
Merge pull request #4147 from HeidiSteen/heidist-freshness
[azure search] RAG journey links
2 parents a3f2592 + 23ee076 commit 3cac75b

File tree

4 files changed

+50
-30
lines changed

4 files changed

+50
-30
lines changed

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

Lines changed: 39 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.custom:
1111
- ignite-2023
1212
- ignite-2024
1313
ms.topic: conceptual
14-
ms.date: 12/18/2024
14+
ms.date: 04/15/2025
1515
---
1616

1717
# Retrieval Augmented Generation (RAG) in Azure AI Search
@@ -41,7 +41,7 @@ Microsoft has several built-in implementations for using Azure AI Search in a RA
4141
+ Azure OpenAI, [use a search index with or without vectors](/azure/ai-services/openai/concepts/use-your-data).
4242
+ Azure Machine Learning, [use a search index as a vector store in a prompt flow](/azure/machine-learning/how-to-create-vector-index).
4343

44-
Curated approaches make it simple to get started, but for more control over the architecture, you need a custom solution. These templates create end-to-end solutions in:
44+
Curated approaches make it simple to get started, but for more control over the architecture, you need a custom solution. The following templates create end-to-end solutions in:
4545

4646
+ [Python](https://aka.ms/azai/py)
4747
+ [.NET](https://aka.ms/azai/net)
@@ -58,6 +58,7 @@ A high-level summary of the pattern looks like this:
5858
+ Send it to Azure AI Search to find relevant information.
5959
+ Return the top ranked search results to an LLM.
6060
+ Use the natural language understanding and reasoning capabilities of the LLM to generate a response to the initial prompt.
61+
+ Optionally, use agentic RAG where an agent evaluates an answer and finds a better one if the original answer is incomplete or low quality.
6162

6263
Azure AI Search provides inputs to the LLM prompt, but doesn't train the model. In RAG architecture, there's no extra training. The LLM is pretrained using public data, but it generates responses that are augmented by information from the retriever, in this case, Azure AI Search.
6364

@@ -94,8 +95,6 @@ Since you probably know what kind of content you want to search over, consider t
9495
| text | vectors <sup>1</sup> | Text can be chunked and vectorized in an indexer pipeline, or handled externally and then [indexed as vector fields](vector-search-how-to-create-index.md) in your index. |
9596
| image | tokens, unaltered text <sup>2</sup> | [Skills](cognitive-search-working-with-skillsets.md) for OCR and Image Analysis can process images for text recognition or image characteristics. Image information is converted to searchable text and added to the index. Skills have an indexer requirement. |
9697
| image | vectors <sup>1</sup> | Images can be vectorized in an indexer pipeline, or handled externally for a mathematical representation of image content and then [indexed as vector fields](vector-search-how-to-create-index.md) in your index. You can use [Azure AI Vision multimodal](/azure/ai-services/computer-vision/how-to/image-retrieval) or an open source model like [OpenAI CLIP](https://github.com/openai/CLIP/blob/main/README.md) to vectorize text and images in the same embedding space.|
97-
<!-- | audio | vectors <sup>1</sup> | Vectorized audio content can be [indexed as vector fields](vector-search-how-to-create-index.md) in your index. Vectorization of audio content often requires intermediate processing that converts audio to text, and then text to vecctors. [Azure AI Speech](/azure/ai-services/speech-service/overview) and [OpenAI Whisper](https://platform.openai.com/docs/guides/speech-to-text) are two examples for this scenario. |
98-
| video | vectors <sup>1</sup> | Vectorized video content can be [indexed as vector fields](vector-search-how-to-create-index.md) in your index. Similar to audio, vectorization of video content also requires extra processing, such as breaking up the video into frames or smaller chunks for vectorization. | -->
9998

10099
<sup>1</sup> Azure AI Search provides [integrated data chunking and vectorization](vector-search-integrated-vectorization.md), but you must take a dependency on indexers and skillsets. If you can't use an indexer, Microsoft's [Semantic Kernel](/semantic-kernel/overview/) or other community offerings can help you with a full stack solution. For code samples showing both approaches, see [azure-search-vectors repo](https://github.com/Azure/azure-search-vector-samples).
101100

@@ -156,7 +155,8 @@ In comparison and benchmark testing, hybrid queries with text and vector fields,
156155

157156
The following Python code demonstrates the essential components of a RAG workflow in Azure AI Search. You need to set up the clients, define a system prompt, and provide a query. The prompt tells the LLM to use just the results from the query, and how to return the results. For more steps based on this example, see this [RAG quickstart](search-get-started-rag.md).
158157

159-
For the Azure Government cloud, modify the API endpoint on the token provider to `"https://cognitiveservices.azure.us/.default"`.
158+
> [!NOTE]
159+
> For the Azure Government cloud, modify the API endpoint on the token provider to `"https://cognitiveservices.azure.us/.default"`.
160160
161161
```python
162162
# Set up the query for generating responses
@@ -223,39 +223,55 @@ A RAG solution that includes Azure AI Search can leverage [built-in data chunkin
223223

224224
## How to get started
225225

226+
There are many ways to get started, including code-first solutions and demos.
227+
228+
### [**Docs**](#tab/docs)
229+
226230
+ [Try this RAG quickstart](search-get-started-rag.md) for a demonstration of query integration with chat models over a search index.
227231

228232
+ [Tutorial: How to build a RAG solution in Azure AI Search](tutorial-rag-build-solution.md) for focused coverage on the features and pattern for RAG solutions that obtain grounding data from a search index.
229233

230-
+ Start with solution accelerators:
234+
+ [Review indexing concepts and strategies](search-what-is-an-index.md) to determine how you want to ingest and refresh data. Decide whether to use vector search, keyword search, or hybrid search. The kind of content you need to search over, and the type of queries you want to run, determines index design.
231235

232-
+ [Chat with your data solution accelerator](https://github.com/Azure-Samples/chat-with-your-data-solution-accelerator)
233-
234-
+ [Conversational Knowledge Mining solution accelerator](https://github.com/microsoft/Customer-Service-Conversational-Insights-with-Azure-OpenAI-Services)
236+
+ [Review creating queries](search-query-create.md) to learn more about search request syntax and requirements.
235237

236-
+ [Document Knowledge Mining accelerator](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator)
238+
> [!NOTE]
239+
> Some Azure AI Search features are intended for human interaction and aren't useful in a RAG pattern. Specifically, you can skip features like autocomplete and suggestions. Other features like facets and orderby might be useful, but would be uncommon in a RAG scenario.
237240
238-
+ [Build your own copilot solution accelerator](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator)
241+
### [**Demos and code**](#tab/demos)
239242

240-
+ [Client Advisor](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator/blob/main/ClientAdvisor/README.md)
243+
Check out the following GitHub repositories for code, documentation, and video demonstrations where applicable.
241244

242-
+ [Research Assistant](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator/blob/main/ResearchAssistant/README.md)
245+
+ [RAG Time Journeys](https://github.com/microsoft/rag-time)
243246

244-
+ [Generic copilot](https://github.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator)
247+
+ [azure-search-vector-samples](https://github.com/Azure/azure-search-vector-samples)
245248

246-
+ [Use enterprise chat app templates](https://aka.ms/azai) deploy Azure resources, code, and sample grounding data using fictitious health plan documents for Contoso and Northwind. This end-to-end solution gives you an operational chat app in as little as 15 minutes. Code for these templates is the **azure-search-openai-demo** featured in several presentations. The following links provide language-specific versions:
249+
### [**Templates**](#tab/templates)
247250

248-
+ [.NET](https://aka.ms/azai/net)
249-
+ [Python](https://aka.ms/azai/py)
250-
+ [JavaScript](https://aka.ms/azai/js)
251-
+ [Java](https://aka.ms/azai/javat)
251+
[Use enterprise chat app templates](https://aka.ms/azai) deploy Azure resources, code, and sample grounding data using fictitious health plan documents for Contoso and Northwind. This end-to-end solution gives you an operational chat app in as little as 15 minutes. Code for these templates is the **azure-search-openai-demo** featured in several presentations. The following links provide language-specific versions:
252252

253-
+ [Review indexing concepts and strategies](search-what-is-an-index.md) to determine how you want to ingest and refresh data. Decide whether to use vector search, keyword search, or hybrid search. The kind of content you need to search over, and the type of queries you want to run, determines index design.
253+
+ [.NET](https://aka.ms/azai/net)
254+
+ [Python](https://aka.ms/azai/py)
255+
+ [JavaScript](https://aka.ms/azai/js)
256+
+ [Java](https://aka.ms/azai/javat)
254257

255-
+ [Review creating queries](search-query-create.md) to learn more about search request syntax and requirements.
258+
### [**Accelerators**](#tab/accelerators)
256259

257-
> [!NOTE]
258-
> Some Azure AI Search features are intended for human interaction and aren't useful in a RAG pattern. Specifically, you can skip features like autocomplete and suggestions. Other features like facets and orderby might be useful, but would be uncommon in a RAG scenario.
260+
+ [Chat with your data solution accelerator](https://github.com/Azure-Samples/chat-with-your-data-solution-accelerator)
261+
262+
+ [Conversational Knowledge Mining solution accelerator](https://github.com/microsoft/Customer-Service-Conversational-Insights-with-Azure-OpenAI-Services)
263+
264+
+ [Document Knowledge Mining accelerator](https://github.com/microsoft/Document-Knowledge-Mining-Solution-Accelerator)
265+
266+
+ [Build your own copilot solution accelerator](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator)
267+
268+
+ [Client Advisor](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator/blob/main/ClientAdvisor/README.md)
269+
270+
+ [Research Assistant](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator/blob/main/ResearchAssistant/README.md)
271+
272+
+ [Generic copilot](https://github.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator)
273+
274+
---
259275

260276
## See also
261277

articles/search/search-features-list.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ ms.date: 02/24/2025
1717

1818
Azure AI Search provides information retrieval and uses optional AI integration to extract more value from text and vector content.
1919

20-
The following table summarizes features by category. For more information about how Azure AI Search compares with other search technologies, see [Compare search options](search-what-is-azure-search.md#compare-search-options).
21-
22-
There's feature parity in all Azure public, private, and sovereign clouds, but some features aren't supported in specific regions. For more information, see [Choose a region](search-region-support.md).
20+
The following table summarizes features by category. There's feature parity in all Azure public, private, and sovereign clouds, but some features aren't supported in specific regions. For more information, see [Choose a region](search-region-support.md).
2321

2422
> [!NOTE]
2523
> Looking for preview features? See the [preview features list](search-api-preview.md).

articles/search/search-what-is-azure-search.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: azure-ai-search
1010
ms.custom:
1111
- ignite-2024
1212
ms.topic: overview
13-
ms.date: 12/10/2024
13+
ms.date: 04/15/2025
1414
---
1515

1616
# What's Azure AI Search?
@@ -126,7 +126,7 @@ Or, try solution accelerators:
126126
> [!TIP]
127127
> For help with complex or custom solutions, [**contact a partner**](resource-partners-knowledge-mining.md) with deep expertise in Azure AI Search technology.
128128
129-
## Compare search options
129+
<!-- ## Compare search options
130130
131131
Customers often ask how Azure AI Search compares with other search-related solutions. The following table summarizes key differences.
132132
@@ -145,4 +145,4 @@ Key strengths include:
145145
+ Azure AI integration for transformations that make content text and vector searchable.
146146
+ Microsoft Entra security for trusted connections, and Azure Private Link for private connections in no-internet scenarios.
147147
+ [Full search experience](search-features-list.md): Linguistic and custom text analysis in 56 languages. Faceting, autocomplete queries and suggested results, and synonyms.
148-
+ Azure scale, reliability, and global reach.
148+
+ Azure scale, reliability, and global reach. -->

articles/search/whats-new.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: HeidiSteen
77
ms.author: heidist
88
ms.service: azure-ai-search
99
ms.topic: overview
10-
ms.date: 03/31/2025
10+
ms.date: 04/15/2025
1111
ms.custom:
1212
- references_regions
1313
- ignite-2024
@@ -20,6 +20,12 @@ Learn about the latest updates to Azure AI Search functionality, docs, and sampl
2020
> [!NOTE]
2121
> Preview features are announced here, but we also maintain a [preview features list](search-api-preview.md) so you can find them in one place.
2222
23+
## April 2025
24+
25+
| Item&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | Type | Description |
26+
|-----------------------------|------|--------------|
27+
| [RAG Time Journey](https://github.com/microsoft/rag-time) | Demo code | Code and video demonstrations of Retrieval Augmented Generation (RAG) workflows that use Azure AI Search. Segments include fundamentals, patterns and use-cases, [vector indexing at scale](https://github.com/microsoft/rag-time/tree/main/Journey%203%20-%20Optimize%20your%20Vector%20Index%20for%20Scale), and [agentic search](https://github.com/microsoft/rag-time/tree/main/Journey%20Bonus%20-%20Agentic%20RAG) where you use an agent to evaluate a result and generate a better answer. |
28+
2329
## March 2025
2430

2531
| Item&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | Type | Description |

0 commit comments

Comments
 (0)