Skip to content

Commit 9971fc8

Browse files
authored
Azure OpenAI 2.2.0-beta.4 release prep (#48984)
* Azure OpenAI 2.2.0-beta.4 release prep * test update for constructor/property pattern change * changelog fixes * changelog section alignment * include a tactical fix for reported issue with AzureOpenAIFile
1 parent ad3421a commit 9971fc8

File tree

282 files changed

+8886
-9095
lines changed

Some content is hidden

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

282 files changed

+8886
-9095
lines changed

eng/Packages.Data.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
</ItemGroup>
189189

190190
<ItemGroup Condition="$(MSBuildProjectName.StartsWith('Azure.AI.OpenAI'))">
191-
<PackageReference Update="OpenAI" Version="2.2.0-beta.2" />
191+
<PackageReference Update="OpenAI" Version="2.2.0-beta.4" />
192192
</ItemGroup>
193193

194194
<ItemGroup Condition="$(MSBuildProjectName.StartsWith('Azure.Developer.MicrosoftPlaywrightTesting'))">

sdk/openai/Azure.AI.OpenAI/CHANGELOG.md

+21-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Release History
22

3+
## 2.2.0-beta.4 (2025-03-18)
4+
5+
This update brings compatibility with the `2025-03-01-preview` service API version, including support for the new `/responses` API via `OpenAIResponseClient`.
6+
7+
### Features Added
8+
9+
- To use the new `/responses` endpoint, call `GetOpenAIResponseClient()` on an `AzureOpenAIClient` instance, following the same pattern as other operations. Using the overload without a deployment name will not be able to create new responses, only retrieve and list existing response data.
10+
11+
In addition to the new features transitive via the `OpenAI` library:
12+
13+
- Azure OpenAI file upload for batch (`FileUploadPurpose.Batch`) now supports the specification of a custom expiration policy in supported regions. To use this capability, call one of the supplied extension method overloads of `UploadFile()` that accepts an `AzureFileExpirationOptions` parameter.
14+
15+
### Breaking Changes
16+
17+
- Transitive from the OpenAI package, several types in the `[Experimental]` attributed `Assistants`, `VectorStores`, and `RealtimeConversation` namespaces have removed use of the `required` keyword, standardizing their constructor-based required input patterns with the rest of the library. To address these build breaks, use one of the new constructor signatures that accepts required parameters previously provided via property `init`.
18+
319
## 2.2.0-beta.2 (2025-02-18)
420

521
### Bugs fixed
@@ -35,7 +51,7 @@ This GA library release aligns functionality with the latest `2024-10-21` stable
3551
- [GA] The `2024-10-21` API version brings GA AOAI support for streaming token usage in chat completions; `Usage` is now automatically populated in `StreamingChatCompletionUpdate` instances.
3652
- Note 1: this feature is not yet compatible when using On Your Data features (after invoking the `.AddDataSource()` extension method on `ChatCompletionOptions`)
3753
- Note 2: this feature is not yet compatible when using image input (a `ChatMessageContentPart` of `Kind` `Image`)
38-
- [GA] The `AllowParalllelToolCalls` property on `ChatCompletionOptions`, which can be set to `false` to disable the invocation of multiple tools on a single chat completion response, is now supported.
54+
- [GA] The `AllowParallelToolCalls` property on `ChatCompletionOptions`, which can be set to `false` to disable the invocation of multiple tools on a single chat completion response, is now supported.
3955
- [GA] Structured outputs, via the use of `ChatResponseFormat.CreateJsonSchemaFormat()`, is now supported.
4056
- When using `o1-preview` and `o1-mini` models, `max_completion_tokens` may now be configured by calling the `[Experimental] SetNewMaxCompletionTokensPropertyEnabled()` extension method on `ChatCompletionOptions`.
4157
- This extension method will be removed in a future service API version, when it becomes unnecessary once all models support the `max_completion_tokens` property
@@ -54,7 +70,7 @@ The `2024-10-21` service API label introduces stable support for batch chat comp
5470
> GA library releases only permit breaking changes to items marked with an `[Experimental]` attribute and these changes will be minimized whenever possible.
5571
5672
- `[Experimental]` `GetBatchClient(string deploymentName)` on `AzureOpenAIClient` is removed, as the Azure OpenAI batch API now aligns with OpenAI's in not using a deployment-based request URI path. Please use `GetBatchClient()`, instead.
57-
- `[Expermental]` the `Uri` property of type `System.Uri` in `ChatCitation` and `ChatRetrivedDocument` has been replaced by a `Url` property of type `string`. This contains the same information but properly handles document paths that don't conform to a valid RFC 3986 identifier.
73+
- `[Experimental]` the `Uri` property of type `System.Uri` in `ChatCitation` and `ChatRetrievedDocument` has been replaced by a `Url` property of type `string`. This contains the same information but properly handles document paths that don't conform to a valid RFC 3986 identifier.
5874

5975
## 2.1.0-beta.2 (2024-11-04)
6076

@@ -77,7 +93,7 @@ This update brings compatibility with the Azure OpenAI `2024-10-01-preview` serv
7793

7894
## 2.1.0-beta.1 (2024-10-01)
7995

80-
Relative to the prior GA release, this update restores preview surfaces, retargeting to the latest `2024-08-01-preview` service `api-version` label. It also brings early support for the newly-announced `/realtime` capabilities with `gpt-4o-realtime-preview`. You can read more about Azure OpenAI support for `/realtime` in the annoucement post here: https://azure.microsoft.com/blog/announcing-new-products-and-features-for-azure-openai-service-including-gpt-4o-realtime-preview-with-audio-and-speech-capabilities/
96+
Relative to the prior GA release, this update restores preview surfaces, re-targeting to the latest `2024-08-01-preview` service `api-version` label. It also brings early support for the newly-announced `/realtime` capabilities with `gpt-4o-realtime-preview`. You can read more about Azure OpenAI support for `/realtime` in the announcement post here: https://azure.microsoft.com/blog/announcing-new-products-and-features-for-azure-openai-service-including-gpt-4o-realtime-preview-with-audio-and-speech-capabilities/
8197

8298
### Features Added
8399

@@ -323,7 +339,7 @@ Given the nature of this update, breaking changes are extensive. Please see the
323339
- If not otherwise specified, `Verbose` format will default to using segment-level timestamp information
324340
- Corresponding word-level information is found on the `.Words` collection of `AudioTranscription`, peer to the
325341
existing `.Segments` collection
326-
- Note that word-level timing information incurs a small amount of additional processingly latency; segment-level
342+
- Note that word-level timing information incurs a small amount of additional processing latency; segment-level
327343
timestamps do not encounter this behavior
328344
- `GenerateSpeechFromText()` can now use `Wav` and `Pcm` values from `SpeechGenerationResponseFormat`, these new
329345
options providing alternative uncompressed formats to `Flac`
@@ -686,7 +702,7 @@ A number of Completions request properties have been renamed and further documen
686702
- ASP.NET integration via `Microsoft.Extensions.Azure`'s `IAzureClientBuilder` interfaces is available. `OpenAIClient` is now a supported client type for these extension methods.
687703

688704
### Breaking Changes
689-
- `CompletionsLogProbability.TokenLogProbability`, available on `Choice` elements of a `Completions` response value's `.Choices` collection when a non-zero `LogProbability` value is provided via `CompletionsOptions`, is now an `IReadOnlyList<float?>` vs. its previous type of `IReadOnlyList<float>`. This nullability addition accomodates circumstances where some tokens produce expected null values in log probability arrays.
705+
- `CompletionsLogProbability.TokenLogProbability`, available on `Choice` elements of a `Completions` response value's `.Choices` collection when a non-zero `LogProbability` value is provided via `CompletionsOptions`, is now an `IReadOnlyList<float?>` vs. its previous type of `IReadOnlyList<float>`. This nullability addition accommodates circumstances where some tokens produce expected null values in log probability arrays.
690706

691707
### Bugs Fixed
692708
- Setting `CompletionsOptions.Echo` to true while also setting a non-zero `CompletionsOptions.LogProbability` no longer results in a deserialization error during response processing.

sdk/openai/Azure.AI.OpenAI/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
projects in a more simplified way.
88
-->
99
<!--
10-
<ExternalOpenAILibrary>../../external/netstandard2.0/OpenAI.dll</ExternalOpenAILibrary>
1110
<GAServiceVersionLabel>2024_10_21</GAServiceVersionLabel>
11+
<UseExternalOpenAILibrary>true</UseExternalOpenAILibrary>
1212
<SystemClientModelVersion>1.1.0-beta.5</SystemClientModelVersion>
1313
<ExternalOpenAISource>../../external/OpenAI/src/OpenAI.csproj</ExternalOpenAISource>
1414
<ExternalAzureCoreSource>$(RepoRoot)/sdk/core/Azure.Core/src/Azure.Core.csproj</ExternalAzureCoreSource>

0 commit comments

Comments
 (0)