Skip to content

Commit 9442d41

Browse files
Merge pull request #260049 from HeidiSteen/heidist-fix
[azure search] Catching up on PR feedback
2 parents 18f2037 + c2e4c6c commit 9442d41

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed

articles/search/search-api-migration.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ Use this article to migrate data plane calls to newer *stable* versions of the [
1919

2020
+ [**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.
2121

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.
2323

2424
> [!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.
2626
2727
<a name="UpgradeSteps"></a>
2828

@@ -49,7 +49,7 @@ This version has breaking changes and behavioral differences for semantic rankin
4949
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.
5050

5151
> [!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.
5353
5454
Here are the steps for migrating from 2023-07-01-preview:
5555

@@ -104,7 +104,7 @@ Here are the steps for migrating from 2023-07-01-preview:
104104
}
105105
```
106106
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.
108108
109109
**Before (2023-07-01-preview)**:
110110
@@ -220,7 +220,7 @@ Existing code written against earlier API versions will break on api-version=202
220220
221221
### Behavior changes
222222
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.
224224
225225
* 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.
226226

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

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Introduction to Azure AI Search
33
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.
55

66
manager: nitinme
77
author: HeidiSteen
@@ -21,9 +21,9 @@ Azure AI Search ([formerly known as "Azure Cognitive Search"](whats-new.md#new-s
2121

2222
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:
2323

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
2525
+ 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
2727
+ Azure scale, security, and reach
2828
+ Azure integration at the data layer, machine learning layer, Azure AI services and Azure OpenAI
2929

@@ -54,9 +54,9 @@ On the search service itself, the two primary workloads are *indexing* and *quer
5454

5555
Azure AI Search is well suited for the following application scenarios:
5656

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.
5858

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.
6060

6161
+ [Integrate data chunking and vectorization](vector-search-integrated-vectorization.md) for generative AI and RAG apps.
6262

@@ -110,6 +110,9 @@ Customers often ask how Azure AI Search compares with other search-related solut
110110

111111
Key strengths include:
112112

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.
113116
+ Relevance tuning through semantic ranking and scoring profiles.
114117
+ Data integration (crawlers) at the indexing layer.
115118
+ Azure AI integration for transformations that make content text and vector searchable.

0 commit comments

Comments
 (0)