1.0.0b12 (2025-06-23)
Breaking changes
- These 3 methods on
AIProjectClient
were removed:.inference.get_chat_completions_client()
,
.inference.get_embeddings_client()
and.inference.get_image_embeddings_client()
.
For guidance on obtaining an authenticatedazure-ai-inference
client for your AI Foundry Project,
refer to the updated samples in thesamples\inference
directory. For example,
sample_chat_completions_with_azure_ai_inference_client.py. Alternatively, use the.inference.get_azure_openai_client()
method to perform chat completions with an Azure OpenAI client. - Method argument name changes:
- In method
.indexes.create_or_update()
argumentbody
was renamedindex
. - In method
.datasets.create_or_update()
argumentbody
was renameddataset_version
. - In method
.datasets.pending_upload()
argumentbody
was renamedpending_upload_request
.
- In method
Bugs Fixed
- Fix to package function
enable_telemetry()
to correctly instrumentazure-ai-agents
. - Updated RedTeam target type visibility to allow for type being sent in the JSON for redteam run creation.
Other
- Set dependency on
azure-ai-agents
version1.0.0
or above,
now that we have a stable release of the Agents package.