Skip to content

Commit 0338307

Browse files
committed
Merge branch 'main' of https://github.com/MicrosoftDocs/azure-docs-pr into lbback
2 parents 6337125 + 5212e31 commit 0338307

84 files changed

Lines changed: 34567 additions & 34029 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openpublishing.redirection.active-directory.json

Lines changed: 33248 additions & 32724 deletions
Large diffs are not rendered by default.

.openpublishing.redirection.defender-for-cloud.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -914,6 +914,11 @@
914914
"source_path_from_root": "/articles/defender-for-cloud/tutorial-security-incident.md",
915915
"redirect_url": "/azure/defender-for-cloud/managing-and-responding-alerts",
916916
"redirect_document_id": true
917+
},
918+
{
919+
"source_path_from_root": "/articles/defender-for-cloud/how-to-migrate-to-built-in.md",
920+
"redirect_url": "/azure/defender-for-cloud/how-to-transition-to-built-in",
921+
"redirect_document_id": true
917922
}
918923
]
919924
}

.openpublishing.redirection.json

Lines changed: 2 additions & 525 deletions
Large diffs are not rendered by default.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
title: Azure OpenAI Service API version retirement
3+
description: Learn more about API version retirement in Azure OpenAI Services
4+
services: cognitive-services
5+
manager: nitinme
6+
ms.service: azure-ai-openai
7+
ms.topic: conceptual
8+
ms.date: 01/08/2024
9+
author: mrbullwinkle
10+
ms.author: mbullwin
11+
recommendations: false
12+
ms.custom:
13+
---
14+
15+
# Azure OpenAI API preview lifecycle
16+
17+
This article is to help you understand the support lifecycle for the Azure OpenAI API previews.
18+
19+
## Latest preview API release
20+
21+
Azure OpenAI API version 2023-12-01-preview is currently the latest preview release.
22+
23+
This version contains support for all the latest Azure OpenAI features including:
24+
25+
- [Fine-tuning](./how-to/fine-tuning.md) `gpt-35-turbo`, `babbage-002`, and `davinci-002` models.[**Added in 2023-10-01-preview**]
26+
- [Whisper](./whisper-quickstart.md). [**Added in 2023-09-01-preview**]
27+
- [Function calling](./how-to/function-calling.md) [**Added in 2023-07-01-preview**]
28+
- [DALL-E](./dall-e-quickstart.md) [**Added in 2023-06-01-preview**]
29+
- [Retrieval augmented generation with the on your data feature](./use-your-data-quickstart.md). [**Added in 2023-06-01-preview**]
30+
31+
## Retiring soon
32+
33+
On April 2, 2024 the following API preview releases will be retired and will stop accepting API requests:
34+
35+
- 2023-03-15-preview
36+
- 2023-06-01-preview
37+
- 2023-07-01-preview
38+
- 2023-08-01-preview
39+
40+
To avoid service disruptions, you must update to use the latest preview version prior to the retirement date.
41+
42+
## Updating API versions
43+
44+
We recommend first testing the upgrade to new API versions to confirm there is no impact to your application from the API update prior to making the change globally across your environment.
45+
46+
If you are using the OpenAI Python client library or the REST API, you will need to update your code directly to the latest preview API version.
47+
48+
If you are using one of the Azure OpenAI SDKs for C#, Go, Java, or JavaScript you will instead need to update to the latest version of the SDK. Each SDK release is hardcoded to work with specific versions of the Azure OpenAI API.
49+
50+
## Next steps
51+
52+
- [Learn more about Azure OpenAI](overview.md)
53+
- [Learn about working with Azure OpenAI models](./how-to/working-with-models.md)

articles/ai-services/openai/how-to/function-calling.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ To force the model to call a specific function set the `tool_choice` parameter w
5151
> The default behavior (`tool_choice: "auto"`) is for the model to decide on its own whether to call a function and if so which function to call.
5252
5353
```python
54+
import os
5455
from openai import AzureOpenAI
5556
import json
5657

@@ -60,8 +61,6 @@ client = AzureOpenAI(
6061
api_version="2023-12-01-preview"
6162
)
6263

63-
from openai import OpenAI
64-
import json
6564

6665
# Example function hard coded to return the same weather
6766
# In production, this could be your backend API or an external API

articles/ai-services/openai/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ items:
6565
href: ./concepts/use-your-image-data.md
6666
- name: How-to
6767
items:
68+
- name: API version lifecycle
69+
href: ./api-version-deprecation.md
6870
- name: Completions & chat completions
6971
items:
7072
- name: GPT-35-Turbo & GPT-4

articles/ai-services/speech-service/personal-voice-how-to-use.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Here's example SSML in a request for text to speech with the voice name and the
2929

3030
```xml
3131
<speak version='1.0' xmlns='http://www.w3.org/2001/10/synthesis' xmlns:mstts='http://www.w3.org/2001/mstts' xml:lang='en-US'>
32-
<voice xml:lang='en-US' xml:gender='Male' name='PhoenixV2Neural'>
32+
<voice name='PhoenixV2Neural'>
3333
<mstts:ttsembedding speakerProfileId='your speaker profile ID here'>
3434
I'm happy to hear that you find me amazing and that I have made your trip planning easier and more fun. 我很高兴听到你觉得我很了不起,我让你的旅行计划更轻松、更有趣。Je suis heureux d'apprendre que vous me trouvez incroyable et que j'ai rendu la planification de votre voyage plus facile et plus amusante.
3535
</mstts:ttsembedding>

articles/ai-studio/concepts/ai-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom:
88
- ignite-2023
99
ms.topic: conceptual
1010
ms.date: 12/14/2023
11-
ms.reviewer: eur
11+
ms.reviewer: Blackmist
1212
ms.author: eur
1313
author: eric-urban
1414
---

articles/ai-studio/how-to/connections-add.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.custom:
88
- ignite-2023
99
ms.topic: how-to
1010
ms.date: 11/15/2023
11-
ms.reviewer: eur
11+
ms.reviewer: Blackmist
1212
ms.author: eur
1313
author: eric-urban
1414
---

articles/ai-studio/how-to/deploy-models-llama.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ Each time a project subscribes to a given offer from the Azure Marketplace, a ne
440440

441441
:::image type="content" source="../media/cost-management/marketplace/costs-model-as-service-cost-details.png" alt-text="A screenshot showing different resources corresponding to different model offers and their associated meters." lightbox="../media/cost-management/marketplace/costs-model-as-service-cost-details.png":::
442442

443-
Quota is managed per deployment. Each deployment has a rate limit of 20,000 tokens per minute. However, we currently limit one deployment per model per project. Contact Microsoft Azure Support if the current rate limits dont suffice your scenarios.
443+
Quota is managed per deployment. Each deployment has a rate limit of 200,000 tokens per minute and 1,000 API requests per minute. However, we currently limit one deployment per model per project. Contact Microsoft Azure Support if the current rate limits don't suffice your scenarios.
444444

445445
### Considerations for Llama 2 models deployed as real-time endpoints
446446

0 commit comments

Comments
 (0)