1.0.0-beta.5 (2023-09-22)
Features Added
-
Added support for
Whisper
endpoints. -
Translation and Transcription of audio files is available.
-
The above features are available both in Azure and non-Azure OpenAI.
-
Added more convenience methods, which are wrappers around the existing
get{ChatCompletions|Completions|Embeddings}WithResponse
methods with concrete data types instead of usingBinaryData
as the return data type. For example, a new method
introduced is- Async:
Mono<Response<ChatCompletions>> getChatCompletionsWithResponse(String deploymentOrModelName, ChatCompletionsOptions chatCompletionsOptions, RequestOptions requestOptions)
- Sync:
Response<ChatCompletions> getChatCompletionsWithResponse(String deploymentOrModelName, ChatCompletionsOptions chatCompletionsOptions, RequestOptions requestOptions)
Same methods are added for
Completions
andEmbeddings
endpoints as well. - Async:
Breaking Changes
- Replaced usage of class
AzureKeyCredential
byKeyCredential
.
Other Changes
Dependency Updates
- Upgraded
azure-core
from1.42.0
to version1.43.0
. - Upgraded
azure-core-http-netty
from1.13.6
to version1.13.7
.