Skip to content

Commit e5dd6a1

Browse files
committed
Re-emit
1 parent 2a64e40 commit e5dd6a1

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

sdk/ai/azure-ai-projects/apiview-properties.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@
254254
"azure.ai.projects.models.ResponseFileSearchCallCompletedEvent": "OpenAI.ResponseFileSearchCallCompletedEvent",
255255
"azure.ai.projects.models.ResponseFileSearchCallInProgressEvent": "OpenAI.ResponseFileSearchCallInProgressEvent",
256256
"azure.ai.projects.models.ResponseFileSearchCallSearchingEvent": "OpenAI.ResponseFileSearchCallSearchingEvent",
257-
"azure.ai.projects.models.ResponseFormatJsonSchemaSchema": "OpenAI.ResponseFormatJsonSchemaSchema",
258257
"azure.ai.projects.models.ResponseFunctionCallArgumentsDeltaEvent": "OpenAI.ResponseFunctionCallArgumentsDeltaEvent",
259258
"azure.ai.projects.models.ResponseFunctionCallArgumentsDoneEvent": "OpenAI.ResponseFunctionCallArgumentsDoneEvent",
260259
"azure.ai.projects.models.ResponseImageGenCallCompletedEvent": "OpenAI.ResponseImageGenCallCompletedEvent",

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,6 @@
260260
ResponseFileSearchCallCompletedEvent,
261261
ResponseFileSearchCallInProgressEvent,
262262
ResponseFileSearchCallSearchingEvent,
263-
ResponseFormatJsonSchemaSchema,
264263
ResponseFunctionCallArgumentsDeltaEvent,
265264
ResponseFunctionCallArgumentsDoneEvent,
266265
ResponseImageGenCallCompletedEvent,
@@ -660,7 +659,6 @@
660659
"ResponseFileSearchCallCompletedEvent",
661660
"ResponseFileSearchCallInProgressEvent",
662661
"ResponseFileSearchCallSearchingEvent",
663-
"ResponseFormatJsonSchemaSchema",
664662
"ResponseFunctionCallArgumentsDeltaEvent",
665663
"ResponseFunctionCallArgumentsDoneEvent",
666664
"ResponseImageGenCallCompletedEvent",

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

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11390,13 +11390,6 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
1139011390
self.type = ResponseStreamEventType.RESPONSE_FILE_SEARCH_CALL_SEARCHING # type: ignore
1139111391

1139211392

11393-
class ResponseFormatJsonSchemaSchema(_Model):
11394-
"""The schema for the response format, described as a JSON Schema object.
11395-
Learn how to build JSON schemas `here <https://json-schema.org/>`_.
11396-
11397-
"""
11398-
11399-
1140011393
class ResponseFunctionCallArgumentsDeltaEvent(
1140111394
ResponseStreamEvent, discriminator="response.function_call_arguments.delta"
1140211395
):
@@ -13379,7 +13372,7 @@ class ResponseTextFormatConfigurationJsonSchema(
1337913372
underscores and dashes, with a maximum length of 64. Required.
1338013373
:vartype name: str
1338113374
:ivar schema: Required.
13382-
:vartype schema: ~azure.ai.projects.models.ResponseFormatJsonSchemaSchema
13375+
:vartype schema: dict[str, any]
1338313376
:ivar strict: Whether to enable strict schema adherence when generating the output.
1338413377
If set to true, the model will always follow the exact schema defined
1338513378
in the ``schema`` field. Only a subset of JSON Schema is supported when
@@ -13396,9 +13389,7 @@ class ResponseTextFormatConfigurationJsonSchema(
1339613389
name: str = rest_field(visibility=["read", "create", "update", "delete", "query"])
1339713390
"""The name of the response format. Must be a-z, A-Z, 0-9, or contain
1339813391
underscores and dashes, with a maximum length of 64. Required."""
13399-
schema: "_models.ResponseFormatJsonSchemaSchema" = rest_field(
13400-
visibility=["read", "create", "update", "delete", "query"]
13401-
)
13392+
schema: dict[str, Any] = rest_field(visibility=["read", "create", "update", "delete", "query"])
1340213393
"""Required."""
1340313394
strict: Optional[bool] = rest_field(visibility=["read", "create", "update", "delete", "query"])
1340413395
"""Whether to enable strict schema adherence when generating the output.
@@ -13412,7 +13403,7 @@ def __init__(
1341213403
self,
1341313404
*,
1341413405
name: str,
13415-
schema: "_models.ResponseFormatJsonSchemaSchema",
13406+
schema: dict[str, Any],
1341613407
description: Optional[str] = None,
1341713408
strict: Optional[bool] = None,
1341813409
) -> None: ...

0 commit comments

Comments
 (0)