Skip to content

Commit 87379f5

Browse files
authored
Merge pull request #221180 from mrbullwinkle/mrb_12_12_2022_openai_whats_new
[Cognitive Services] [Azure OpenAI] What's new
2 parents 00b7fcf + 25e8e3d commit 87379f5

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed

articles/cognitive-services/openai/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ items:
1010
href: quotas-limits.md
1111
- name: Pricing
1212
href: https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/
13+
- name: What's new
14+
href: whats-new.md
1315
- name: Quickstarts
1416
href: quickstart.md
1517
- name: Concepts
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
---
2+
title: What's new in Azure OpenAI?
3+
titleSuffix: Azure Cognitive Services
4+
description: Learn about the latest news and features updates for Azure OpenAI
5+
manager: nitinme
6+
author: mrbullwinkle
7+
ms.author: mbullwin
8+
ms.service: cognitive-services
9+
ms.subservice: openai
10+
ms.topic: overview
11+
ms.date: 12/14/2022
12+
recommendations: false
13+
keywords:
14+
---
15+
16+
# What's new in Azure OpenAI
17+
18+
## December 2022 - Azure OpenAI General Availability (GA)
19+
20+
### New features
21+
22+
* **The latest models from OpenAI.** Azure OpenAI provides access to all the latest models including the GPT-3.5 series​.
23+
24+
* **New API version (2022-12-01).** This update includes several requested enhancements including token usage information in the API response, improved error messages for files, alignment with OpenAI on fine-tuning creation data structure, and support for the suffix parameter to allow custom naming of fine-tuned jobs. ​
25+
26+
* **Higher request per second limits.** 50 for non-Davinci models. 20 for Davinci models.​
27+
28+
* **Faster fine-tune deployments.** Deploy an Ada and Curie fine-tuned models in under 10 minutes.​
29+
30+
* **Higher training limits:** 40M training tokens for Ada, Babbage, and Curie. 10M for Davinci.​
31+
32+
* **Process for requesting modifications to the abuse & miss-use data logging & human review.** Today, the service logs request/response data for the purposes of abuse and misuse detection to ensure that these powerful models aren't abused. However, many customers have strict data privacy and security requirements that require greater control over their data. To support these use cases, we're releasing a new process for customers to modify the content filtering policies or turn off the abuse logging for low-risk use cases. This process follows the established Limited Access process within Azure Cognitive Services and [existing OpenAI customers can apply here](https://aka.ms/oai/modifiedaccess).​
33+
34+
* **Customer managed key (CMK) encryption.** CMK provides customers greater control over managing their data in the Azure OpenAI Service by providing their own encryption keys used for storing training data and customized models. Customer-managed keys (CMK), also known as bring your own key (BYOK), offer greater flexibility to create, rotate, disable, and revoke access controls. You can also audit the encryption keys used to protect your data. [Learn more from our encryption at rest documentation](encrypt-data-at-rest.md).
35+
36+
* **Lockbox support**
37+
38+
* **SOC-2 compliance**
39+
40+
* **Logging and diagnostics** through Azure Resource Health, Cost Analysis, and Metrics & Diagnostic settings​.
41+
42+
* **Studio improvements.** Numerous usability improvements to the Studio workflow including Azure AD role support to control who in the team has access to create fine-tuned models and deploy.
43+
44+
### Changes (breaking)
45+
46+
**Fine-tuning** create API request has been updated to match OpenAI’s schema.
47+
48+
**Preview API versions:**
49+
50+
```json
51+
{
52+
"training_file": "file-XGinujblHPwGLSztz8cPS8XY" ,
53+
"hyperparams": {
54+
"batch_size": 4,
55+
"learning_rate_multiplier": 0.1,
56+
"n_epochs": 4,
57+
"prompt_loss_weight": 0.1,
58+
}
59+
}
60+
```
61+
62+
**GA API 2022-12-01:**
63+
64+
```json
65+
{
66+
"training_file": "file-XGinujblHPwGLSztz8cPS8XY" ,
67+
"batch_size": 4,
68+
“learning_rate_multiplier": 0.1,​
69+
"n_epochs": 4,
70+
"prompt_loss_weight": 0.1,
71+
}
72+
```
73+
74+
**Content filtering is temporarily off** by default. Azure content moderation works differently than OpenAI. Azure OpenAI runs content filters during the generation call to detect harmful or abusive content and filters them from the response. [Learn More​](./concepts/content-filter.md)
75+
76+
​These models will be re-enabled in Q1 2023 and be on by default. ​
77+
78+
**Customer actions**
79+
80+
* [Contact Azure Support](https://portal.azure.com/#view/Microsoft_Azure_Support/HelpAndSupportBlade/~/overview) if you would like these turned on for your subscription​.
81+
* [Apply for filtering modifications](https://aka.ms/oai/modifiedaccess), if you would like to have them remain off. (This option will be for low-risk use cases only.)​
82+
83+
## Next steps
84+
85+
Learn more about the [underlying models that power Azure OpenAI](./concepts/models.md).

0 commit comments

Comments
 (0)