Skip to content

Commit 470b70c

Browse files
authored
Changes for release of azure-ai-projects version 1.1.0b2 (#42369)
1 parent 330b7bc commit 470b70c

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

sdk/ai/azure-ai-projects/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 1.1.0b2 (2025-08-05)
4+
5+
### Bugs Fixed
6+
7+
Fix regression in Red-Team operations, in the definition of the class `AzureOpenAIModelConfiguration`.
8+
39
## 1.1.0b1 (2025-08-01)
410

511
First beta version following the 1.0.0 stable release. It brings back the Evaluation and Red-Team operations which are still in preview.

sdk/ai/azure-ai-projects/azure/ai/projects/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "1.1.0b1"
9+
VERSION = "1.1.0b2"

sdk/ai/azure-ai-projects/azure/ai/projects/models/_models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -562,18 +562,18 @@ class AzureOpenAIModelConfiguration(TargetConfig, discriminator="AzureOpenAIMode
562562
:ivar type: Required. Default value is "AzureOpenAIModel".
563563
:vartype type: str
564564
:ivar model_deployment_name: Deployment name for AOAI model. Example: gpt-4o if in AIServices
565-
or connection based ``connection_name/deployment_name`` (i.e. ``my-aoai-connection/gpt-4o``).
565+
or connection based ``connection_name/deployment_name`` (e.g. ``my-aoai-connection/gpt-4o``).
566566
Required.
567567
:vartype model_deployment_name: str
568568
"""
569569

570-
type: Literal["AzureOpenAIModel"] = rest_discriminator(name="type", visibility=["read"]) # type: ignore
570+
type: Literal["AzureOpenAIModel"] = rest_discriminator(name="type", visibility=["read", "create", "update", "delete", "query"]) # type: ignore
571571
"""Required. Default value is \"AzureOpenAIModel\"."""
572572
model_deployment_name: str = rest_field(
573573
name="modelDeploymentName", visibility=["read", "create", "update", "delete", "query"]
574574
)
575575
"""Deployment name for AOAI model. Example: gpt-4o if in AIServices or connection based
576-
``connection_name/deployment_name`` (i.e. ``my-aoai-connection/gpt-4o``). Required."""
576+
``connection_name/deployment_name`` (e.g. ``my-aoai-connection/gpt-4o``). Required."""
577577

578578
@overload
579579
def __init__(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
directory: specification/ai/Azure.AI.Projects
2-
commit: 9c6d0f7233509868be386c3179362f7d9d7f4a48
2+
commit: 6b9d22f52fb7870a060ad29286b979fc9e532cdf
33
repo: Azure/azure-rest-api-specs
44
additionalDirectories:

0 commit comments

Comments
 (0)