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/speller-how-to-add.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@ ms.author: heidist
9
9
ms.service: azure-ai-search
10
10
ms.custom:
11
11
- ignite-2023
12
-
ms.topic: conceptual
13
-
ms.date: 12/10/2024
12
+
ms.topic: how-to
13
+
ms.date: 05/29/2025
14
14
---
15
15
16
16
# Add spell check to queries in Azure AI Search
@@ -32,18 +32,18 @@ Use a search client that supports preview APIs on the query request. You can use
32
32
33
33
| Client library | Versions |
34
34
|----------|----------|
35
-
| REST API | Versions 2020-06-30-Preview and later. We recommend the latest preview API. [2024-05-01-preview](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2024-05-01-preview&preserve-view=true)|
36
-
| Azure SDK for .NET |[version 11.5.0-beta.5](https://www.nuget.org/packages/Azure.Search.Documents/11.5.0-beta.5)|
37
-
| Azure SDK for Java |[version 11.6.0-beta.5](https://central.sonatype.com/artifact/com.azure/azure-search-documents)|
35
+
| REST API | Versions 2020-06-30-Preview and later. We recommend the latest preview API. [2025-05-01-preview](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2025-05-01-preview&preserve-view=true)|
36
+
| Azure SDK for .NET |[version 11.7.0-beta.4](https://www.nuget.org/packages/Azure.Search.Documents/11.7.0-beta.4)|
37
+
| Azure SDK for Java |[version 11.8.0-beta.7](https://central.sonatype.com/artifact/com.azure/azure-search-documents/11.8.0-beta.7)|
38
38
| Azure SDK for JavaScript |[version 11.3.0-beta.8](https://www.npmjs.com/package/@azure/search-documents/v/11.3.0-beta.8)|
39
-
| Azure SDK for Python |[version 11.4.0b3](https://pypi.org/project/azure-search-documents/11.4.0b3/)|
39
+
| Azure SDK for Python |[version 11.6.0b12](https://pypi.org/project/azure-search-documents/11.6.0b12/)|
40
40
41
41
## Spell correction with simple search
42
42
43
43
The following example uses the built-in hotels-sample index to demonstrate spell correction on a simple text query. Without spell correction, the query returns zero results. With correction, the query returns one result for Johnson's family-oriented resort.
44
44
45
45
```http
46
-
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/search?api-version=2024-05-01-preview
46
+
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/search?api-version=2025-05-01-preview
47
47
{
48
48
"search": "famly acitvites",
49
49
"speller": "lexicon",
@@ -64,7 +64,7 @@ Spelling correction occurs on individual query terms that undergo text analysis,
64
64
This example uses fielded search over the Category field, with full Lucene syntax, and a misspelled query term. By including speller, the typo in "Suiite" is corrected and the query succeeds.
65
65
66
66
```http
67
-
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/search?api-version=2024-05-01-preview
67
+
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/search?api-version=2025-05-01-preview
68
68
{
69
69
"search": "Category:(Resort and Spa) OR Category:Suiite",
70
70
"queryType": "full",
@@ -80,7 +80,7 @@ POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/
80
80
This query, with typos in every term except one, undergoes spelling corrections to return relevant results. To learn more, see [Configure semantic ranker](semantic-how-to-query-request.md).
81
81
82
82
```http
83
-
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/search?api-version=2024-05-01-preview
83
+
POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/search?api-version=2025-05-01-preview
84
84
{
85
85
"search": "hisotoric hotell wiht great restrant nad wiifi",
86
86
"queryType": "semantic",
@@ -94,7 +94,7 @@ POST https://[service name].search.windows.net/indexes/hotels-sample-index/docs/
94
94
95
95
## Supported languages
96
96
97
-
Valid values for `queryLanguage` can be found in the following table, copied from the list of [supported languages (REST API reference)](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2024-05-01-preview&tabs=HTTP#querylanguage&preserve-view=true).
97
+
Valid values for `queryLanguage` can be found in the following table, copied from the list of [supported languages (REST API reference)](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2025-05-01-preview&tabs=HTTP#querylanguage&preserve-view=true).
Copy file name to clipboardExpand all lines: articles/search/tutorial-rag-build-solution-models.md
+6-9Lines changed: 6 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,19 @@ ms.author: heidist
8
8
ms.service: azure-ai-search
9
9
ms.topic: tutorial
10
10
ms.custom: references_regions
11
-
ms.date: 12/03/2024
11
+
ms.date: 05/29/2025
12
12
13
13
---
14
14
15
15
# Tutorial: Choose embedding and chat models for RAG in Azure AI Search
16
16
17
-
A RAG solution built on Azure AI Search takes a dependency on embedding models for vectorization, and on chat models for conversational search over your data.
17
+
A RAG solution built on Azure AI Search takes a dependency on embedding models for vectorization, and on chat completion models for conversational search over your data.
18
18
19
19
In this tutorial, you:
20
20
21
21
> [!div class="checklist"]
22
-
> - Learn which models in the Azure cloud work with built-in integration
23
-
> - Learn about the Azure models used for chat
22
+
> - Learn about the Azure models supported for built-in vectorization
23
+
> - Learn about the Azure models supported for chat completion
24
24
> - Deploy models and collect model information for your code
25
25
> - Configure search engine access to Azure models
26
26
> - Learn about custom skills and vectorizers for attaching non-Azure models
@@ -45,12 +45,9 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
45
45
46
46
-[Azure AI Vision regions](/azure/ai-services/computer-vision/overview-image-analysis?tabs=4-0#region-availability)
47
47
48
-
-[Azure AI Foundry](/azure/ai-foundry/reference/region-support) regions.
48
+
-[Azure AI Foundry regions](/azure/ai-foundry/reference/region-support)
49
49
50
-
Azure AI Search is currently facing limited availability in some regions. To confirm region status, check the [Azure AI Search region list](search-region-support.md).
51
-
52
-
> [!TIP]
53
-
> Check [this article](search-create-service-portal.md#regions-with-the-most-overlap) for a list of overlapping regions.
50
+
-[Azure AI Search regions](search-region-support.md)
0 commit comments