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
:::image type="content" source="./media/view-recommendations/configuration.png" alt-text="Screenshot of Azure Advisor showing configuration pane.":::
23
23
24
24
1. Check the box in the **Include** column for any subscriptions or resource groups to receive Advisor recommendations. If the box is disabled, you may not have permission to make a configuration change on that subscription or resource group. Learn more about [permissions in Azure Advisor](permissions.md).
25
25
26
26
1. Click **Apply** at the bottom after you make a change.
27
27
28
28
## Filtering your view in the Azure portal
29
29
30
-
Configuration settings remain active until changed. If you want to limit the view of recommendations for a single viewing, you can use the drop downs provided at the top of the Advisor panel. From the Overview, High Availability, Security, Performance, Cost, and All Recommendation panels, you can select the Subscriptions, Resource Types, and recommendation status that you want to see.
30
+
Configuration settings remain active until changed. If you want to limit the view of recommendations for a single viewing, you can use the drop downs provided at the top of the Advisor panel. You can filter recommendations by subscription, resource group, workload, resource type, recommendation status and impact. These filters are available for Overview, Score, Cost, Security, Reliability, Operational Excellence, Performance and All Recommendations pages.
31
31
32
32
:::image type="content" source="./media/view-recommendations/filtering.png" alt-text="Screenshot of Azure Advisor showing filtering options.":::
33
33
34
+
> [!NOTE]
35
+
> Contact your account team to add new workloads to the workload filter or edit workload names.
36
+
34
37
## Dismissing and postponing recommendations
35
38
36
39
Azure Advisor allows you to dismiss or postpone recommendations on a single resource. If you dismiss a recommendation, you do not see it again unless you manually activate it. However, postponing a recommendation allows you to specify a duration after which the recommendation is automatically activated again. Postponing can be done in the Azure portal or programmatically.
@@ -44,7 +47,7 @@ Azure Advisor allows you to dismiss or postpone recommendations on a single reso
44
47
45
48
:::image type="content" source="./media/view-recommendations/postpone-dismiss.png" alt-text="Screenshot of the Use Managed Disks window showing the select column and Postpone and Dismiss actions for a single recommendation highlighted.":::
46
49
47
-
### Postpone or dismiss a multiple recommendations in the Azure portal
50
+
### Postpone or dismiss multiple recommendations in the Azure portal
48
51
49
52
1. Open [Azure Advisor](https://aka.ms/azureadvisordashboard) in the Azure portal.
50
53
1. Select a recommendation category to view your recommendations.
Copy file name to clipboardExpand all lines: articles/ai-services/language-service/custom-text-classification/includes/roles-for-resource-and-storage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,5 +38,5 @@ Use the following steps to set the required roles for your Language resource and
38
38
5. Select **Select members**
39
39
6. Select your subscription, and **Language** as the managed identity. You can search for user names in the **Select** field.
40
40
41
-
> ![IMPORTANT]
41
+
> [!IMPORTANT]
42
42
> If you have a virtual network or private endpoint, be sure to select **Allow Azure services on the trusted services list to access this storage account** in the Azure portal.
Copy file name to clipboardExpand all lines: articles/ai-services/openai/concepts/use-your-data.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -161,7 +161,7 @@ Mapping these fields correctly helps ensure the model has better response and ci
161
161
After ingesting your data, you can start chatting with the model on your data using the chat playground in Azure OpenAI studio, or the following methods:
Copy file name to clipboardExpand all lines: articles/ai-services/openai/how-to/gpt-with-vision.md
+9-28Lines changed: 9 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,10 +101,7 @@ The API response should look like the following.
101
101
],
102
102
"choices": [
103
103
{
104
-
"finish_details": {
105
-
"type": "stop",
106
-
"stop": "<|fim_suffix|>"
107
-
},
104
+
"finish_reason":"stop",
108
105
"index": 0,
109
106
"message": {
110
107
"role": "assistant",
@@ -138,13 +135,11 @@ The API response should look like the following.
138
135
}
139
136
```
140
137
141
-
Every response includes a `"finish_details"` field. The subfield `"type"` has the following possible values:
138
+
Every response includes a `"finish_reason"` field. It has the following possible values:
142
139
-`stop`: API returned complete model output.
143
-
-`max_tokens`: Incomplete model output due to the `max_tokens` input parameter or model's token limit.
140
+
-`length`: Incomplete model output due to the `max_tokens` input parameter or model's token limit.
144
141
-`content_filter`: Omitted content due to a flag from our content filters.
145
142
146
-
If `finish_details.type` is `stop`, then there is another `"stop"` property that specifies the token that caused the output to end.
147
-
148
143
## Detail parameter settings in image processing: Low, High, Auto
149
144
150
145
The detail parameter in the model offers three choices: `low`, `high`, or `auto`, to adjust the way the model interprets and processes images. The default setting is auto, where the model decides between low or high based on the size of the image input.
@@ -239,11 +234,7 @@ The chat responses you receive from the model should now include enhanced inform
239
234
"choices":
240
235
[
241
236
{
242
-
"finish_details":
243
-
{
244
-
"type": "stop",
245
-
"stop": "<|fim_suffix|>"
246
-
},
237
+
"finish_reason":"stop",
247
238
"index": 0,
248
239
"message":
249
240
{
@@ -283,13 +274,11 @@ The chat responses you receive from the model should now include enhanced inform
283
274
}
284
275
```
285
276
286
-
Every response includes a `"finish_details"` field. The subfield `"type"` has the following possible values:
277
+
Every response includes a `"finish_reason"` field. It has the following possible values:
287
278
-`stop`: API returned complete model output.
288
-
-`max_tokens`: Incomplete model output due to the `max_tokens` input parameter or model's token limit.
279
+
-`length`: Incomplete model output due to the `max_tokens` input parameter or model's token limit.
289
280
-`content_filter`: Omitted content due to a flag from our content filters.
290
281
291
-
If `finish_details.type` is `stop`, then there is another `"stop"` property that specifies the token that caused the output to end.
292
-
293
282
## Use Vision enhancement with video
294
283
295
284
GPT-4 Turbo with Vision provides exclusive access to Azure AI Services tailored enhancements. The **video prompt** integration uses Azure AI Vision video retrieval to sample a set of frames from a video and create a transcript of the speech in the video. It enables the AI model to give summaries and answers about video content.
@@ -324,8 +313,6 @@ Follow these steps to set up a video retrieval system and integrate it with your
@@ -379,11 +366,7 @@ The chat responses you receive from the model should include information about t
379
366
"choices":
380
367
[
381
368
{
382
-
"finish_details":
383
-
{
384
-
"type": "stop",
385
-
"stop": "<|fim_suffix|>"
386
-
},
369
+
"finish_reason":"stop",
387
370
"index": 0,
388
371
"message":
389
372
{
@@ -401,13 +384,11 @@ The chat responses you receive from the model should include information about t
401
384
}
402
385
```
403
386
404
-
Every response includes a `"finish_details"` field. The subfield `"type"` has the following possible values:
387
+
Every response includes a `"finish_reason"` field. It has the following possible values:
405
388
-`stop`: API returned complete model output.
406
-
-`max_tokens`: Incomplete model output due to the `max_tokens` input parameter or model's token limit.
389
+
-`length`: Incomplete model output due to the `max_tokens` input parameter or model's token limit.
407
390
-`content_filter`: Omitted content due to a flag from our content filters.
408
391
409
-
If `finish_details.type` is `stop`, then there is another `"stop"` property that specifies the token that caused the output to end.
410
-
411
392
### Pricing example for Video prompts
412
393
The pricing for GPT-4 Turbo with Vision is dynamic and depends on the specific features and inputs used. For a comprehensive view of Azure OpenAI pricing see [Azure OpenAI Pricing](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/).
Copy file name to clipboardExpand all lines: articles/ai-services/policy-reference.md
+1-1Lines changed: 1 addition & 1 deletion
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: Built-in policy definitions for Azure AI services
3
3
description: Lists Azure Policy built-in policy definitions for Azure AI services. These built-in policy definitions provide common approaches to managing your Azure resources.
Copy file name to clipboardExpand all lines: articles/aks/policy-reference.md
+1-1Lines changed: 1 addition & 1 deletion
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: Built-in policy definitions for Azure Kubernetes Service
3
3
description: Lists Azure Policy built-in policy definitions for Azure Kubernetes Service. These built-in policy definitions provide common approaches to managing your Azure resources.
Copy file name to clipboardExpand all lines: articles/api-management/policy-reference.md
+1-1Lines changed: 1 addition & 1 deletion
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: Built-in policy definitions for Azure API Management
3
3
description: Lists Azure Policy built-in policy definitions for Azure API Management. These built-in policy definitions provide approaches to managing your Azure resources.
0 commit comments