You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/search-api-migration.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,10 @@ Use this article to migrate data plane calls to newer *stable* versions of the [
19
19
20
20
+[**2023-11-01**](/rest/api/searchservice/search-service-api-versions#2023-11-01) is the most recent stable version. Semantic ranking and vector search support are generally available in this version.
21
21
22
-
+[**2023-10-01-preview**](/rest/api/searchservice/search-service-api-versions#2023-10-01-preview) is the most recent preview version. [Integrated data chunking and vectorization](vector-search-integrated-vectorization.md) using the [Text Split](cognitive-search-skill-textsplit.md) skill and [Azure OpenAI Embedding](cognitive-search-skill-azure-openai-embedding.md) skill are introduced in this version. There's no migration guidance for preview API versions, but you can review [code samples](https://github.com/Azure/azure-search-vector-samples) and [walkthroughs](vector-search-how-to-configure-vectorizer.md) for guidance.
22
+
+[**2023-10-01-preview**](/rest/api/searchservice/search-service-api-versions#2023-10-01-preview) is the most recent preview version. [Integrated data chunking and vectorization](vector-search-integrated-vectorization.md) using the [Text Split](cognitive-search-skill-textsplit.md) skill and [Azure OpenAI Embedding](cognitive-search-skill-azure-openai-embedding.md) skill are introduced in this version. *There's no migration guidance for preview API versions*, but you can review [code samples](https://github.com/Azure/azure-search-vector-samples) and [walkthroughs](vector-search-how-to-configure-vectorizer.md) for help with new features.
23
23
24
24
> [!NOTE]
25
-
> API reference docs are now versioned. To get the right information, open a reference page and then apply the version-specific filter located above the table of contents.
25
+
> API reference docs are now versioned. To get the right content, open a reference page and then apply the version-specific filter located above the table of contents.
26
26
27
27
<aname="UpgradeSteps"></a>
28
28
@@ -49,7 +49,7 @@ This version has breaking changes and behavioral differences for semantic rankin
49
49
If you added vector support using 2023-10-01-preview, there are no breaking changes, but there's one behavior difference: the `vectorFilterMode` default changed from postfilter to prefilter for [filter expressions](vector-search-filters.md). The default is prefilter for indexes created after 2023-10-01. Indexes created before that date only support postfilter, regardless of how you set the filter mode.
50
50
51
51
> [!TIP]
52
-
> Azure portal supports a one-click upgrade path for 2023-07-01-preview indexes. The portal detects that version and provides a **Migrate** button. Before selecting **Migrate**, select **Edit JSON** to review the updated schema first. You should find a schema that conforms to the changes described in this section. Portal migration only handles indexes with one vector field. Indexes with more fields require manual migration.
52
+
> Azure portal supports a one-click upgrade path for 2023-07-01-preview indexes. The portal detects 2023-07-01-preview indexes and provides a **Migrate** button. Before selecting **Migrate**, select **Edit JSON** to review the updated schema first. You should find a schema that conforms to the changes described in this section. Portal migration only handles indexes with one vector search algorithm configuration, creating a default profile that maps to the algorithm. Indexes with multiple configurations require manual migration.
53
53
54
54
Here are the steps for migrating from 2023-07-01-preview:
55
55
@@ -104,7 +104,7 @@ Here are the steps for migrating from 2023-07-01-preview:
104
104
}
105
105
```
106
106
107
-
1. Modify vector field definitions, replacing `vectorSearchConfiguration` with `vectorSearchProfile`. Other vector field properties remain unchanged. For example, they can't be filterable, sortable, or facetable, nor use analyzers or normalizers or synonym maps.
107
+
1. Modify vector field definitions, replacing `vectorSearchConfiguration` with `vectorSearchProfile`. Make sure the profile name resolves to a new vector profile definition, and not the algorithm configuration name. Other vector field properties remain unchanged. For example, they can't be filterable, sortable, or facetable, nor use analyzers or normalizers or synonym maps.
108
108
109
109
**Before (2023-07-01-preview)**:
110
110
@@ -220,7 +220,7 @@ Existing code written against earlier API versions will break on api-version=202
220
220
221
221
### Behavior changes
222
222
223
-
* [BM25 ranking algorithm](index-ranking-similarity.md) replaces the previous ranking algorithm with newer technology. New services use this algorithm automatically. For existing services, you must set parameters to use the new algorithm.
223
+
* [BM25 ranking algorithm](index-ranking-similarity.md) replaces the previous ranking algorithm with newer technology. Services created after 2019 use this algorithm automatically. For older services, you must set parameters to use the new algorithm.
224
224
225
225
* Ordered results for null values have changed in this version, with null values appearing first if the sort is `asc` and last if the sort is `desc`. If you wrote code to handle how null values are sorted, be aware of this change.
Copy file name to clipboardExpand all lines: articles/search/search-what-is-azure-search.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Introduction to Azure AI Search
3
3
titleSuffix: Azure AI Search
4
-
description: Azure AI Search is a fully managed cloud search service from Microsoft. Learn about use cases, the development workflow, comparisons to other Microsoft search products, and how to get started.
4
+
description: Azure AI Search is an AI-powered information retrieval platform, helps developers build rich search experiences and generative AI apps that combine large language models with enterprise data.
5
5
6
6
manager: nitinme
7
7
author: HeidiSteen
@@ -21,9 +21,9 @@ Azure AI Search ([formerly known as "Azure Cognitive Search"](whats-new.md#new-s
21
21
22
22
Information retrieval is foundational to any app that surfaces text and vectors. Common scenarios include catalog or document search, data exploration, and increasingly chat-style copilot apps over proprietary grounding data. When you create a search service, you work with the following capabilities:
23
23
24
-
+ A search engine for [full text](search-lucene-query-architecture.md) and [vector search](vector-search-overview.md) over a search index
24
+
+ 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
25
25
+ Rich indexing with [integrated data chunking and vectorization (preview)](vector-search-integrated-vectorization.md), [lexical analysis](search-analyzers.md) for text, and [optional AI enrichment](cognitive-search-concept-intro.md) for content extraction and transformation
26
-
+ Rich query syntax for [vector queries](vector-search-how-to-query.md), text search, [hybrid search](hybrid-search-overview.md), fuzzy search, autocomplete, geo-search and others
26
+
+ 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
27
27
+ Azure scale, security, and reach
28
28
+ Azure integration at the data layer, machine learning layer, Azure AI services and Azure OpenAI
29
29
@@ -54,9 +54,9 @@ On the search service itself, the two primary workloads are *indexing* and *quer
54
54
55
55
Azure AI Search is well suited for the following application scenarios:
56
56
57
-
+Search over your vector and text content. You own or control what's searchable.
57
+
+Use it for traditional full text search and next-generation vector similarity search. Back your generative AI apps with information retrieval that leverages the strength of keyword and similarity search. Use both modalities to retrieve the most relevant results.
58
58
59
-
+ Consolidate heterogeneous content into a user-defined and populated search index composed of vectors and text.
59
+
+ Consolidate heterogeneous content into a user-defined and populated search index composed of vectors and text. You own and control what's searchable.
60
60
61
61
+[Integrate data chunking and vectorization](vector-search-integrated-vectorization.md) for generative AI and RAG apps.
62
62
@@ -110,6 +110,9 @@ Customers often ask how Azure AI Search compares with other search-related solut
110
110
111
111
Key strengths include:
112
112
113
+
+ Store, index, and search vector embeddings for sentences, images, audio, graphs, and more.
114
+
+ Find information that’s semantically similar to search queries, even if the search terms aren’t exact matches.
115
+
+ Use hybrid search for the best of keyword and vector search.
113
116
+ Relevance tuning through semantic ranking and scoring profiles.
114
117
+ Data integration (crawlers) at the indexing layer.
115
118
+ Azure AI integration for transformations that make content text and vector searchable.
0 commit comments