1.0.0-beta.11 (2025-08-20)
Features Added
- Added a constructor for
AIProjectClient
which takes aSystem.ClientModel.AuthenticationTokenProvider
object for authentication. We will be switching away fromAzure.Core.TokenCredential
with the upcoming stable release.
Breaking Changes
- Class changes:
AIDeployment
has been renamedAssetDeployment
AssetCredentialResponse
has been renamedDatasetCredential
DatasetIndex
has been renamedSearchIndex
PendingUploadRequest
has been renamedPendingUploadConfiguration
PendingUploadResponse
has been renamedPendingUploadResult
- In
Datasets
, methodsPendingUpload
andPendingUploadAsync
, argumentbody
was replaced withconfiguration
GetAzureOpenAIChatClient
andGetAzureOpenAIEmbeddingClient
methods have been removed and replaced with a singleGetOpenAIClient
method. This method returns an OpenAI client which has properties for accessing individual operation clients. More information is available in theInference
samples.- All operations methods have been renamed to include the object the operation is for. For example,
Connections.GetDefault
has been renamed toConnections.GetDefaultConnection
, andDatasets.Get
has been renamed toDatasets.GetDatasets
. Deployments.GetModelDeployment
andDeployments.GetModelDeploymentAsync
methods have been removed. UseDeployments.GetDeployment
andDeployments.GetDeploymentAsync
instead.`