Skip to content

Commit 7f451b9

Browse files
committed
Updates to what-is-search for agentic retrieval and also fix issues noted in verbatims
1 parent 781ede9 commit 7f451b9

File tree

1 file changed

+29
-12
lines changed

1 file changed

+29
-12
lines changed

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

Lines changed: 29 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,31 @@ ms.update-cycle: 180-days
1111
ms.custom:
1212
- ignite-2024
1313
ms.topic: overview
14-
ms.date: 05/15/2025
14+
ms.date: 07/18/2025
1515
---
1616

1717
# What's Azure AI Search?
1818

19-
Azure AI Search ([formerly known as "Azure Cognitive Search"](whats-new.md#new-service-name)) is an enterprise-ready information retrieval system for your heterogeneous content that you ingest into a search index, and surface to users through queries and apps. It comes with a comprehensive set of advanced search technologies, built for high-performance applications at any scale.
19+
Azure AI Search is a knowledge retrieval platform that consolidates and organizes information across different types of content. You add your content to a search index, then users, agents, and bots can retrieve your content through queries and apps.
20+
The platform provides advanced search features and can handle enterprise workloads. It supports native integration with AI models from Azure OpenAI, Azure AI Foundry, and Azure Machine Learning. You can also connect it to other AI models and tools through an extensibility layer.
21+
22+
You can use Azure AI Search for regular search needs (like searching through catalogs or documents) or for AI-powered search that can have conversations with users and generate answers based on your content.
23+
24+
<!-- Azure AI Search ([formerly known as "Azure Cognitive Search"](whats-new.md#new-service-name)) is an enterprise-ready information retrieval system for your heterogeneous content that you ingest into a search index, and surface to users through queries and apps. It comes with a comprehensive set of advanced search technologies, built for high-performance applications at any scale.
2025
2126
Azure AI Search is the recommended retrieval system for building agent-to-agent (A2A) and RAG-based applications on Azure, with native LLM integrations between Azure OpenAI in Azure AI Foundry Models and Azure Machine Learning, with mechanisms for integrating third-party and open-source models and processes.
2227
23-
Azure AI Search can be used in both traditional and generative search scenarios. Common use cases include catalog or document search, information discovery (data exploration), and retrieval-augmented generation (RAG) for conversational search.
28+
Azure AI Search can be used for both traditional search as well as modern information retrieval. Common use cases include catalog or document search, information discovery (data exploration), and retrieval-augmented generation (RAG) for conversational search.
29+
-->
2430

2531
When you create a search service, you work with the following capabilities:
2632

27-
+ A search engine for [vector search](vector-search-overview.md) and [full text](search-lucene-query-architecture.md) and [hybrid search](hybrid-search-overview.md) over a search index.
28-
+ Rich indexing with the ability to content transformation. This includes [integrated data chunking and vectorization](vector-search-integrated-vectorization.md) for RAG, [lexical analysis](search-analyzers.md) for text, and [optional applied AI](cognitive-search-concept-intro.md) for content extraction and enrichment.
29-
+ Rich query syntax for [vector queries](vector-search-how-to-query.md), text search, [hybrid queries](hybrid-search-how-to-query.md), fuzzy search, autocomplete, geo-search and others.
30-
+ Relevance and query performance tuning with [semantic ranking](semantic-search-overview.md), [scoring profiles](index-add-scoring-profiles.md), [quantization for vector queries](vector-search-how-to-quantization.md), and parameters for controlling query behaviors at runtime.
33+
+ A search engine for [agentic search](search-agentic-retrieval-concept.md), [vector search](vector-search-overview.md), [full text](search-lucene-query-architecture.md), or [hybrid search](hybrid-search-overview.md) over your indexed content.
34+
+ Content processing during indexing, including content generation and transformation. Content processing includes [integrated data chunking and vectorization](vector-search-integrated-vectorization.md) for vector content, [lexical analysis](search-analyzers.md) for text, and [optional applied AI](cognitive-search-concept-intro.md) for content generation and transformation.
35+
+ Extensive query syntax for [agentic queries](search-agentic-retrieval-how-to-retrieve.md), [vector queries](vector-search-how-to-query.md), [text search](search-query-create.md), [hybrid queries](hybrid-search-how-to-query.md), fuzzy search, autocomplete, geo-search, and others.
36+
+ Smart results through [semantic ranking](semantic-search-overview.md), [scoring profiles](index-add-scoring-profiles.md), [quantization for vector queries](vector-search-how-to-quantization.md), and parameters for controlling query behaviors at runtime.
3137
+ Azure scale, security, and reach.
32-
+ Azure integration at the data layer, machine learning layer, Azure AI services and Azure OpenAI.
38+
+ Azure integration at the data layer, machine learning layer, Azure AI services, and Azure OpenAI.
3339

3440
> [!div class="nextstepaction"]
3541
> [Create a search service](search-create-service-portal.md)
@@ -46,7 +52,7 @@ Across the Azure platform, Azure AI Search can integrate with other Azure servic
4652

4753
On the search service itself, the two primary workloads are *indexing* and *querying*.
4854

49-
+ [**Indexing**](search-what-is-an-index.md) is an intake process that loads content into your search service and makes it searchable. Internally, inbound text is processed into tokens and stored in inverted indexes, and inbound vectors are stored in vector indexes. The document format that Azure AI Search can index is JSON. You can upload JSON documents that you've assembled, or use an indexer to retrieve and serialize your data into JSON.
55+
+ [**Indexing**](search-what-is-an-index.md) is an intake process that loads content into your search service and makes it searchable. Internally, inbound text is processed into tokens and stored in inverted indexes, and inbound vectors are stored in vector indexes. The document format that Azure AI Search can index is JSON. You can upload JSON documents, or use an indexer to retrieve and serialize your data into JSON.
5056

5157
[Applied AI](cognitive-search-concept-intro.md) through a [skillset](cognitive-search-working-with-skillsets.md) extends indexing with image and language models. If you have images or large unstructured text in source document, you can attach skills that perform OCR, analyze and describe images, infer structure, translate text, and more. Output is text that can be serialized into JSON and ingested into a search index.
5258

@@ -88,14 +94,25 @@ Functionality is exposed through the Azure portal, simple [REST APIs](/rest/api/
8894

8995
An end-to-end exploration of core search features can be accomplished in four steps:
9096

91-
1. [**Decide on a tier**](search-sku-tier.md) and region. One free search service is allowed per subscription. All quickstarts can be completed on the free tier. For more capacity and capabilities, you'll need a [billable tier](https://azure.microsoft.com/pricing/details/search/).
97+
1. [**Decide on a tier**](search-sku-tier.md) and region. One free search service is allowed per subscription. Most quickstarts can be completed on the free tier. For more capacity and capabilities, you need a [billable tier](https://azure.microsoft.com/pricing/details/search/).
9298

9399
1. [**Create a search service**](search-create-service-portal.md) in the Azure portal.
94100

95101
1. [**Start with Import data wizard**](search-get-started-portal.md). Choose a built-in sample or a supported data source to create, load, and query an index in minutes.
96102

97103
1. [**Finish with Search Explorer**](search-explorer.md), using a portal client to query the search index you just created.
98104

105+
### Check out samples
106+
107+
We maintain an inventory of samples that use the REST APIs and the Azure SDK programming languages supported by Azure AI Search:
108+
109+
+ [REST samples](/azure/search/samples-rest)
110+
+ [Python samples](/azure/search/samples-python)
111+
+ [C# samples](/azure/search/samples-dotnet)
112+
+ [Java samples](/azure/search/samples-java)
113+
+ [JavaScript/TypeScript samples](/azure/search/samples-javascript)
114+
+ [Vector samples](https://github.com/Azure/azure-search-vector-samples)
115+
99116
### Use APIs
100117

101118
Alternatively, you can create, load, and query a search index in atomic steps:
@@ -118,12 +135,12 @@ Or, try solution accelerators:
118135

119136
+ [**Build your own copilot** solution accelerator](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator), leverages Azure OpenAI, Azure AI Search and Microsoft Fabric, to create custom copilot solutions.
120137

121-
+ [Generic copilot](https://github.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator) helps you build your own copilot to identify relevant documents, summarize unstructured information, and generate Word document templates using your own data.
138+
<!-- + [Generic copilot](https://github.com/microsoft/Generic-Build-your-own-copilot-Solution-Accelerator) helps you build your own copilot to identify relevant documents, summarize unstructured information, and generate Word document templates using your own data.
122139
123140
+ [Client Advisor](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator) all-in-one custom copilot empowers Client Advisor to harness the power of generative AI across both structured and unstructured data. Help our customers to optimize daily tasks and foster better interactions with more clients
124141
125142
+ [Research Assistant](https://github.com/microsoft/Build-your-own-copilot-Solution-Accelerator) helps build your own AI Assistant to identify relevant documents, summarize and categorize vast amounts of unstructured information, and accelerate the overall document review and content generation.
126-
143+
-->
127144
> [!TIP]
128145
> For help with complex or custom solutions, [**contact a partner**](https://partner.microsoft.com/partnership/find-a-partner) with deep expertise in Azure AI Search technology.
129146

0 commit comments

Comments
 (0)