Skip to content

Commit bd55dc7

Browse files
Merge pull request #2550 from HeidiSteen/heidist-semantic
[azure search] Semantic ranker on by default
2 parents d8ff8ba + 37371c4 commit bd55dc7

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

articles/search/hybrid-search-how-to-query.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ POST https://{{search-service-name}}.search.windows.net/indexes/{{index-name}}/d
226226

227227
## Semantic hybrid search
228228

229-
Assuming that you [enabled semantic ranker](semantic-how-to-enable-disable.md) and your index definition includes a [semantic configuration](semantic-how-to-query-request.md), you can formulate a query that includes vector search and keyword search, with semantic ranking over the merged result set. Optionally, you can add captions and answers.
229+
Assuming that you [have semantic ranker](semantic-how-to-enable-disable.md) and your index definition includes a [semantic configuration](semantic-how-to-query-request.md), you can formulate a query that includes vector search and keyword search, with semantic ranking over the merged result set. Optionally, you can add captions and answers.
230230

231231
Whenever you use semantic ranking with vectors, make sure `k` is set to 50. Semantic ranker uses up to 50 matches as input. Specifying less than 50 deprives the semantic ranking models of necessary inputs.
232232

articles/search/search-manage-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ PATCH https://management.azure.com/subscriptions/{{subscriptionId}}/resourcegrou
229229

230230
## Disable semantic ranker
231231

232-
Although [semantic ranker isn't enabled](semantic-how-to-enable-disable.md) by default, you could lock down the feature at the service level for greater certainty it can't be used.
232+
[Semantic ranker is enabled](semantic-how-to-enable-disable.md) by default at the free plan that allows up to 1,000 requests per month at no charge. You can lock down the feature at the service level to prevent usage.
233233

234234
```http
235235
### disable semantic ranker

articles/search/search-manage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ Internally, Microsoft collects telemetry data about your service and the platfor
109109
110110
### Enable semantic ranker
111111

112-
Semantic ranker is free for the first 1,000 requests per month, but you must opt in to get the free quota.
112+
Semantic ranker is free for the first 1,000 requests per month. It's enabled by default on newer services.
113113

114114
In Azure portal, under **Settings** on the leftmost pane, select **Semantic ranker** and then choose the Free plan. For more information, see [Enable semantic ranker](semantic-how-to-enable-disable.md).
115115

articles/search/semantic-how-to-enable-disable.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ ms.service: azure-ai-search
1010
ms.custom:
1111
- ignite-2023
1212
ms.topic: how-to
13-
ms.date: 12/10/2024
13+
ms.date: 01/28/2025
1414
---
1515

1616
# Enable or disable semantic ranker
1717

18-
Semantic ranker is a premium feature billed by usage. By default, semantic ranker is turned off when you create a new search service, but anyone with *Contributor* permissions can enable it. If you don't want anyone enabling it inadvertently, you can [disable it service-wide using the management REST API](#disable-semantic-ranker-using-the-rest-api).
18+
Semantic ranker is a premium feature billed by usage. By default, semantic ranker is turned on when you create a new billable search service, but anyone with *Contributor* permissions can disable it or change the billing plan. If you don't want anyone to use the feature, you can [disable it service-wide using the management REST API](#disable-semantic-ranker-using-the-rest-api).
1919

2020
## Check availability
2121

2222
To check if semantic ranker is available in your region, see the [Azure AI Search regions list](search-region-support.md).
2323

2424
## Enable semantic ranker
2525

26-
Follow these steps to enable [semantic ranker](semantic-search-overview.md) at the service level. Once enabled, it's available to all indexes. You can't turn it on or off for specific indexes.
26+
Semantic ranker might not be enabled on older services. Follow these steps to enable [semantic ranker](semantic-search-overview.md) at the service level. Once enabled, it's available to all indexes. You can't turn it on or off for specific indexes.
2727

2828
### [**Azure portal**](#tab/enable-portal)
2929

@@ -33,11 +33,11 @@ Follow these steps to enable [semantic ranker](semantic-search-overview.md) at t
3333

3434
1. On the left-navigation pane, select **Settings** > **Semantic ranker**.
3535

36-
1. Select either the **Free plan** or the **Standard plan**. You can switch between the free plan and the standard plan at any time.
36+
1. Select either the **Free plan** (default) or the **Standard plan**. You can switch between the free plan and the standard plan at any time.
3737

3838
:::image type="content" source="media/semantic-search-overview/semantic-search-billing.png" alt-text="Screenshot of enabling semantic ranking in the Azure portal." border="true":::
3939

40-
The free plan is capped at 1,000 queries per month. After the first 1,000 queries in the free plan, an error message indicates you exhausted your quota on the next semantic query. When quota is exhausted, you should upgrade to the standard plan to continue using semantic ranking.
40+
The free plan is capped at 1,000 queries per month. After the first 1,000 queries in the free plan, an error message indicates you exhausted your quota on the next semantic query. When quota is exhausted, you can upgrade to the standard plan to continue using semantic ranking.
4141

4242
### [**REST**](#tab/enable-rest)
4343

articles/search/semantic-search-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ The following video provides an overview of the capabilities.
129129

130130
Semantic ranker is available on search services at the Basic and higher tiers, subject to [regional availability](search-region-support.md).
131131

132-
When you enable semantic ranker, choose a pricing plan for the feature:
132+
When you configure semantic ranker, choose a pricing plan for the feature:
133133

134134
* At lower query volumes (under 1,000 monthly), semantic ranking is free.
135135
* At higher query volumes, choose the standard pricing plan.
@@ -144,7 +144,7 @@ Charges for semantic ranker are levied when query requests include `queryType=se
144144

145145
1. [Sign in to Azure portal](https://portal.azure.com) to verify your search service is Basic or higher.
146146

147-
1. [Enable semantic ranker and choose a pricing plan](semantic-how-to-enable-disable.md).
147+
1. [Configure semantic ranker for the search service, choosing a pricing plan](semantic-how-to-enable-disable.md).
148148

149149
1. [Configure semantic ranker in a search index](semantic-how-to-configure.md).
150150

0 commit comments

Comments
 (0)