diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f88adb51..1fa18de48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,80 @@ # Release History -## 2.3.0-beta.1 (Unreleased) +## 2.3.0 (2025-08-01) -### Other changes +### Features Added + +- OpenAI.Audio: + - Added the `Model` property to `AudioClient`. + - Added constructors that can take a custom `AuthenticationPolicy` to `AudioClient`. +- OpenAI.Batch: + - Added new methods to `BatchClient`: + - `GetBatch` and `GetBatchAsync` + - Added constructors that can take a custom `AuthenticationPolicy` to `BatchClient`. +- OpenAI.Chat: + - Added new methods to `ChatClient`: + - `UpdateChatCompletion` and `UpdateChatCompletionAsync` + - `GetChatCompletions` and `GetChatCompletionsAsync` + - `GetChatCompletionMessages` and `GetChatCompletionMessagesAsync` + - Added the `Model` property to `ChatClient`. + - Added constructors that can take a custom `AuthenticationPolicy` to `ChatClient`. +- OpenAI.Containers: + - Introduced the new `ContainersClient` to support the Containers API with protocol methods for the following operations: + - `CreateContainer` and `CreateContainerAsync` + - `GetContainers` and `GetContainersAsync` + - `GetContainer` and `GetContainerAsync` + - `DeleteContainer` and `DeleteContainerAsync` + - `CreateContainerFile` and `CreateContainerFileAsync` + - `GetContainerFiles` and `GetContainerFilesAsync` + - `GetContainerFile` and `GetContainerFileAsync` + - `GetContainerFileContent` and `GetContainerFileContentAsync` + - `DeleteContainerFile` and `DeleteContainerFileAsync` +- OpenAI.Embeddings: + - Added the `Model` property to `EmbeddingClient`. + - Added constructors that can take a custom `AuthenticationPolicy` to `EmbeddingClient`. +- OpenAI.Evals: + - Added constructors that can take a custom `AuthenticationPolicy` to `EvaluationClient`. +- OpenAI.Files: + - Added constructors that can take a custom `AuthenticationPolicy` to `OpenAIFileClient`. +- OpenAI.FineTuning: + - Added constructors that can take a custom `AuthenticationPolicy` to `FineTuningClient`. +- OpenAI.Graders: + - Introduced the new `GraderClient` to support the Graders API with protocol methods for the following operations: + - `RunGrader` and `RunGraderAsync` + - `ValidateGrader` and `ValidateGraderAsync` +- OpenAI.Images: + - Added the `Model` property to `ImageClient`. + - Added constructors that can take a custom `AuthenticationPolicy` to `ImageClient`. +- OpenAI.Models: + - Added constructors that can take a custom `AuthenticationPolicy` to `OpenAIModelClient`. +- OpenAI.Moderations: + - Added the `Model` property to `ModerationClient`. + - Added constructors that can take a custom `AuthenticationPolicy` to `ModerationClient`. +- OpenAI.Realtime: + - Enabled support for semantic voice activity detection (VAD) via the new `CreateSemanticVoiceActivityTurnDetectionOptions` method of `TurnDetectionOptions`. +- OpenAI.Responses: + - Added a model factory. + - Added constructors that can take a custom `AuthenticationPolicy` to `OpenAIResponseClient`. +- OpenAI.VectorStores: + - Added constructors that can take a custom `AuthenticationPolicy` to `VectorStoreClient`. + +### Bug Fixed + +- OpenAI.Assistants: + - Fixed an issue causing the `ImageDetail` property of `MessageContent` to not be serialized correctly. +- OpenAI.Audio: + - Added a check to all overloads of `TranscribeAudioStreaming` and `TranscribeAudioStreamingAsync` in the `AudioClient` to prevent using the `whisper-1` model, which does not support streaming and simply ignores the `stream` parameter. +- OpenAI.Realtime: + - Improved the disposal logic in `AsyncWebsocketMessageResultEnumerator` to prevent multiple disposals. +- OpenAI.Responses: + - Fixed an issue in code generation that caused the `StreamingResponseTextAnnotationAddedUpdate` class to not be generated correctly as part of the set of possible handles when streaming. + - Fixed an issue in code generation that caused the `Status` property of `ReasoningResponseItem` and the `ReasoningStatus` enum to not be generated correctly and lead to incorrect behavior. + +### Other Changes -- Updated to `System.ClientModel` 1.5.1, which contains a fix for a concurrency bug which could cause some applications running on the legacy .NET Framework to experience an infinite loop while deserializing service responses. -- Removed explicit `net6.0` target framework, as this version reached end-of-life in November, 2024 and is no longer maintained nor supported by Microsoft. This does not prevent using the OpenAI library on .NET 6, as the runtime will fallback to the `netstandard2.0` target. -- The NuGet package now contains signed binaries. +- The `OpenAI` NuGet package now contains signed binaries. +- Updated the `System.ClientModel` dependency to version 1.5.1, which contains a fix for a concurrency bug which could cause some applications running on the legacy .NET Framework to experience an infinite loop while deserializing service responses. +- Removed the explicit `net6.0` target framework, as this version reached end-of-life in November 2024 and is no longer maintained nor supported by Microsoft. This does not prevent using the OpenAI library on .NET 6, as the runtime will fallback to the `netstandard2.0` target. ## 2.2.0 (2025-07-02) diff --git a/scripts/Invoke-CodeGen.ps1 b/scripts/Invoke-CodeGen.ps1 index fcdc3e207..d6250575d 100644 --- a/scripts/Invoke-CodeGen.ps1 +++ b/scripts/Invoke-CodeGen.ps1 @@ -7,7 +7,7 @@ param( [string]$GitHubRepository, [Parameter(Mandatory = $false, ParameterSetName = 'GitHub')] - [string]$CommitHash = "1be53165a901cfdd40d20363f311e5d5fee84f7a", + [string]$CommitHash = "706a4fb91ea18b441723f8a57a7e2c67e3061bb6", [Parameter(Mandatory = $false, ParameterSetName = 'GitHub')] [string]$GitHubToken, diff --git a/scripts/Test-ApiCompatibility.ps1 b/scripts/Test-ApiCompatibility.ps1 index fe0c5eed3..f69ac9311 100644 --- a/scripts/Test-ApiCompatibility.ps1 +++ b/scripts/Test-ApiCompatibility.ps1 @@ -162,8 +162,20 @@ $repoRootPath = Join-Path $PSScriptRoot .. -Resolve $projectPath = Join-Path $repoRootPath "src\OpenAI.csproj" $releasePath = Join-Path $repoRootPath "src\bin\Release" +$experimentalNamespaces = @( + "OpenAI.Assistants", + "OpenAI.Batch", + "OpenAI.Containers", + "OpenAI.Evals", + "OpenAI.FineTuning", + "OpenAI.Graders", + "OpenAI.Realtime", + "OpenAI.Responses", + "OpenAI.VectorStores" +) + Invoke-APICompat -ProjectPath $projectPath ` -ReleasePath $releasePath ` -PackageName "OpenAI" ` - -BaselineVersion "2.1.0" ` - -IgnoredNamespaces "OpenAI.Assistants", "OpenAI.Batch", "OpenAI.FineTuning", "OpenAI.Realtime", "OpenAI.VectorStores" \ No newline at end of file + -BaselineVersion "2.2.0" ` + -IgnoredNamespaces $experimentalNamespaces \ No newline at end of file diff --git a/src/OpenAI.csproj b/src/OpenAI.csproj index 80f0b75f4..d4bcdeda9 100644 --- a/src/OpenAI.csproj +++ b/src/OpenAI.csproj @@ -8,7 +8,7 @@ MIT Copyright (c) 2024 OpenAI (https://openai.com) - 2.2.0 + 2.3.0 net8.0;netstandard2.0 diff --git a/tspCodeModel.json b/tspCodeModel.json index b5e1f2630..336346ba3 100644 --- a/tspCodeModel.json +++ b/tspCodeModel.json @@ -5,8 +5,8 @@ { "$id": "1", "kind": "enum", - "name": "PageOrderOptions", - "crossLanguageDefinitionId": "OpenAI.PageOrderOptions", + "name": "AssistantToolDefinitionType", + "crossLanguageDefinitionId": "OpenAI.AssistantToolDefinitionType", "valueType": { "$id": "2", "kind": "string", @@ -18,8 +18,8 @@ { "$id": "3", "kind": "enumvalue", - "name": "asc", - "value": "asc", + "name": "code_interpreter", + "value": "code_interpreter", "valueType": { "$ref": "2" }, @@ -31,72 +31,26 @@ { "$id": "4", "kind": "enumvalue", - "name": "desc", - "value": "desc", - "valueType": { - "$ref": "2" - }, - "enumType": { - "$ref": "1" - }, - "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "5", - "kind": "enum", - "name": "AssistantToolDefinitionType", - "crossLanguageDefinitionId": "OpenAI.AssistantToolDefinitionType", - "valueType": { - "$id": "6", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "7", - "kind": "enumvalue", - "name": "code_interpreter", - "value": "code_interpreter", - "valueType": { - "$ref": "6" - }, - "enumType": { - "$ref": "5" - }, - "decorators": [] - }, - { - "$id": "8", - "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "6" + "$ref": "2" }, "enumType": { - "$ref": "5" + "$ref": "1" }, "decorators": [] }, { - "$id": "9", + "$id": "5", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "6" + "$ref": "2" }, "enumType": { - "$ref": "5" + "$ref": "1" }, "decorators": [] } @@ -108,12 +62,12 @@ "decorators": [] }, { - "$id": "10", + "$id": "6", "kind": "enum", "name": "FileSearchRanker", "crossLanguageDefinitionId": "OpenAI.FileSearchRanker", "valueType": { - "$id": "11", + "$id": "7", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121,28 +75,28 @@ }, "values": [ { - "$id": "12", + "$id": "8", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "11" + "$ref": "7" }, "enumType": { - "$ref": "10" + "$ref": "6" }, "decorators": [] }, { - "$id": "13", + "$id": "9", "kind": "enumvalue", "name": "default_2024_08_21", "value": "default_2024_08_21", "valueType": { - "$ref": "11" + "$ref": "7" }, "enumType": { - "$ref": "10" + "$ref": "6" }, "decorators": [] } @@ -155,12 +109,12 @@ "decorators": [] }, { - "$id": "14", + "$id": "10", "kind": "enum", "name": "ResponseFormatType", "crossLanguageDefinitionId": "OpenAI.ResponseFormat.type.anonymous", "valueType": { - "$id": "15", + "$id": "11", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -168,41 +122,41 @@ }, "values": [ { - "$id": "16", + "$id": "12", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "15" + "$ref": "11" }, "enumType": { - "$ref": "14" + "$ref": "10" }, "decorators": [] }, { - "$id": "17", + "$id": "13", "kind": "enumvalue", "name": "json_object", "value": "json_object", "valueType": { - "$ref": "15" + "$ref": "11" }, "enumType": { - "$ref": "14" + "$ref": "10" }, "decorators": [] }, { - "$id": "18", + "$id": "14", "kind": "enumvalue", "name": "json_schema", "value": "json_schema", "valueType": { - "$ref": "15" + "$ref": "11" }, "enumType": { - "$ref": "14" + "$ref": "10" }, "decorators": [] } @@ -214,12 +168,12 @@ "decorators": [] }, { - "$id": "19", + "$id": "15", "kind": "enum", "name": "AssistantSupportedModels", "crossLanguageDefinitionId": "OpenAI.AssistantSupportedModels", "valueType": { - "$id": "20", + "$id": "16", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -227,470 +181,470 @@ }, "values": [ { - "$id": "21", + "$id": "17", "kind": "enumvalue", "name": "gpt-4.1", "value": "gpt-4.1", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "22", + "$id": "18", "kind": "enumvalue", "name": "gpt-4.1-mini", "value": "gpt-4.1-mini", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "23", + "$id": "19", "kind": "enumvalue", "name": "gpt-4.1-nano", "value": "gpt-4.1-nano", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "24", + "$id": "20", "kind": "enumvalue", "name": "gpt-4.1-2025-04-14", "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "25", + "$id": "21", "kind": "enumvalue", "name": "gpt-4.1-mini-2025-04-14", "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "26", + "$id": "22", "kind": "enumvalue", "name": "gpt-4.1-nano-2025-04-14", "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "27", + "$id": "23", "kind": "enumvalue", "name": "o3-mini", "value": "o3-mini", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "28", + "$id": "24", "kind": "enumvalue", "name": "o3-mini-2025-01-31", "value": "o3-mini-2025-01-31", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "29", + "$id": "25", "kind": "enumvalue", "name": "o1", "value": "o1", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "30", + "$id": "26", "kind": "enumvalue", "name": "o1-2024-12-17", "value": "o1-2024-12-17", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "31", + "$id": "27", "kind": "enumvalue", "name": "gpt-4o", "value": "gpt-4o", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "32", + "$id": "28", "kind": "enumvalue", "name": "gpt-4o-2024-11-20", "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "33", + "$id": "29", "kind": "enumvalue", "name": "gpt-4o-2024-08-06", "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "34", + "$id": "30", "kind": "enumvalue", "name": "gpt-4o-2024-05-13", "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "35", + "$id": "31", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "36", + "$id": "32", "kind": "enumvalue", "name": "gpt-4o-mini-2024-07-18", "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "37", + "$id": "33", "kind": "enumvalue", "name": "gpt-4.5-preview", "value": "gpt-4.5-preview", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "38", + "$id": "34", "kind": "enumvalue", "name": "gpt-4.5-preview-2025-02-27", "value": "gpt-4.5-preview-2025-02-27", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "39", + "$id": "35", "kind": "enumvalue", "name": "gpt-4-turbo", "value": "gpt-4-turbo", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "40", + "$id": "36", "kind": "enumvalue", "name": "gpt-4-turbo-2024-04-09", "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "41", + "$id": "37", "kind": "enumvalue", "name": "gpt-4-0125-preview", "value": "gpt-4-0125-preview", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "42", + "$id": "38", "kind": "enumvalue", "name": "gpt-4-turbo-preview", "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "43", + "$id": "39", "kind": "enumvalue", "name": "gpt-4-1106-preview", "value": "gpt-4-1106-preview", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "44", + "$id": "40", "kind": "enumvalue", "name": "gpt-4-vision-preview", "value": "gpt-4-vision-preview", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "45", + "$id": "41", "kind": "enumvalue", "name": "gpt-4", "value": "gpt-4", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "46", + "$id": "42", "kind": "enumvalue", "name": "gpt-4-0314", "value": "gpt-4-0314", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "47", + "$id": "43", "kind": "enumvalue", "name": "gpt-4-0613", "value": "gpt-4-0613", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "48", + "$id": "44", "kind": "enumvalue", "name": "gpt-4-32k", "value": "gpt-4-32k", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "49", + "$id": "45", "kind": "enumvalue", "name": "gpt-4-32k-0314", "value": "gpt-4-32k-0314", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "50", + "$id": "46", "kind": "enumvalue", "name": "gpt-4-32k-0613", "value": "gpt-4-32k-0613", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "51", + "$id": "47", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "52", + "$id": "48", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k", "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "53", + "$id": "49", "kind": "enumvalue", "name": "gpt-3.5-turbo-0613", "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "54", + "$id": "50", "kind": "enumvalue", "name": "gpt-3.5-turbo-1106", "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "55", + "$id": "51", "kind": "enumvalue", "name": "gpt-3.5-turbo-0125", "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] }, { - "$id": "56", + "$id": "52", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k-0613", "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "20" + "$ref": "16" }, "enumType": { - "$ref": "19" + "$ref": "15" }, "decorators": [] } @@ -702,12 +656,12 @@ "decorators": [] }, { - "$id": "57", + "$id": "53", "kind": "enum", "name": "ReasoningEffort", "crossLanguageDefinitionId": "OpenAI.ReasoningEffort", "valueType": { - "$id": "58", + "$id": "54", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -715,41 +669,41 @@ }, "values": [ { - "$id": "59", + "$id": "55", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "58" + "$ref": "54" }, "enumType": { - "$ref": "57" + "$ref": "53" }, "decorators": [] }, { - "$id": "60", + "$id": "56", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "58" + "$ref": "54" }, "enumType": { - "$ref": "57" + "$ref": "53" }, "decorators": [] }, { - "$id": "61", + "$id": "57", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "58" + "$ref": "54" }, "enumType": { - "$ref": "57" + "$ref": "53" }, "decorators": [] } @@ -762,12 +716,12 @@ "decorators": [] }, { - "$id": "62", + "$id": "58", "kind": "enum", "name": "ChunkingStrategyRequestParamType", "crossLanguageDefinitionId": "OpenAI.ChunkingStrategyRequestParam.type.anonymous", "valueType": { - "$id": "63", + "$id": "59", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -775,28 +729,28 @@ }, "values": [ { - "$id": "64", + "$id": "60", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "63" + "$ref": "59" }, "enumType": { - "$ref": "62" + "$ref": "58" }, "decorators": [] }, { - "$id": "65", + "$id": "61", "kind": "enumvalue", "name": "static", "value": "static", "valueType": { - "$ref": "63" + "$ref": "59" }, "enumType": { - "$ref": "62" + "$ref": "58" }, "decorators": [] } @@ -808,12 +762,12 @@ "decorators": [] }, { - "$id": "66", + "$id": "62", "kind": "enum", "name": "CreateSpeechRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateSpeechRequest.model.anonymous", "valueType": { - "$id": "67", + "$id": "63", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -821,41 +775,41 @@ }, "values": [ { - "$id": "68", + "$id": "64", "kind": "enumvalue", "name": "tts-1", "value": "tts-1", "valueType": { - "$ref": "67" + "$ref": "63" }, "enumType": { - "$ref": "66" + "$ref": "62" }, "decorators": [] }, { - "$id": "69", + "$id": "65", "kind": "enumvalue", "name": "tts-1-hd", "value": "tts-1-hd", "valueType": { - "$ref": "67" + "$ref": "63" }, "enumType": { - "$ref": "66" + "$ref": "62" }, "decorators": [] }, { - "$id": "70", + "$id": "66", "kind": "enumvalue", "name": "gpt-4o-mini-tts", "value": "gpt-4o-mini-tts", "valueType": { - "$ref": "67" + "$ref": "63" }, "enumType": { - "$ref": "66" + "$ref": "62" }, "decorators": [] } @@ -867,12 +821,12 @@ "decorators": [] }, { - "$id": "71", + "$id": "67", "kind": "enum", "name": "VoiceIdsShared", "crossLanguageDefinitionId": "OpenAI.VoiceIdsShared", "valueType": { - "$id": "72", + "$id": "68", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -880,145 +834,145 @@ }, "values": [ { - "$id": "73", + "$id": "69", "kind": "enumvalue", "name": "alloy", "value": "alloy", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "74", + "$id": "70", "kind": "enumvalue", "name": "ash", "value": "ash", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "75", + "$id": "71", "kind": "enumvalue", "name": "ballad", "value": "ballad", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "76", + "$id": "72", "kind": "enumvalue", "name": "coral", "value": "coral", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "77", + "$id": "73", "kind": "enumvalue", "name": "echo", "value": "echo", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "78", + "$id": "74", "kind": "enumvalue", "name": "fable", "value": "fable", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "79", + "$id": "75", "kind": "enumvalue", "name": "onyx", "value": "onyx", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "80", + "$id": "76", "kind": "enumvalue", "name": "nova", "value": "nova", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "81", + "$id": "77", "kind": "enumvalue", "name": "sage", "value": "sage", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "82", + "$id": "78", "kind": "enumvalue", "name": "shimmer", "value": "shimmer", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] }, { - "$id": "83", + "$id": "79", "kind": "enumvalue", "name": "verse", "value": "verse", "valueType": { - "$ref": "72" + "$ref": "68" }, "enumType": { - "$ref": "71" + "$ref": "67" }, "decorators": [] } @@ -1030,12 +984,12 @@ "decorators": [] }, { - "$id": "84", + "$id": "80", "kind": "enum", "name": "CreateSpeechRequestResponseFormat", "crossLanguageDefinitionId": "OpenAI.CreateSpeechRequest.response_format.anonymous", "valueType": { - "$id": "85", + "$id": "81", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1043,80 +997,80 @@ }, "values": [ { - "$id": "86", + "$id": "82", "kind": "enumvalue", "name": "mp3", "value": "mp3", "valueType": { - "$ref": "85" + "$ref": "81" }, "enumType": { - "$ref": "84" + "$ref": "80" }, "decorators": [] }, { - "$id": "87", + "$id": "83", "kind": "enumvalue", "name": "opus", "value": "opus", "valueType": { - "$ref": "85" + "$ref": "81" }, "enumType": { - "$ref": "84" + "$ref": "80" }, "decorators": [] }, { - "$id": "88", + "$id": "84", "kind": "enumvalue", "name": "aac", "value": "aac", "valueType": { - "$ref": "85" + "$ref": "81" }, "enumType": { - "$ref": "84" + "$ref": "80" }, "decorators": [] }, { - "$id": "89", + "$id": "85", "kind": "enumvalue", "name": "flac", "value": "flac", "valueType": { - "$ref": "85" + "$ref": "81" }, "enumType": { - "$ref": "84" + "$ref": "80" }, "decorators": [] }, { - "$id": "90", + "$id": "86", "kind": "enumvalue", "name": "wav", "value": "wav", "valueType": { - "$ref": "85" + "$ref": "81" }, "enumType": { - "$ref": "84" + "$ref": "80" }, "decorators": [] }, { - "$id": "91", + "$id": "87", "kind": "enumvalue", "name": "pcm", "value": "pcm", "valueType": { - "$ref": "85" + "$ref": "81" }, "enumType": { - "$ref": "84" + "$ref": "80" }, "decorators": [] } @@ -1128,58 +1082,12 @@ "decorators": [] }, { - "$id": "92", - "kind": "enum", - "name": "CreateTranscriptionRequestAccept", - "crossLanguageDefinitionId": "OpenAI.createTranscription.RequestAccept.anonymous", - "valueType": { - "$id": "93", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "94", - "kind": "enumvalue", - "name": "application/json", - "value": "application/json", - "valueType": { - "$ref": "93" - }, - "enumType": { - "$ref": "92" - }, - "decorators": [] - }, - { - "$id": "95", - "kind": "enumvalue", - "name": "text/event-stream", - "value": "text/event-stream", - "valueType": { - "$ref": "93" - }, - "enumType": { - "$ref": "92" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "96", + "$id": "88", "kind": "enum", "name": "CreateTranscriptionRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateTranscriptionRequest.model.anonymous", "valueType": { - "$id": "97", + "$id": "89", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1187,41 +1095,41 @@ }, "values": [ { - "$id": "98", + "$id": "90", "kind": "enumvalue", "name": "whisper-1", "value": "whisper-1", "valueType": { - "$ref": "97" + "$ref": "89" }, "enumType": { - "$ref": "96" + "$ref": "88" }, "decorators": [] }, { - "$id": "99", + "$id": "91", "kind": "enumvalue", "name": "gpt-4o-transcribe", "value": "gpt-4o-transcribe", "valueType": { - "$ref": "97" + "$ref": "89" }, "enumType": { - "$ref": "96" + "$ref": "88" }, "decorators": [] }, { - "$id": "100", + "$id": "92", "kind": "enumvalue", "name": "gpt-4o-mini-transcribe", "value": "gpt-4o-mini-transcribe", "valueType": { - "$ref": "97" + "$ref": "89" }, "enumType": { - "$ref": "96" + "$ref": "88" }, "decorators": [] } @@ -1233,12 +1141,12 @@ "decorators": [] }, { - "$id": "101", + "$id": "93", "kind": "enum", "name": "TranscriptionAudioResponseFormat", "crossLanguageDefinitionId": "OpenAI.TranscriptionAudioResponseFormat", "valueType": { - "$id": "102", + "$id": "94", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1246,67 +1154,67 @@ }, "values": [ { - "$id": "103", + "$id": "95", "kind": "enumvalue", "name": "json", "value": "json", "valueType": { - "$ref": "102" + "$ref": "94" }, "enumType": { - "$ref": "101" + "$ref": "93" }, "decorators": [] }, { - "$id": "104", + "$id": "96", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "102" + "$ref": "94" }, "enumType": { - "$ref": "101" + "$ref": "93" }, "decorators": [] }, { - "$id": "105", + "$id": "97", "kind": "enumvalue", "name": "srt", "value": "srt", "valueType": { - "$ref": "102" + "$ref": "94" }, "enumType": { - "$ref": "101" + "$ref": "93" }, "decorators": [] }, { - "$id": "106", + "$id": "98", "kind": "enumvalue", "name": "verbose_json", "value": "verbose_json", "valueType": { - "$ref": "102" + "$ref": "94" }, "enumType": { - "$ref": "101" + "$ref": "93" }, "decorators": [] }, { - "$id": "107", + "$id": "99", "kind": "enumvalue", "name": "vtt", "value": "vtt", "valueType": { - "$ref": "102" + "$ref": "94" }, "enumType": { - "$ref": "101" + "$ref": "93" }, "decorators": [] } @@ -1318,12 +1226,12 @@ "decorators": [] }, { - "$id": "108", + "$id": "100", "kind": "enum", "name": "TranscriptionInclude", "crossLanguageDefinitionId": "OpenAI.TranscriptionInclude", "valueType": { - "$id": "109", + "$id": "101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1331,15 +1239,15 @@ }, "values": [ { - "$id": "110", + "$id": "102", "kind": "enumvalue", "name": "logprobs", "value": "logprobs", "valueType": { - "$ref": "109" + "$ref": "101" }, "enumType": { - "$ref": "108" + "$ref": "100" }, "decorators": [] } @@ -1351,12 +1259,12 @@ "decorators": [] }, { - "$id": "111", + "$id": "103", "kind": "enum", "name": "CreateTranscriptionRequestTimestampGranularities", "crossLanguageDefinitionId": "OpenAI.CreateTranscriptionRequest.timestamp_granularities[].anonymous", "valueType": { - "$id": "112", + "$id": "104", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1364,28 +1272,28 @@ }, "values": [ { - "$id": "113", + "$id": "105", "kind": "enumvalue", "name": "word", "value": "word", "valueType": { - "$ref": "112" + "$ref": "104" }, "enumType": { - "$ref": "111" + "$ref": "103" }, "decorators": [] }, { - "$id": "114", + "$id": "106", "kind": "enumvalue", "name": "segment", "value": "segment", "valueType": { - "$ref": "112" + "$ref": "104" }, "enumType": { - "$ref": "111" + "$ref": "103" }, "decorators": [] } @@ -1397,12 +1305,12 @@ "decorators": [] }, { - "$id": "115", + "$id": "107", "kind": "enum", "name": "CreateTranscriptionResponseStreamEventType", "crossLanguageDefinitionId": "OpenAI.CreateTranscriptionResponseStreamEventType", "valueType": { - "$id": "116", + "$id": "108", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1410,28 +1318,28 @@ }, "values": [ { - "$id": "117", + "$id": "109", "kind": "enumvalue", "name": "transcript_text_delta", "value": "transcript.text.delta", "valueType": { - "$ref": "116" + "$ref": "108" }, "enumType": { - "$ref": "115" + "$ref": "107" }, "decorators": [] }, { - "$id": "118", + "$id": "110", "kind": "enumvalue", "name": "transcript_text_done", "value": "transcript.text.done", "valueType": { - "$ref": "116" + "$ref": "108" }, "enumType": { - "$ref": "115" + "$ref": "107" }, "decorators": [] } @@ -1443,12 +1351,12 @@ "decorators": [] }, { - "$id": "119", + "$id": "111", "kind": "enum", "name": "CreateTranslationRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateTranslationRequest.model.anonymous", "valueType": { - "$id": "120", + "$id": "112", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1456,15 +1364,15 @@ }, "values": [ { - "$id": "121", + "$id": "113", "kind": "enumvalue", "name": "whisper-1", "value": "whisper-1", "valueType": { - "$ref": "120" + "$ref": "112" }, "enumType": { - "$ref": "119" + "$ref": "111" }, "decorators": [] } @@ -1476,12 +1384,12 @@ "decorators": [] }, { - "$id": "122", + "$id": "114", "kind": "enum", "name": "TranslationAudioResponseFormat", "crossLanguageDefinitionId": "OpenAI.TranslationAudioResponseFormat", "valueType": { - "$id": "123", + "$id": "115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1489,67 +1397,67 @@ }, "values": [ { - "$id": "124", + "$id": "116", "kind": "enumvalue", "name": "json", "value": "json", "valueType": { - "$ref": "123" + "$ref": "115" }, "enumType": { - "$ref": "122" + "$ref": "114" }, "decorators": [] }, { - "$id": "125", + "$id": "117", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "123" + "$ref": "115" }, "enumType": { - "$ref": "122" + "$ref": "114" }, "decorators": [] }, { - "$id": "126", + "$id": "118", "kind": "enumvalue", "name": "srt", "value": "srt", "valueType": { - "$ref": "123" + "$ref": "115" }, "enumType": { - "$ref": "122" + "$ref": "114" }, "decorators": [] }, { - "$id": "127", + "$id": "119", "kind": "enumvalue", "name": "verbose_json", "value": "verbose_json", "valueType": { - "$ref": "123" + "$ref": "115" }, "enumType": { - "$ref": "122" + "$ref": "114" }, "decorators": [] }, { - "$id": "128", + "$id": "120", "kind": "enumvalue", "name": "vtt", "value": "vtt", "valueType": { - "$ref": "123" + "$ref": "115" }, "enumType": { - "$ref": "122" + "$ref": "114" }, "decorators": [] } @@ -1561,12 +1469,12 @@ "decorators": [] }, { - "$id": "129", + "$id": "121", "kind": "enum", "name": "CreateBatchRequestEndpoint", "crossLanguageDefinitionId": "OpenAI.createBatch.Request.endpoint.anonymous", "valueType": { - "$id": "130", + "$id": "122", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1574,28 +1482,28 @@ }, "values": [ { - "$id": "131", + "$id": "123", "kind": "enumvalue", "name": "/v1/chat/completions", "value": "/v1/chat/completions", "valueType": { - "$ref": "130" + "$ref": "122" }, "enumType": { - "$ref": "129" + "$ref": "121" }, "decorators": [] }, { - "$id": "132", + "$id": "124", "kind": "enumvalue", "name": "/v1/embeddings", "value": "/v1/embeddings", "valueType": { - "$ref": "130" + "$ref": "122" }, "enumType": { - "$ref": "129" + "$ref": "121" }, "decorators": [] } @@ -1607,12 +1515,12 @@ "decorators": [] }, { - "$id": "133", + "$id": "125", "kind": "enum", "name": "BatchStatus", "crossLanguageDefinitionId": "OpenAI.Batch.status.anonymous", "valueType": { - "$id": "134", + "$id": "126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1620,106 +1528,106 @@ }, "values": [ { - "$id": "135", + "$id": "127", "kind": "enumvalue", "name": "validating", "value": "validating", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] }, { - "$id": "136", + "$id": "128", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] }, { - "$id": "137", + "$id": "129", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] }, { - "$id": "138", + "$id": "130", "kind": "enumvalue", "name": "finalizing", "value": "finalizing", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] }, { - "$id": "139", + "$id": "131", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] }, { - "$id": "140", + "$id": "132", "kind": "enumvalue", "name": "expired", "value": "expired", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] }, { - "$id": "141", + "$id": "133", "kind": "enumvalue", "name": "cancelling", "value": "cancelling", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] }, { - "$id": "142", + "$id": "134", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "134" + "$ref": "126" }, "enumType": { - "$ref": "133" + "$ref": "125" }, "decorators": [] } @@ -1731,12 +1639,12 @@ "decorators": [] }, { - "$id": "143", + "$id": "135", "kind": "enum", "name": "CreateChatCompletionResponseChoiceFinishReason", "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionResponse.choice.finish_reason.anonymous", "valueType": { - "$id": "144", + "$id": "136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1744,67 +1652,67 @@ }, "values": [ { - "$id": "145", + "$id": "137", "kind": "enumvalue", "name": "stop", "value": "stop", "valueType": { - "$ref": "144" + "$ref": "136" }, "enumType": { - "$ref": "143" + "$ref": "135" }, "decorators": [] }, { - "$id": "146", + "$id": "138", "kind": "enumvalue", "name": "length", "value": "length", "valueType": { - "$ref": "144" + "$ref": "136" }, "enumType": { - "$ref": "143" + "$ref": "135" }, "decorators": [] }, { - "$id": "147", + "$id": "139", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "144" + "$ref": "136" }, "enumType": { - "$ref": "143" + "$ref": "135" }, "decorators": [] }, { - "$id": "148", + "$id": "140", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "144" + "$ref": "136" }, "enumType": { - "$ref": "143" + "$ref": "135" }, "decorators": [] }, { - "$id": "149", + "$id": "141", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "144" + "$ref": "136" }, "enumType": { - "$ref": "143" + "$ref": "135" }, "decorators": [] } @@ -1816,12 +1724,12 @@ "decorators": [] }, { - "$id": "150", + "$id": "142", "kind": "enum", "name": "ChatToolCallKind", "crossLanguageDefinitionId": "OpenAI.ChatToolCallKind", "valueType": { - "$id": "151", + "$id": "143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1829,15 +1737,15 @@ }, "values": [ { - "$id": "152", + "$id": "144", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "151" + "$ref": "143" }, "enumType": { - "$ref": "150" + "$ref": "142" }, "decorators": [] } @@ -1849,12 +1757,12 @@ "decorators": [] }, { - "$id": "153", + "$id": "145", "kind": "enum", "name": "ChatCompletionRole", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRole", "valueType": { - "$id": "154", + "$id": "146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1862,80 +1770,80 @@ }, "values": [ { - "$id": "155", + "$id": "147", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, { - "$id": "156", + "$id": "148", "kind": "enumvalue", "name": "developer", "value": "developer", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, { - "$id": "157", + "$id": "149", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, { - "$id": "158", + "$id": "150", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, { - "$id": "159", + "$id": "151", "kind": "enumvalue", "name": "tool", "value": "tool", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, { - "$id": "160", + "$id": "152", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] } @@ -1948,12 +1856,12 @@ "decorators": [] }, { - "$id": "161", + "$id": "153", "kind": "enum", "name": "ServiceTier", "crossLanguageDefinitionId": "OpenAI.ServiceTier", "valueType": { - "$id": "162", + "$id": "154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -1961,54 +1869,54 @@ }, "values": [ { - "$id": "163", + "$id": "155", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "162" + "$ref": "154" }, "enumType": { - "$ref": "161" + "$ref": "153" }, "decorators": [] }, { - "$id": "164", + "$id": "156", "kind": "enumvalue", "name": "default", "value": "default", "valueType": { - "$ref": "162" + "$ref": "154" }, "enumType": { - "$ref": "161" + "$ref": "153" }, "decorators": [] }, { - "$id": "165", + "$id": "157", "kind": "enumvalue", "name": "flex", "value": "flex", "valueType": { - "$ref": "162" + "$ref": "154" }, "enumType": { - "$ref": "161" + "$ref": "153" }, "decorators": [] }, { - "$id": "166", + "$id": "158", "kind": "enumvalue", "name": "scale", "value": "scale", "valueType": { - "$ref": "162" + "$ref": "154" }, "enumType": { - "$ref": "161" + "$ref": "153" }, "decorators": [] } @@ -2021,12 +1929,12 @@ "decorators": [] }, { - "$id": "167", + "$id": "159", "kind": "enum", "name": "ChatCompletionRequestMessageContentPartType", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartType", "valueType": { - "$id": "168", + "$id": "160", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -2034,67 +1942,67 @@ }, "values": [ { - "$id": "169", + "$id": "161", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "168" + "$ref": "160" }, "enumType": { - "$ref": "167" + "$ref": "159" }, "decorators": [] }, { - "$id": "170", + "$id": "162", "kind": "enumvalue", "name": "file", "value": "file", "valueType": { - "$ref": "168" + "$ref": "160" }, "enumType": { - "$ref": "167" + "$ref": "159" }, "decorators": [] }, { - "$id": "171", + "$id": "163", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "168" + "$ref": "160" }, "enumType": { - "$ref": "167" + "$ref": "159" }, "decorators": [] }, { - "$id": "172", + "$id": "164", "kind": "enumvalue", "name": "image_url", "value": "image_url", "valueType": { - "$ref": "168" + "$ref": "160" }, "enumType": { - "$ref": "167" + "$ref": "159" }, "decorators": [] }, { - "$id": "173", + "$id": "165", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "168" + "$ref": "160" }, "enumType": { - "$ref": "167" + "$ref": "159" }, "decorators": [] } @@ -2106,12 +2014,12 @@ "decorators": [] }, { - "$id": "174", + "$id": "166", "kind": "enum", "name": "ChatCompletionRequestMessageContentPartImageImageUrlDetail", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartImage.image_url.detail.anonymous", "valueType": { - "$id": "175", + "$id": "167", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -2119,41 +2027,41 @@ }, "values": [ { - "$id": "176", + "$id": "168", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "175" + "$ref": "167" }, "enumType": { - "$ref": "174" + "$ref": "166" }, "decorators": [] }, { - "$id": "177", + "$id": "169", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "175" + "$ref": "167" }, "enumType": { - "$ref": "174" + "$ref": "166" }, "decorators": [] }, { - "$id": "178", + "$id": "170", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "175" + "$ref": "167" }, "enumType": { - "$ref": "174" + "$ref": "166" }, "decorators": [] } @@ -2165,12 +2073,12 @@ "decorators": [] }, { - "$id": "179", + "$id": "171", "kind": "enum", "name": "ChatCompletionRequestMessageContentPartAudioInputAudioFormat", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartAudio.input_audio.format.anonymous", "valueType": { - "$id": "180", + "$id": "172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -2178,28 +2086,28 @@ }, "values": [ { - "$id": "181", + "$id": "173", "kind": "enumvalue", "name": "wav", "value": "wav", "valueType": { - "$ref": "180" + "$ref": "172" }, "enumType": { - "$ref": "179" + "$ref": "171" }, "decorators": [] }, { - "$id": "182", + "$id": "174", "kind": "enumvalue", "name": "mp3", "value": "mp3", "valueType": { - "$ref": "180" + "$ref": "172" }, "enumType": { - "$ref": "179" + "$ref": "171" }, "decorators": [] } @@ -2211,12 +2119,12 @@ "decorators": [] }, { - "$id": "183", + "$id": "175", "kind": "enum", "name": "ModelIdsShared", "crossLanguageDefinitionId": "OpenAI.ModelIdsShared", "valueType": { - "$id": "184", + "$id": "176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -2224,717 +2132,717 @@ }, "values": [ { - "$id": "185", + "$id": "177", "kind": "enumvalue", "name": "gpt-4.1", "value": "gpt-4.1", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "186", + "$id": "178", "kind": "enumvalue", "name": "gpt-4.1-mini", "value": "gpt-4.1-mini", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "187", + "$id": "179", "kind": "enumvalue", "name": "gpt-4.1-nano", "value": "gpt-4.1-nano", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "188", + "$id": "180", "kind": "enumvalue", "name": "gpt-4.1-2025-04-14", "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "189", + "$id": "181", "kind": "enumvalue", "name": "gpt-4.1-mini-2025-04-14", "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "190", + "$id": "182", "kind": "enumvalue", "name": "gpt-4.1-nano-2025-04-14", "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "191", + "$id": "183", "kind": "enumvalue", "name": "o4-mini", "value": "o4-mini", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "192", + "$id": "184", "kind": "enumvalue", "name": "o4-mini-2025-04-16", "value": "o4-mini-2025-04-16", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "193", + "$id": "185", "kind": "enumvalue", "name": "o3", "value": "o3", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "194", + "$id": "186", "kind": "enumvalue", "name": "o3-2025-04-16", "value": "o3-2025-04-16", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "195", + "$id": "187", "kind": "enumvalue", "name": "o3-mini", "value": "o3-mini", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "196", + "$id": "188", "kind": "enumvalue", "name": "o3-mini-2025-01-31", "value": "o3-mini-2025-01-31", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "197", + "$id": "189", "kind": "enumvalue", "name": "o1", "value": "o1", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "198", + "$id": "190", "kind": "enumvalue", "name": "o1-2024-12-17", "value": "o1-2024-12-17", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "199", + "$id": "191", "kind": "enumvalue", "name": "o1-preview", "value": "o1-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "200", + "$id": "192", "kind": "enumvalue", "name": "o1-preview-2024-09-12", "value": "o1-preview-2024-09-12", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "201", + "$id": "193", "kind": "enumvalue", "name": "o1-mini", "value": "o1-mini", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "202", + "$id": "194", "kind": "enumvalue", "name": "o1-mini-2024-09-12", "value": "o1-mini-2024-09-12", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "203", + "$id": "195", "kind": "enumvalue", "name": "gpt-4o", "value": "gpt-4o", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "204", + "$id": "196", "kind": "enumvalue", "name": "gpt-4o-2024-11-20", "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "205", + "$id": "197", "kind": "enumvalue", "name": "gpt-4o-2024-08-06", "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "206", + "$id": "198", "kind": "enumvalue", "name": "gpt-4o-2024-05-13", "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "207", + "$id": "199", "kind": "enumvalue", "name": "gpt-4o-audio-preview", "value": "gpt-4o-audio-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "208", + "$id": "200", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-10-01", "value": "gpt-4o-audio-preview-2024-10-01", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "209", + "$id": "201", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-12-17", "value": "gpt-4o-audio-preview-2024-12-17", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "210", + "$id": "202", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2025-06-03", "value": "gpt-4o-audio-preview-2025-06-03", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "211", + "$id": "203", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview", "value": "gpt-4o-mini-audio-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "212", + "$id": "204", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview-2024-12-17", "value": "gpt-4o-mini-audio-preview-2024-12-17", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "213", + "$id": "205", "kind": "enumvalue", "name": "gpt-4o-search-preview", "value": "gpt-4o-search-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "214", + "$id": "206", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview", "value": "gpt-4o-mini-search-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "215", + "$id": "207", "kind": "enumvalue", "name": "gpt-4o-search-preview-2025-03-11", "value": "gpt-4o-search-preview-2025-03-11", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "216", + "$id": "208", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview-2025-03-11", "value": "gpt-4o-mini-search-preview-2025-03-11", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "217", + "$id": "209", "kind": "enumvalue", "name": "chatgpt-4o-latest", "value": "chatgpt-4o-latest", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "218", + "$id": "210", "kind": "enumvalue", "name": "codex-mini-latest", "value": "codex-mini-latest", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "219", + "$id": "211", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "220", + "$id": "212", "kind": "enumvalue", "name": "gpt-4o-mini-2024-07-18", "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "221", + "$id": "213", "kind": "enumvalue", "name": "gpt-4-turbo", "value": "gpt-4-turbo", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "222", + "$id": "214", "kind": "enumvalue", "name": "gpt-4-turbo-2024-04-09", "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "223", + "$id": "215", "kind": "enumvalue", "name": "gpt-4-0125-preview", "value": "gpt-4-0125-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "224", + "$id": "216", "kind": "enumvalue", "name": "gpt-4-turbo-preview", "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "225", + "$id": "217", "kind": "enumvalue", "name": "gpt-4-1106-preview", "value": "gpt-4-1106-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "226", + "$id": "218", "kind": "enumvalue", "name": "gpt-4-vision-preview", "value": "gpt-4-vision-preview", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "227", + "$id": "219", "kind": "enumvalue", "name": "gpt-4", "value": "gpt-4", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "228", + "$id": "220", "kind": "enumvalue", "name": "gpt-4-0314", "value": "gpt-4-0314", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "229", + "$id": "221", "kind": "enumvalue", "name": "gpt-4-0613", "value": "gpt-4-0613", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "230", + "$id": "222", "kind": "enumvalue", "name": "gpt-4-32k", "value": "gpt-4-32k", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "231", + "$id": "223", "kind": "enumvalue", "name": "gpt-4-32k-0314", "value": "gpt-4-32k-0314", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "232", + "$id": "224", "kind": "enumvalue", "name": "gpt-4-32k-0613", "value": "gpt-4-32k-0613", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "233", + "$id": "225", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "234", + "$id": "226", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k", "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "235", + "$id": "227", "kind": "enumvalue", "name": "gpt-3.5-turbo-0301", "value": "gpt-3.5-turbo-0301", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "236", + "$id": "228", "kind": "enumvalue", "name": "gpt-3.5-turbo-0613", "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "237", + "$id": "229", "kind": "enumvalue", "name": "gpt-3.5-turbo-1106", "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "238", + "$id": "230", "kind": "enumvalue", "name": "gpt-3.5-turbo-0125", "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] }, { - "$id": "239", + "$id": "231", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k-0613", "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "184" + "$ref": "176" }, "enumType": { - "$ref": "183" + "$ref": "175" }, "decorators": [] } @@ -2946,12 +2854,12 @@ "decorators": [] }, { - "$id": "240", + "$id": "232", "kind": "enum", "name": "CreateChatCompletionRequestModality", "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionRequest.modality.anonymous", "valueType": { - "$id": "241", + "$id": "233", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -2959,28 +2867,28 @@ }, "values": [ { - "$id": "242", + "$id": "234", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "241" + "$ref": "233" }, "enumType": { - "$ref": "240" + "$ref": "232" }, "decorators": [] }, { - "$id": "243", + "$id": "235", "kind": "enumvalue", "name": "audio", "value": "audio", "valueType": { - "$ref": "241" + "$ref": "233" }, "enumType": { - "$ref": "240" + "$ref": "232" }, "decorators": [] } @@ -2992,12 +2900,12 @@ "decorators": [] }, { - "$id": "244", + "$id": "236", "kind": "enum", "name": "WebSearchContextSize", "crossLanguageDefinitionId": "OpenAI.WebSearchContextSize", "valueType": { - "$id": "245", + "$id": "237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3005,41 +2913,41 @@ }, "values": [ { - "$id": "246", + "$id": "238", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "245" + "$ref": "237" }, "enumType": { - "$ref": "244" + "$ref": "236" }, "decorators": [] }, { - "$id": "247", + "$id": "239", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "245" + "$ref": "237" }, "enumType": { - "$ref": "244" + "$ref": "236" }, "decorators": [] }, { - "$id": "248", + "$id": "240", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "245" + "$ref": "237" }, "enumType": { - "$ref": "244" + "$ref": "236" }, "decorators": [] } @@ -3052,12 +2960,12 @@ "decorators": [] }, { - "$id": "249", + "$id": "241", "kind": "enum", "name": "CreateChatCompletionRequestAudioFormat", "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionRequest.audio.format.anonymous", "valueType": { - "$id": "250", + "$id": "242", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3065,80 +2973,80 @@ }, "values": [ { - "$id": "251", + "$id": "243", "kind": "enumvalue", "name": "wav", "value": "wav", "valueType": { - "$ref": "250" + "$ref": "242" }, "enumType": { - "$ref": "249" + "$ref": "241" }, "decorators": [] }, { - "$id": "252", + "$id": "244", "kind": "enumvalue", "name": "aac", "value": "aac", "valueType": { - "$ref": "250" + "$ref": "242" }, "enumType": { - "$ref": "249" + "$ref": "241" }, "decorators": [] }, { - "$id": "253", + "$id": "245", "kind": "enumvalue", "name": "mp3", "value": "mp3", "valueType": { - "$ref": "250" + "$ref": "242" }, "enumType": { - "$ref": "249" + "$ref": "241" }, "decorators": [] }, { - "$id": "254", + "$id": "246", "kind": "enumvalue", "name": "flac", "value": "flac", "valueType": { - "$ref": "250" + "$ref": "242" }, "enumType": { - "$ref": "249" + "$ref": "241" }, "decorators": [] }, { - "$id": "255", + "$id": "247", "kind": "enumvalue", "name": "opus", "value": "opus", "valueType": { - "$ref": "250" + "$ref": "242" }, "enumType": { - "$ref": "249" + "$ref": "241" }, "decorators": [] }, { - "$id": "256", + "$id": "248", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "250" + "$ref": "242" }, "enumType": { - "$ref": "249" + "$ref": "241" }, "decorators": [] } @@ -3150,12 +3058,12 @@ "decorators": [] }, { - "$id": "257", + "$id": "249", "kind": "enum", "name": "ChatOutputPredictionType", "crossLanguageDefinitionId": "OpenAI.ChatOutputPredictionType", "valueType": { - "$id": "258", + "$id": "250", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3163,15 +3071,15 @@ }, "values": [ { - "$id": "259", + "$id": "251", "kind": "enumvalue", "name": "static_content", "value": "content", "valueType": { - "$ref": "258" + "$ref": "250" }, "enumType": { - "$ref": "257" + "$ref": "249" }, "decorators": [] } @@ -3183,12 +3091,12 @@ "decorators": [] }, { - "$id": "260", + "$id": "252", "kind": "enum", "name": "ChatToolKind", "crossLanguageDefinitionId": "OpenAI.ChatToolKind", "valueType": { - "$id": "261", + "$id": "253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3196,15 +3104,15 @@ }, "values": [ { - "$id": "262", + "$id": "254", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "261" + "$ref": "253" }, "enumType": { - "$ref": "260" + "$ref": "252" }, "decorators": [] } @@ -3216,12 +3124,12 @@ "decorators": [] }, { - "$id": "263", + "$id": "255", "kind": "enum", "name": "CreateChatCompletionRequestToolChoice", "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionRequest.tool_choice.anonymous", "valueType": { - "$id": "264", + "$id": "256", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3229,41 +3137,41 @@ }, "values": [ { - "$id": "265", + "$id": "257", "kind": "enumvalue", "name": "none", "value": "none", "valueType": { - "$ref": "264" + "$ref": "256" }, "enumType": { - "$ref": "263" + "$ref": "255" }, "decorators": [] }, { - "$id": "266", + "$id": "258", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "264" + "$ref": "256" }, "enumType": { - "$ref": "263" + "$ref": "255" }, "decorators": [] }, { - "$id": "267", + "$id": "259", "kind": "enumvalue", "name": "required", "value": "required", "valueType": { - "$ref": "264" + "$ref": "256" }, "enumType": { - "$ref": "263" + "$ref": "255" }, "decorators": [] } @@ -3275,12 +3183,97 @@ "decorators": [] }, { - "$id": "268", + "$id": "260", + "kind": "enum", + "name": "CreateChatCompletionStreamResponseChoiceFinishReason", + "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionStreamResponse.choice.finish_reason.anonymous", + "valueType": { + "$id": "261", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "262", + "kind": "enumvalue", + "name": "stop", + "value": "stop", + "valueType": { + "$ref": "261" + }, + "enumType": { + "$ref": "260" + }, + "decorators": [] + }, + { + "$id": "263", + "kind": "enumvalue", + "name": "length", + "value": "length", + "valueType": { + "$ref": "261" + }, + "enumType": { + "$ref": "260" + }, + "decorators": [] + }, + { + "$id": "264", + "kind": "enumvalue", + "name": "tool_calls", + "value": "tool_calls", + "valueType": { + "$ref": "261" + }, + "enumType": { + "$ref": "260" + }, + "decorators": [] + }, + { + "$id": "265", + "kind": "enumvalue", + "name": "content_filter", + "value": "content_filter", + "valueType": { + "$ref": "261" + }, + "enumType": { + "$ref": "260" + }, + "decorators": [] + }, + { + "$id": "266", + "kind": "enumvalue", + "name": "function_call", + "value": "function_call", + "valueType": { + "$ref": "261" + }, + "enumType": { + "$ref": "260" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output", + "decorators": [] + }, + { + "$id": "267", "kind": "enum", "name": "CreateEmbeddingRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateEmbeddingRequest.model.anonymous", "valueType": { - "$id": "269", + "$id": "268", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3288,41 +3281,41 @@ }, "values": [ { - "$id": "270", + "$id": "269", "kind": "enumvalue", "name": "text-embedding-ada-002", "value": "text-embedding-ada-002", "valueType": { - "$ref": "269" + "$ref": "268" }, "enumType": { - "$ref": "268" + "$ref": "267" }, "decorators": [] }, { - "$id": "271", + "$id": "270", "kind": "enumvalue", "name": "text-embedding-3-small", "value": "text-embedding-3-small", "valueType": { - "$ref": "269" + "$ref": "268" }, "enumType": { - "$ref": "268" + "$ref": "267" }, "decorators": [] }, { - "$id": "272", + "$id": "271", "kind": "enumvalue", "name": "text-embedding-3-large", "value": "text-embedding-3-large", "valueType": { - "$ref": "269" + "$ref": "268" }, "enumType": { - "$ref": "268" + "$ref": "267" }, "decorators": [] } @@ -3334,12 +3327,12 @@ "decorators": [] }, { - "$id": "273", + "$id": "272", "kind": "enum", "name": "CreateEmbeddingRequestEncodingFormat", "crossLanguageDefinitionId": "OpenAI.CreateEmbeddingRequest.encoding_format.anonymous", "valueType": { - "$id": "274", + "$id": "273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3347,28 +3340,28 @@ }, "values": [ { - "$id": "275", + "$id": "274", "kind": "enumvalue", "name": "float", "value": "float", "valueType": { - "$ref": "274" + "$ref": "273" }, "enumType": { - "$ref": "273" + "$ref": "272" }, "decorators": [] }, { - "$id": "276", + "$id": "275", "kind": "enumvalue", "name": "base64", "value": "base64", "valueType": { - "$ref": "274" + "$ref": "273" }, "enumType": { - "$ref": "273" + "$ref": "272" }, "decorators": [] } @@ -3380,12 +3373,12 @@ "decorators": [] }, { - "$id": "277", + "$id": "276", "kind": "enum", "name": "OpenAIFilePurpose", "crossLanguageDefinitionId": "OpenAI.OpenAIFile.purpose.anonymous", "valueType": { - "$id": "278", + "$id": "277", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3393,119 +3386,119 @@ }, "values": [ { - "$id": "279", + "$id": "278", "kind": "enumvalue", "name": "assistants", "value": "assistants", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "280", + "$id": "279", "kind": "enumvalue", "name": "assistants_output", "value": "assistants_output", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "281", + "$id": "280", "kind": "enumvalue", "name": "batch", "value": "batch", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "282", + "$id": "281", "kind": "enumvalue", "name": "batch_output", "value": "batch_output", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "283", + "$id": "282", "kind": "enumvalue", "name": "fine-tune", "value": "fine-tune", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "284", + "$id": "283", "kind": "enumvalue", "name": "fine-tune-results", "value": "fine-tune-results", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "285", + "$id": "284", "kind": "enumvalue", "name": "vision", "value": "vision", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "286", + "$id": "285", "kind": "enumvalue", "name": "user_data", "value": "user_data", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] }, { - "$id": "287", + "$id": "286", "kind": "enumvalue", "name": "evals", "value": "evals", "valueType": { - "$ref": "278" + "$ref": "277" }, "enumType": { - "$ref": "277" + "$ref": "276" }, "decorators": [] } @@ -3517,12 +3510,12 @@ "decorators": [] }, { - "$id": "288", + "$id": "287", "kind": "enum", "name": "OpenAIFileStatus", "crossLanguageDefinitionId": "OpenAI.OpenAIFile.status.anonymous", "valueType": { - "$id": "289", + "$id": "288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3530,41 +3523,41 @@ }, "values": [ { - "$id": "290", + "$id": "289", "kind": "enumvalue", "name": "uploaded", "value": "uploaded", "valueType": { - "$ref": "289" + "$ref": "288" }, "enumType": { - "$ref": "288" + "$ref": "287" }, "decorators": [] }, { - "$id": "291", + "$id": "290", "kind": "enumvalue", "name": "processed", "value": "processed", "valueType": { - "$ref": "289" + "$ref": "288" }, "enumType": { - "$ref": "288" + "$ref": "287" }, "decorators": [] }, { - "$id": "292", + "$id": "291", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "289" + "$ref": "288" }, "enumType": { - "$ref": "288" + "$ref": "287" }, "decorators": [] } @@ -3576,12 +3569,12 @@ "decorators": [] }, { - "$id": "293", + "$id": "292", "kind": "enum", "name": "CreateFileRequestPurpose", "crossLanguageDefinitionId": "OpenAI.CreateFileRequest.purpose.anonymous", "valueType": { - "$id": "294", + "$id": "293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3589,80 +3582,80 @@ }, "values": [ { - "$id": "295", + "$id": "294", "kind": "enumvalue", "name": "assistants", "value": "assistants", "valueType": { - "$ref": "294" + "$ref": "293" }, "enumType": { - "$ref": "293" + "$ref": "292" }, "decorators": [] }, { - "$id": "296", + "$id": "295", "kind": "enumvalue", "name": "batch", "value": "batch", "valueType": { - "$ref": "294" + "$ref": "293" }, "enumType": { - "$ref": "293" + "$ref": "292" }, "decorators": [] }, { - "$id": "297", + "$id": "296", "kind": "enumvalue", "name": "fine-tune", "value": "fine-tune", "valueType": { - "$ref": "294" + "$ref": "293" }, "enumType": { - "$ref": "293" + "$ref": "292" }, "decorators": [] }, { - "$id": "298", + "$id": "297", "kind": "enumvalue", "name": "vision", "value": "vision", "valueType": { - "$ref": "294" + "$ref": "293" }, "enumType": { - "$ref": "293" + "$ref": "292" }, "decorators": [] }, { - "$id": "299", + "$id": "298", "kind": "enumvalue", "name": "user_data", "value": "user_data", "valueType": { - "$ref": "294" + "$ref": "293" }, "enumType": { - "$ref": "293" + "$ref": "292" }, "decorators": [] }, { - "$id": "300", + "$id": "299", "kind": "enumvalue", "name": "evals", "value": "evals", "valueType": { - "$ref": "294" + "$ref": "293" }, "enumType": { - "$ref": "293" + "$ref": "292" }, "decorators": [] } @@ -3674,12 +3667,12 @@ "decorators": [] }, { - "$id": "301", + "$id": "300", "kind": "enum", "name": "CreateFineTuningJobRequestModel", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequest.model.anonymous", "valueType": { - "$id": "302", + "$id": "301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3687,54 +3680,54 @@ }, "values": [ { - "$id": "303", + "$id": "302", "kind": "enumvalue", "name": "babbage-002", "value": "babbage-002", "valueType": { - "$ref": "302" + "$ref": "301" }, "enumType": { - "$ref": "301" + "$ref": "300" }, "decorators": [] }, { - "$id": "304", + "$id": "303", "kind": "enumvalue", "name": "davinci-002", "value": "davinci-002", "valueType": { - "$ref": "302" + "$ref": "301" }, "enumType": { - "$ref": "301" + "$ref": "300" }, "decorators": [] }, { - "$id": "305", + "$id": "304", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "302" + "$ref": "301" }, "enumType": { - "$ref": "301" + "$ref": "300" }, "decorators": [] }, { - "$id": "306", + "$id": "305", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "302" + "$ref": "301" }, "enumType": { - "$ref": "301" + "$ref": "300" }, "decorators": [] } @@ -3746,12 +3739,12 @@ "decorators": [] }, { - "$id": "307", + "$id": "306", "kind": "enum", "name": "CreateFineTuningJobRequestIntegrationType", "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestIntegration.type.anonymous", "valueType": { - "$id": "308", + "$id": "307", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3759,15 +3752,15 @@ }, "values": [ { - "$id": "309", + "$id": "308", "kind": "enumvalue", "name": "wandb", "value": "wandb", "valueType": { - "$ref": "308" + "$ref": "307" }, "enumType": { - "$ref": "307" + "$ref": "306" }, "decorators": [] } @@ -3779,12 +3772,12 @@ "decorators": [] }, { - "$id": "310", + "$id": "309", "kind": "enum", "name": "FineTuneMethodType", "crossLanguageDefinitionId": "OpenAI.FineTuneMethod.type.anonymous", "valueType": { - "$id": "311", + "$id": "310", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3792,41 +3785,41 @@ }, "values": [ { - "$id": "312", + "$id": "311", "kind": "enumvalue", "name": "supervised", "value": "supervised", "valueType": { - "$ref": "311" + "$ref": "310" }, "enumType": { - "$ref": "310" + "$ref": "309" }, "decorators": [] }, { - "$id": "313", + "$id": "312", "kind": "enumvalue", "name": "dpo", "value": "dpo", "valueType": { - "$ref": "311" + "$ref": "310" }, "enumType": { - "$ref": "310" + "$ref": "309" }, "decorators": [] }, { - "$id": "314", + "$id": "313", "kind": "enumvalue", "name": "reinforcement", "value": "reinforcement", "valueType": { - "$ref": "311" + "$ref": "310" }, "enumType": { - "$ref": "310" + "$ref": "309" }, "decorators": [] } @@ -3838,12 +3831,12 @@ "decorators": [] }, { - "$id": "315", + "$id": "314", "kind": "enum", "name": "GraderType", "crossLanguageDefinitionId": "OpenAI.GraderType", "valueType": { - "$id": "316", + "$id": "315", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3851,80 +3844,80 @@ }, "values": [ { - "$id": "317", + "$id": "316", "kind": "enumvalue", "name": "string_check", "value": "string_check", "valueType": { - "$ref": "316" + "$ref": "315" }, "enumType": { - "$ref": "315" + "$ref": "314" }, "decorators": [] }, { - "$id": "318", + "$id": "317", "kind": "enumvalue", "name": "text_similarity", "value": "text_similarity", "valueType": { - "$ref": "316" + "$ref": "315" }, "enumType": { - "$ref": "315" + "$ref": "314" }, "decorators": [] }, { - "$id": "319", + "$id": "318", "kind": "enumvalue", "name": "score_model", "value": "score_model", "valueType": { - "$ref": "316" + "$ref": "315" }, "enumType": { - "$ref": "315" + "$ref": "314" }, "decorators": [] }, { - "$id": "320", + "$id": "319", "kind": "enumvalue", "name": "label_model", "value": "label_model", "valueType": { - "$ref": "316" + "$ref": "315" }, "enumType": { - "$ref": "315" + "$ref": "314" }, "decorators": [] }, { - "$id": "321", + "$id": "320", "kind": "enumvalue", "name": "python", "value": "python", "valueType": { - "$ref": "316" + "$ref": "315" }, "enumType": { - "$ref": "315" + "$ref": "314" }, "decorators": [] }, { - "$id": "322", + "$id": "321", "kind": "enumvalue", "name": "multi", "value": "multi", "valueType": { - "$ref": "316" + "$ref": "315" }, "enumType": { - "$ref": "315" + "$ref": "314" }, "decorators": [] } @@ -3936,12 +3929,12 @@ "decorators": [] }, { - "$id": "323", + "$id": "322", "kind": "enum", "name": "GraderStringCheckOperation", "crossLanguageDefinitionId": "OpenAI.GraderStringCheck.operation.anonymous", "valueType": { - "$id": "324", + "$id": "323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -3949,54 +3942,54 @@ }, "values": [ { - "$id": "325", + "$id": "324", "kind": "enumvalue", "name": "eq", "value": "eq", "valueType": { - "$ref": "324" + "$ref": "323" }, "enumType": { - "$ref": "323" + "$ref": "322" }, "decorators": [] }, { - "$id": "326", + "$id": "325", "kind": "enumvalue", "name": "ne", "value": "ne", "valueType": { - "$ref": "324" + "$ref": "323" }, "enumType": { - "$ref": "323" + "$ref": "322" }, "decorators": [] }, { - "$id": "327", + "$id": "326", "kind": "enumvalue", "name": "like", "value": "like", "valueType": { - "$ref": "324" + "$ref": "323" }, "enumType": { - "$ref": "323" + "$ref": "322" }, "decorators": [] }, { - "$id": "328", + "$id": "327", "kind": "enumvalue", "name": "ilike", "value": "ilike", "valueType": { - "$ref": "324" + "$ref": "323" }, "enumType": { - "$ref": "323" + "$ref": "322" }, "decorators": [] } @@ -4008,12 +4001,12 @@ "decorators": [] }, { - "$id": "329", + "$id": "328", "kind": "enum", "name": "GraderTextSimilarityEvaluationMetric", "crossLanguageDefinitionId": "OpenAI.GraderTextSimilarity.evaluation_metric.anonymous", "valueType": { - "$id": "330", + "$id": "329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4021,132 +4014,132 @@ }, "values": [ { - "$id": "331", + "$id": "330", "kind": "enumvalue", "name": "fuzzy_match", "value": "fuzzy_match", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "332", + "$id": "331", "kind": "enumvalue", "name": "bleu", "value": "bleu", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "333", + "$id": "332", "kind": "enumvalue", "name": "gleu", "value": "gleu", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "334", + "$id": "333", "kind": "enumvalue", "name": "meteor", "value": "meteor", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "335", + "$id": "334", "kind": "enumvalue", "name": "rouge_1", "value": "rouge_1", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "336", + "$id": "335", "kind": "enumvalue", "name": "rouge_2", "value": "rouge_2", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "337", + "$id": "336", "kind": "enumvalue", "name": "rouge_3", "value": "rouge_3", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "338", + "$id": "337", "kind": "enumvalue", "name": "rouge_4", "value": "rouge_4", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "339", + "$id": "338", "kind": "enumvalue", "name": "rouge_5", "value": "rouge_5", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] }, { - "$id": "340", + "$id": "339", "kind": "enumvalue", "name": "rouge_l", "value": "rouge_l", "valueType": { - "$ref": "330" + "$ref": "329" }, "enumType": { - "$ref": "329" + "$ref": "328" }, "decorators": [] } @@ -4158,12 +4151,12 @@ "decorators": [] }, { - "$id": "341", + "$id": "340", "kind": "enum", "name": "EvalItemRole", "crossLanguageDefinitionId": "OpenAI.EvalItem.role.anonymous", "valueType": { - "$id": "342", + "$id": "341", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4171,54 +4164,54 @@ }, "values": [ { - "$id": "343", + "$id": "342", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "342" + "$ref": "341" }, "enumType": { - "$ref": "341" + "$ref": "340" }, "decorators": [] }, { - "$id": "344", + "$id": "343", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "342" + "$ref": "341" }, "enumType": { - "$ref": "341" + "$ref": "340" }, "decorators": [] }, { - "$id": "345", + "$id": "344", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "342" + "$ref": "341" }, "enumType": { - "$ref": "341" + "$ref": "340" }, "decorators": [] }, { - "$id": "346", + "$id": "345", "kind": "enumvalue", "name": "developer", "value": "developer", "valueType": { - "$ref": "342" + "$ref": "341" }, "enumType": { - "$ref": "341" + "$ref": "340" }, "decorators": [] } @@ -4230,12 +4223,12 @@ "decorators": [] }, { - "$id": "347", + "$id": "346", "kind": "enum", "name": "EvalItemContentType", "crossLanguageDefinitionId": "OpenAI.EvalItemContentType", "valueType": { - "$id": "348", + "$id": "347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4243,28 +4236,28 @@ }, "values": [ { - "$id": "349", + "$id": "348", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "348" + "$ref": "347" }, "enumType": { - "$ref": "347" + "$ref": "346" }, "decorators": [] }, { - "$id": "350", + "$id": "349", "kind": "enumvalue", "name": "output_text", "value": "output_text", "valueType": { - "$ref": "348" + "$ref": "347" }, "enumType": { - "$ref": "347" + "$ref": "346" }, "decorators": [] } @@ -4276,12 +4269,12 @@ "decorators": [] }, { - "$id": "351", + "$id": "350", "kind": "enum", "name": "FineTuneReinforcementHyperparametersReasoningEffort", "crossLanguageDefinitionId": "OpenAI.FineTuneReinforcementHyperparameters.reasoning_effort.anonymous", "valueType": { - "$id": "352", + "$id": "351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4289,54 +4282,54 @@ }, "values": [ { - "$id": "353", + "$id": "352", "kind": "enumvalue", "name": "default", "value": "default", "valueType": { - "$ref": "352" + "$ref": "351" }, "enumType": { - "$ref": "351" + "$ref": "350" }, "decorators": [] }, { - "$id": "354", + "$id": "353", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "352" + "$ref": "351" }, "enumType": { - "$ref": "351" + "$ref": "350" }, "decorators": [] }, { - "$id": "355", + "$id": "354", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "352" + "$ref": "351" }, "enumType": { - "$ref": "351" + "$ref": "350" }, "decorators": [] }, { - "$id": "356", + "$id": "355", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "352" + "$ref": "351" }, "enumType": { - "$ref": "351" + "$ref": "350" }, "decorators": [] } @@ -4348,12 +4341,12 @@ "decorators": [] }, { - "$id": "357", + "$id": "356", "kind": "enum", "name": "FineTuningJobStatus", "crossLanguageDefinitionId": "OpenAI.FineTuningJob.status.anonymous", "valueType": { - "$id": "358", + "$id": "357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4361,80 +4354,80 @@ }, "values": [ { - "$id": "359", + "$id": "358", "kind": "enumvalue", "name": "validating_files", "value": "validating_files", "valueType": { - "$ref": "358" + "$ref": "357" }, "enumType": { - "$ref": "357" + "$ref": "356" }, "decorators": [] }, { - "$id": "360", + "$id": "359", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "358" + "$ref": "357" }, "enumType": { - "$ref": "357" + "$ref": "356" }, "decorators": [] }, { - "$id": "361", + "$id": "360", "kind": "enumvalue", "name": "running", "value": "running", "valueType": { - "$ref": "358" + "$ref": "357" }, "enumType": { - "$ref": "357" + "$ref": "356" }, "decorators": [] }, { - "$id": "362", + "$id": "361", "kind": "enumvalue", "name": "succeeded", "value": "succeeded", "valueType": { - "$ref": "358" + "$ref": "357" }, "enumType": { - "$ref": "357" + "$ref": "356" }, "decorators": [] }, { - "$id": "363", + "$id": "362", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "358" + "$ref": "357" }, "enumType": { - "$ref": "357" + "$ref": "356" }, "decorators": [] }, { - "$id": "364", + "$id": "363", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "358" + "$ref": "357" }, "enumType": { - "$ref": "357" + "$ref": "356" }, "decorators": [] } @@ -4446,12 +4439,12 @@ "decorators": [] }, { - "$id": "365", + "$id": "364", "kind": "enum", "name": "FineTuningIntegrationType", "crossLanguageDefinitionId": "OpenAI.FineTuningIntegration.type.anonymous", "valueType": { - "$id": "366", + "$id": "365", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4459,15 +4452,15 @@ }, "values": [ { - "$id": "367", + "$id": "366", "kind": "enumvalue", "name": "wandb", "value": "wandb", "valueType": { - "$ref": "366" + "$ref": "365" }, "enumType": { - "$ref": "365" + "$ref": "364" }, "decorators": [] } @@ -4479,12 +4472,12 @@ "decorators": [] }, { - "$id": "368", + "$id": "367", "kind": "enum", "name": "FineTuningJobEventLevel", "crossLanguageDefinitionId": "OpenAI.FineTuningJobEvent.level.anonymous", "valueType": { - "$id": "369", + "$id": "368", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4492,41 +4485,41 @@ }, "values": [ { - "$id": "370", + "$id": "369", "kind": "enumvalue", "name": "info", "value": "info", "valueType": { - "$ref": "369" + "$ref": "368" }, "enumType": { - "$ref": "368" + "$ref": "367" }, "decorators": [] }, { - "$id": "371", + "$id": "370", "kind": "enumvalue", "name": "warn", "value": "warn", "valueType": { - "$ref": "369" + "$ref": "368" }, "enumType": { - "$ref": "368" + "$ref": "367" }, "decorators": [] }, { - "$id": "372", + "$id": "371", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "369" + "$ref": "368" }, "enumType": { - "$ref": "368" + "$ref": "367" }, "decorators": [] } @@ -4538,12 +4531,12 @@ "decorators": [] }, { - "$id": "373", + "$id": "372", "kind": "enum", "name": "FineTuningJobEventType", "crossLanguageDefinitionId": "OpenAI.FineTuningJobEvent.type.anonymous", "valueType": { - "$id": "374", + "$id": "373", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4551,120 +4544,28 @@ }, "values": [ { - "$id": "375", + "$id": "374", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "374" + "$ref": "373" }, "enumType": { - "$ref": "373" + "$ref": "372" }, "decorators": [] }, { - "$id": "376", + "$id": "375", "kind": "enumvalue", "name": "metrics", "value": "metrics", "valueType": { - "$ref": "374" - }, - "enumType": { "$ref": "373" }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "377", - "kind": "enum", - "name": "ListEvalsRequestOrder", - "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrder.anonymous", - "valueType": { - "$id": "378", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "379", - "kind": "enumvalue", - "name": "asc", - "value": "asc", - "valueType": { - "$ref": "378" - }, - "enumType": { - "$ref": "377" - }, - "decorators": [] - }, - { - "$id": "380", - "kind": "enumvalue", - "name": "desc", - "value": "desc", - "valueType": { - "$ref": "378" - }, - "enumType": { - "$ref": "377" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "381", - "kind": "enum", - "name": "ListEvalsRequestOrderBy", - "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrderBy.anonymous", - "valueType": { - "$id": "382", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "383", - "kind": "enumvalue", - "name": "created_at", - "value": "created_at", - "valueType": { - "$ref": "382" - }, - "enumType": { - "$ref": "381" - }, - "decorators": [] - }, - { - "$id": "384", - "kind": "enumvalue", - "name": "updated_at", - "value": "updated_at", - "valueType": { - "$ref": "382" - }, "enumType": { - "$ref": "381" + "$ref": "372" }, "decorators": [] } @@ -4672,16 +4573,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input", + "usage": "Output,Json", "decorators": [] }, { - "$id": "385", + "$id": "376", "kind": "enum", "name": "EvalDataSourceConfigType", "crossLanguageDefinitionId": "OpenAI.EvalDataSourceConfigType", "valueType": { - "$id": "386", + "$id": "377", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4689,41 +4590,41 @@ }, "values": [ { - "$id": "387", + "$id": "378", "kind": "enumvalue", "name": "custom", "value": "custom", "valueType": { - "$ref": "386" + "$ref": "377" }, "enumType": { - "$ref": "385" + "$ref": "376" }, "decorators": [] }, { - "$id": "388", + "$id": "379", "kind": "enumvalue", "name": "logs", "value": "logs", "valueType": { - "$ref": "386" + "$ref": "377" }, "enumType": { - "$ref": "385" + "$ref": "376" }, "decorators": [] }, { - "$id": "389", + "$id": "380", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "386" + "$ref": "377" }, "enumType": { - "$ref": "385" + "$ref": "376" }, "decorators": [] } @@ -4735,143 +4636,12 @@ "decorators": [] }, { - "$id": "390", - "kind": "enum", - "name": "GetEvalRunsRequestOrder", - "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestOrder.anonymous", - "valueType": { - "$id": "391", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "392", - "kind": "enumvalue", - "name": "asc", - "value": "asc", - "valueType": { - "$ref": "391" - }, - "enumType": { - "$ref": "390" - }, - "decorators": [] - }, - { - "$id": "393", - "kind": "enumvalue", - "name": "desc", - "value": "desc", - "valueType": { - "$ref": "391" - }, - "enumType": { - "$ref": "390" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "394", - "kind": "enum", - "name": "GetEvalRunsRequestStatus", - "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestStatus.anonymous", - "valueType": { - "$id": "395", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "396", - "kind": "enumvalue", - "name": "queued", - "value": "queued", - "valueType": { - "$ref": "395" - }, - "enumType": { - "$ref": "394" - }, - "decorators": [] - }, - { - "$id": "397", - "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", - "valueType": { - "$ref": "395" - }, - "enumType": { - "$ref": "394" - }, - "decorators": [] - }, - { - "$id": "398", - "kind": "enumvalue", - "name": "completed", - "value": "completed", - "valueType": { - "$ref": "395" - }, - "enumType": { - "$ref": "394" - }, - "decorators": [] - }, - { - "$id": "399", - "kind": "enumvalue", - "name": "canceled", - "value": "canceled", - "valueType": { - "$ref": "395" - }, - "enumType": { - "$ref": "394" - }, - "decorators": [] - }, - { - "$id": "400", - "kind": "enumvalue", - "name": "failed", - "value": "failed", - "valueType": { - "$ref": "395" - }, - "enumType": { - "$ref": "394" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "401", + "$id": "381", "kind": "enum", "name": "EvalRunDataSourceType", "crossLanguageDefinitionId": "OpenAI.EvalRunDataSourceType", "valueType": { - "$id": "402", + "$id": "382", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4879,41 +4649,41 @@ }, "values": [ { - "$id": "403", + "$id": "383", "kind": "enumvalue", "name": "jsonl", "value": "jsonl", "valueType": { - "$ref": "402" + "$ref": "382" }, "enumType": { - "$ref": "401" + "$ref": "381" }, "decorators": [] }, { - "$id": "404", + "$id": "384", "kind": "enumvalue", "name": "completions", "value": "completions", "valueType": { - "$ref": "402" + "$ref": "382" }, "enumType": { - "$ref": "401" + "$ref": "381" }, "decorators": [] }, { - "$id": "405", + "$id": "385", "kind": "enumvalue", "name": "responses", "value": "responses", "valueType": { - "$ref": "402" + "$ref": "382" }, "enumType": { - "$ref": "401" + "$ref": "381" }, "decorators": [] } @@ -4925,12 +4695,12 @@ "decorators": [] }, { - "$id": "406", + "$id": "386", "kind": "enum", "name": "EvalRunDataContentSourceType", "crossLanguageDefinitionId": "OpenAI.EvalRunDataContentSourceType", "valueType": { - "$id": "407", + "$id": "387", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -4938,54 +4708,54 @@ }, "values": [ { - "$id": "408", + "$id": "388", "kind": "enumvalue", "name": "file_id", "value": "file_id", "valueType": { - "$ref": "407" + "$ref": "387" }, "enumType": { - "$ref": "406" + "$ref": "386" }, "decorators": [] }, { - "$id": "409", + "$id": "389", "kind": "enumvalue", "name": "file_content", "value": "file_content", "valueType": { - "$ref": "407" + "$ref": "387" }, "enumType": { - "$ref": "406" + "$ref": "386" }, "decorators": [] }, { - "$id": "410", + "$id": "390", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "407" + "$ref": "387" }, "enumType": { - "$ref": "406" + "$ref": "386" }, "decorators": [] }, { - "$id": "411", + "$id": "391", "kind": "enumvalue", "name": "responses", "value": "responses", "valueType": { - "$ref": "407" + "$ref": "387" }, "enumType": { - "$ref": "406" + "$ref": "386" }, "decorators": [] } @@ -4997,12 +4767,12 @@ "decorators": [] }, { - "$id": "412", + "$id": "392", "kind": "enum", "name": "ResponseTextFormatConfigurationType", "crossLanguageDefinitionId": "OpenAI.ResponseTextFormatConfigurationType", "valueType": { - "$id": "413", + "$id": "393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5010,41 +4780,41 @@ }, "values": [ { - "$id": "414", + "$id": "394", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "413" + "$ref": "393" }, "enumType": { - "$ref": "412" + "$ref": "392" }, "decorators": [] }, { - "$id": "415", + "$id": "395", "kind": "enumvalue", "name": "json_schema", "value": "json_schema", "valueType": { - "$ref": "413" + "$ref": "393" }, "enumType": { - "$ref": "412" + "$ref": "392" }, "decorators": [] }, { - "$id": "416", + "$id": "396", "kind": "enumvalue", "name": "json_object", "value": "json_object", "valueType": { - "$ref": "413" + "$ref": "393" }, "enumType": { - "$ref": "412" + "$ref": "392" }, "decorators": [] } @@ -5057,12 +4827,12 @@ "decorators": [] }, { - "$id": "417", + "$id": "397", "kind": "enum", "name": "ToolType", "crossLanguageDefinitionId": "OpenAI.ToolType", "valueType": { - "$id": "418", + "$id": "398", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5070,106 +4840,106 @@ }, "values": [ { - "$id": "419", + "$id": "399", "kind": "enumvalue", "name": "file_search", "value": "file_search", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] }, { - "$id": "420", + "$id": "400", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] }, { - "$id": "421", + "$id": "401", "kind": "enumvalue", "name": "computer_use_preview", "value": "computer_use_preview", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] }, { - "$id": "422", + "$id": "402", "kind": "enumvalue", "name": "web_search_preview", "value": "web_search_preview", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] }, { - "$id": "423", + "$id": "403", "kind": "enumvalue", "name": "mcp", "value": "mcp", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] }, { - "$id": "424", + "$id": "404", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] }, { - "$id": "425", + "$id": "405", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] }, { - "$id": "426", + "$id": "406", "kind": "enumvalue", "name": "local_shell", "value": "local_shell", "valueType": { - "$ref": "418" + "$ref": "398" }, "enumType": { - "$ref": "417" + "$ref": "397" }, "decorators": [] } @@ -5182,12 +4952,12 @@ "decorators": [] }, { - "$id": "427", + "$id": "407", "kind": "enum", "name": "RankingOptionsRanker", "crossLanguageDefinitionId": "OpenAI.RankingOptions.ranker.anonymous", "valueType": { - "$id": "428", + "$id": "408", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5195,28 +4965,28 @@ }, "values": [ { - "$id": "429", + "$id": "409", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "428" + "$ref": "408" }, "enumType": { - "$ref": "427" + "$ref": "407" }, "decorators": [] }, { - "$id": "430", + "$id": "410", "kind": "enumvalue", "name": "default-2024-11-15", "value": "default-2024-11-15", "valueType": { - "$ref": "428" + "$ref": "408" }, "enumType": { - "$ref": "427" + "$ref": "407" }, "decorators": [] } @@ -5228,12 +4998,12 @@ "decorators": [] }, { - "$id": "431", + "$id": "411", "kind": "enum", "name": "ComparisonFilterType", "crossLanguageDefinitionId": "OpenAI.ComparisonFilter.type.anonymous", "valueType": { - "$id": "432", + "$id": "412", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5241,80 +5011,80 @@ }, "values": [ { - "$id": "433", + "$id": "413", "kind": "enumvalue", "name": "eq", "value": "eq", "valueType": { - "$ref": "432" + "$ref": "412" }, "enumType": { - "$ref": "431" + "$ref": "411" }, "decorators": [] }, { - "$id": "434", + "$id": "414", "kind": "enumvalue", "name": "ne", "value": "ne", "valueType": { - "$ref": "432" + "$ref": "412" }, "enumType": { - "$ref": "431" + "$ref": "411" }, "decorators": [] }, { - "$id": "435", + "$id": "415", "kind": "enumvalue", "name": "gt", "value": "gt", "valueType": { - "$ref": "432" + "$ref": "412" }, "enumType": { - "$ref": "431" + "$ref": "411" }, "decorators": [] }, { - "$id": "436", + "$id": "416", "kind": "enumvalue", "name": "gte", "value": "gte", "valueType": { - "$ref": "432" + "$ref": "412" }, "enumType": { - "$ref": "431" + "$ref": "411" }, "decorators": [] }, { - "$id": "437", + "$id": "417", "kind": "enumvalue", "name": "lt", "value": "lt", "valueType": { - "$ref": "432" + "$ref": "412" }, "enumType": { - "$ref": "431" + "$ref": "411" }, "decorators": [] }, { - "$id": "438", + "$id": "418", "kind": "enumvalue", "name": "lte", "value": "lte", "valueType": { - "$ref": "432" + "$ref": "412" }, "enumType": { - "$ref": "431" + "$ref": "411" }, "decorators": [] } @@ -5326,12 +5096,12 @@ "decorators": [] }, { - "$id": "439", + "$id": "419", "kind": "enum", "name": "CompoundFilterType", "crossLanguageDefinitionId": "OpenAI.CompoundFilter.type.anonymous", "valueType": { - "$id": "440", + "$id": "420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5339,28 +5109,28 @@ }, "values": [ { - "$id": "441", + "$id": "421", "kind": "enumvalue", "name": "and", "value": "and", "valueType": { - "$ref": "440" + "$ref": "420" }, "enumType": { - "$ref": "439" + "$ref": "419" }, "decorators": [] }, { - "$id": "442", + "$id": "422", "kind": "enumvalue", "name": "or", "value": "or", "valueType": { - "$ref": "440" + "$ref": "420" }, "enumType": { - "$ref": "439" + "$ref": "419" }, "decorators": [] } @@ -5372,12 +5142,12 @@ "decorators": [] }, { - "$id": "443", + "$id": "423", "kind": "enum", "name": "ComputerUsePreviewToolEnvironment", "crossLanguageDefinitionId": "OpenAI.ComputerUsePreviewTool.environment.anonymous", "valueType": { - "$id": "444", + "$id": "424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5385,67 +5155,67 @@ }, "values": [ { - "$id": "445", + "$id": "425", "kind": "enumvalue", "name": "windows", "value": "windows", "valueType": { - "$ref": "444" + "$ref": "424" }, "enumType": { - "$ref": "443" + "$ref": "423" }, "decorators": [] }, { - "$id": "446", + "$id": "426", "kind": "enumvalue", "name": "mac", "value": "mac", "valueType": { - "$ref": "444" + "$ref": "424" }, "enumType": { - "$ref": "443" + "$ref": "423" }, "decorators": [] }, { - "$id": "447", + "$id": "427", "kind": "enumvalue", "name": "linux", "value": "linux", "valueType": { - "$ref": "444" + "$ref": "424" }, "enumType": { - "$ref": "443" + "$ref": "423" }, "decorators": [] }, { - "$id": "448", + "$id": "428", "kind": "enumvalue", "name": "ubuntu", "value": "ubuntu", "valueType": { - "$ref": "444" + "$ref": "424" }, "enumType": { - "$ref": "443" + "$ref": "423" }, "decorators": [] }, { - "$id": "449", + "$id": "429", "kind": "enumvalue", "name": "browser", "value": "browser", "valueType": { - "$ref": "444" + "$ref": "424" }, "enumType": { - "$ref": "443" + "$ref": "423" }, "decorators": [] } @@ -5457,12 +5227,12 @@ "decorators": [] }, { - "$id": "450", + "$id": "430", "kind": "enum", "name": "LocationType", "crossLanguageDefinitionId": "OpenAI.LocationType", "valueType": { - "$id": "451", + "$id": "431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5470,15 +5240,15 @@ }, "values": [ { - "$id": "452", + "$id": "432", "kind": "enumvalue", "name": "approximate", "value": "approximate", "valueType": { - "$ref": "451" + "$ref": "431" }, "enumType": { - "$ref": "450" + "$ref": "430" }, "decorators": [] } @@ -5490,12 +5260,12 @@ "decorators": [] }, { - "$id": "453", + "$id": "433", "kind": "enum", "name": "WebSearchPreviewToolSearchContextSize", "crossLanguageDefinitionId": "OpenAI.WebSearchPreviewTool.search_context_size.anonymous", "valueType": { - "$id": "454", + "$id": "434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5503,41 +5273,41 @@ }, "values": [ { - "$id": "455", + "$id": "435", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "454" + "$ref": "434" }, "enumType": { - "$ref": "453" + "$ref": "433" }, "decorators": [] }, { - "$id": "456", + "$id": "436", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "454" + "$ref": "434" }, "enumType": { - "$ref": "453" + "$ref": "433" }, "decorators": [] }, { - "$id": "457", + "$id": "437", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "454" + "$ref": "434" }, "enumType": { - "$ref": "453" + "$ref": "433" }, "decorators": [] } @@ -5549,12 +5319,12 @@ "decorators": [] }, { - "$id": "458", + "$id": "438", "kind": "enum", "name": "ImageGenToolQuality", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.quality.anonymous", "valueType": { - "$id": "459", + "$id": "439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5562,54 +5332,54 @@ }, "values": [ { - "$id": "460", + "$id": "440", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "459" + "$ref": "439" }, "enumType": { - "$ref": "458" + "$ref": "438" }, "decorators": [] }, { - "$id": "461", + "$id": "441", "kind": "enumvalue", "name": "medium", "value": "medium", "valueType": { - "$ref": "459" + "$ref": "439" }, "enumType": { - "$ref": "458" + "$ref": "438" }, "decorators": [] }, { - "$id": "462", + "$id": "442", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "459" + "$ref": "439" }, "enumType": { - "$ref": "458" + "$ref": "438" }, "decorators": [] }, { - "$id": "463", + "$id": "443", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "459" + "$ref": "439" }, "enumType": { - "$ref": "458" + "$ref": "438" }, "decorators": [] } @@ -5621,12 +5391,12 @@ "decorators": [] }, { - "$id": "464", + "$id": "444", "kind": "enum", "name": "ImageGenToolSize", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.size.anonymous", "valueType": { - "$id": "465", + "$id": "445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5634,54 +5404,54 @@ }, "values": [ { - "$id": "466", + "$id": "446", "kind": "enumvalue", "name": "1024x1024", "value": "1024x1024", "valueType": { - "$ref": "465" + "$ref": "445" }, "enumType": { - "$ref": "464" + "$ref": "444" }, "decorators": [] }, { - "$id": "467", + "$id": "447", "kind": "enumvalue", "name": "1024x1536", "value": "1024x1536", "valueType": { - "$ref": "465" + "$ref": "445" }, "enumType": { - "$ref": "464" + "$ref": "444" }, "decorators": [] }, { - "$id": "468", + "$id": "448", "kind": "enumvalue", "name": "1536x1024", "value": "1536x1024", "valueType": { - "$ref": "465" + "$ref": "445" }, "enumType": { - "$ref": "464" + "$ref": "444" }, "decorators": [] }, { - "$id": "469", + "$id": "449", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "465" + "$ref": "445" }, "enumType": { - "$ref": "464" + "$ref": "444" }, "decorators": [] } @@ -5693,12 +5463,12 @@ "decorators": [] }, { - "$id": "470", + "$id": "450", "kind": "enum", "name": "ImageGenToolOutputFormat", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.output_format.anonymous", "valueType": { - "$id": "471", + "$id": "451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5706,41 +5476,41 @@ }, "values": [ { - "$id": "472", + "$id": "452", "kind": "enumvalue", "name": "png", "value": "png", "valueType": { - "$ref": "471" + "$ref": "451" }, "enumType": { - "$ref": "470" + "$ref": "450" }, "decorators": [] }, { - "$id": "473", + "$id": "453", "kind": "enumvalue", "name": "webp", "value": "webp", "valueType": { - "$ref": "471" + "$ref": "451" }, "enumType": { - "$ref": "470" + "$ref": "450" }, "decorators": [] }, { - "$id": "474", + "$id": "454", "kind": "enumvalue", "name": "jpeg", "value": "jpeg", "valueType": { - "$ref": "471" + "$ref": "451" }, "enumType": { - "$ref": "470" + "$ref": "450" }, "decorators": [] } @@ -5752,12 +5522,12 @@ "decorators": [] }, { - "$id": "475", + "$id": "455", "kind": "enum", "name": "ImageGenToolModeration", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.moderation.anonymous", "valueType": { - "$id": "476", + "$id": "456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5765,28 +5535,28 @@ }, "values": [ { - "$id": "477", + "$id": "457", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "476" + "$ref": "456" }, "enumType": { - "$ref": "475" + "$ref": "455" }, "decorators": [] }, { - "$id": "478", + "$id": "458", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "476" + "$ref": "456" }, "enumType": { - "$ref": "475" + "$ref": "455" }, "decorators": [] } @@ -5798,12 +5568,12 @@ "decorators": [] }, { - "$id": "479", + "$id": "459", "kind": "enum", "name": "ImageGenToolBackground", "crossLanguageDefinitionId": "OpenAI.ImageGenTool.background.anonymous", "valueType": { - "$id": "480", + "$id": "460", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5811,41 +5581,41 @@ }, "values": [ { - "$id": "481", + "$id": "461", "kind": "enumvalue", "name": "transparent", "value": "transparent", "valueType": { - "$ref": "480" + "$ref": "460" }, "enumType": { - "$ref": "479" + "$ref": "459" }, "decorators": [] }, { - "$id": "482", + "$id": "462", "kind": "enumvalue", "name": "opaque", "value": "opaque", "valueType": { - "$ref": "480" + "$ref": "460" }, "enumType": { - "$ref": "479" + "$ref": "459" }, "decorators": [] }, { - "$id": "483", + "$id": "463", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "480" + "$ref": "460" }, "enumType": { - "$ref": "479" + "$ref": "459" }, "decorators": [] } @@ -5857,104 +5627,12 @@ "decorators": [] }, { - "$id": "484", - "kind": "enum", - "name": "GetEvalRunOutputItemsRequestStatus", - "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestStatus.anonymous", - "valueType": { - "$id": "485", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "486", - "kind": "enumvalue", - "name": "fail", - "value": "fail", - "valueType": { - "$ref": "485" - }, - "enumType": { - "$ref": "484" - }, - "decorators": [] - }, - { - "$id": "487", - "kind": "enumvalue", - "name": "pass", - "value": "pass", - "valueType": { - "$ref": "485" - }, - "enumType": { - "$ref": "484" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "488", - "kind": "enum", - "name": "GetEvalRunOutputItemsRequestOrder", - "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestOrder.anonymous", - "valueType": { - "$id": "489", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "490", - "kind": "enumvalue", - "name": "asc", - "value": "asc", - "valueType": { - "$ref": "489" - }, - "enumType": { - "$ref": "488" - }, - "decorators": [] - }, - { - "$id": "491", - "kind": "enumvalue", - "name": "desc", - "value": "desc", - "valueType": { - "$ref": "489" - }, - "enumType": { - "$ref": "488" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "492", + "$id": "464", "kind": "enum", "name": "ModelIdsResponses", "crossLanguageDefinitionId": "OpenAI.ModelIdsResponses", "valueType": { - "$id": "493", + "$id": "465", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -5962,795 +5640,795 @@ }, "values": [ { - "$id": "494", + "$id": "466", "kind": "enumvalue", "name": "gpt-4.1", "value": "gpt-4.1", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "495", + "$id": "467", "kind": "enumvalue", "name": "gpt-4.1-mini", "value": "gpt-4.1-mini", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "496", + "$id": "468", "kind": "enumvalue", "name": "gpt-4.1-nano", "value": "gpt-4.1-nano", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "497", + "$id": "469", "kind": "enumvalue", "name": "gpt-4.1-2025-04-14", "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "498", + "$id": "470", "kind": "enumvalue", "name": "gpt-4.1-mini-2025-04-14", "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "499", + "$id": "471", "kind": "enumvalue", "name": "gpt-4.1-nano-2025-04-14", "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "500", + "$id": "472", "kind": "enumvalue", "name": "o4-mini", "value": "o4-mini", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "501", + "$id": "473", "kind": "enumvalue", "name": "o4-mini-2025-04-16", "value": "o4-mini-2025-04-16", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "502", + "$id": "474", "kind": "enumvalue", "name": "o3", "value": "o3", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "503", + "$id": "475", "kind": "enumvalue", "name": "o3-2025-04-16", "value": "o3-2025-04-16", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "504", + "$id": "476", "kind": "enumvalue", "name": "o3-mini", "value": "o3-mini", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "505", + "$id": "477", "kind": "enumvalue", "name": "o3-mini-2025-01-31", "value": "o3-mini-2025-01-31", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "506", + "$id": "478", "kind": "enumvalue", "name": "o1", "value": "o1", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "507", + "$id": "479", "kind": "enumvalue", "name": "o1-2024-12-17", "value": "o1-2024-12-17", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "508", + "$id": "480", "kind": "enumvalue", "name": "o1-preview", "value": "o1-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "509", + "$id": "481", "kind": "enumvalue", "name": "o1-preview-2024-09-12", "value": "o1-preview-2024-09-12", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "510", + "$id": "482", "kind": "enumvalue", "name": "o1-mini", "value": "o1-mini", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "511", + "$id": "483", "kind": "enumvalue", "name": "o1-mini-2024-09-12", "value": "o1-mini-2024-09-12", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "512", + "$id": "484", "kind": "enumvalue", "name": "gpt-4o", "value": "gpt-4o", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "513", + "$id": "485", "kind": "enumvalue", "name": "gpt-4o-2024-11-20", "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "514", + "$id": "486", "kind": "enumvalue", "name": "gpt-4o-2024-08-06", "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "515", + "$id": "487", "kind": "enumvalue", "name": "gpt-4o-2024-05-13", "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "516", + "$id": "488", "kind": "enumvalue", "name": "gpt-4o-audio-preview", "value": "gpt-4o-audio-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "517", + "$id": "489", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-10-01", "value": "gpt-4o-audio-preview-2024-10-01", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "518", + "$id": "490", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2024-12-17", "value": "gpt-4o-audio-preview-2024-12-17", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "519", + "$id": "491", "kind": "enumvalue", "name": "gpt-4o-audio-preview-2025-06-03", "value": "gpt-4o-audio-preview-2025-06-03", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "520", + "$id": "492", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview", "value": "gpt-4o-mini-audio-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "521", + "$id": "493", "kind": "enumvalue", "name": "gpt-4o-mini-audio-preview-2024-12-17", "value": "gpt-4o-mini-audio-preview-2024-12-17", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "522", + "$id": "494", "kind": "enumvalue", "name": "gpt-4o-search-preview", "value": "gpt-4o-search-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "523", + "$id": "495", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview", "value": "gpt-4o-mini-search-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "524", + "$id": "496", "kind": "enumvalue", "name": "gpt-4o-search-preview-2025-03-11", "value": "gpt-4o-search-preview-2025-03-11", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "525", + "$id": "497", "kind": "enumvalue", "name": "gpt-4o-mini-search-preview-2025-03-11", "value": "gpt-4o-mini-search-preview-2025-03-11", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "526", + "$id": "498", "kind": "enumvalue", "name": "chatgpt-4o-latest", "value": "chatgpt-4o-latest", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "527", + "$id": "499", "kind": "enumvalue", "name": "codex-mini-latest", "value": "codex-mini-latest", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "528", + "$id": "500", "kind": "enumvalue", "name": "gpt-4o-mini", "value": "gpt-4o-mini", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "529", + "$id": "501", "kind": "enumvalue", "name": "gpt-4o-mini-2024-07-18", "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "530", + "$id": "502", "kind": "enumvalue", "name": "gpt-4-turbo", "value": "gpt-4-turbo", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "531", + "$id": "503", "kind": "enumvalue", "name": "gpt-4-turbo-2024-04-09", "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "532", + "$id": "504", "kind": "enumvalue", "name": "gpt-4-0125-preview", "value": "gpt-4-0125-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "533", + "$id": "505", "kind": "enumvalue", "name": "gpt-4-turbo-preview", "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "534", + "$id": "506", "kind": "enumvalue", "name": "gpt-4-1106-preview", "value": "gpt-4-1106-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "535", + "$id": "507", "kind": "enumvalue", "name": "gpt-4-vision-preview", "value": "gpt-4-vision-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "536", + "$id": "508", "kind": "enumvalue", "name": "gpt-4", "value": "gpt-4", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "537", + "$id": "509", "kind": "enumvalue", "name": "gpt-4-0314", "value": "gpt-4-0314", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "538", + "$id": "510", "kind": "enumvalue", "name": "gpt-4-0613", "value": "gpt-4-0613", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "539", + "$id": "511", "kind": "enumvalue", "name": "gpt-4-32k", "value": "gpt-4-32k", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "540", + "$id": "512", "kind": "enumvalue", "name": "gpt-4-32k-0314", "value": "gpt-4-32k-0314", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "541", + "$id": "513", "kind": "enumvalue", "name": "gpt-4-32k-0613", "value": "gpt-4-32k-0613", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "542", + "$id": "514", "kind": "enumvalue", "name": "gpt-3.5-turbo", "value": "gpt-3.5-turbo", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "543", + "$id": "515", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k", "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "544", + "$id": "516", "kind": "enumvalue", "name": "gpt-3.5-turbo-0301", "value": "gpt-3.5-turbo-0301", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "545", + "$id": "517", "kind": "enumvalue", "name": "gpt-3.5-turbo-0613", "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "546", + "$id": "518", "kind": "enumvalue", "name": "gpt-3.5-turbo-1106", "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "547", + "$id": "519", "kind": "enumvalue", "name": "gpt-3.5-turbo-0125", "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "548", + "$id": "520", "kind": "enumvalue", "name": "gpt-3.5-turbo-16k-0613", "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "549", + "$id": "521", "kind": "enumvalue", "name": "o1-pro", "value": "o1-pro", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "550", + "$id": "522", "kind": "enumvalue", "name": "o1-pro-2025-03-19", "value": "o1-pro-2025-03-19", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "551", + "$id": "523", "kind": "enumvalue", "name": "o3-pro", "value": "o3-pro", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "552", + "$id": "524", "kind": "enumvalue", "name": "o3-pro-2025-06-10", "value": "o3-pro-2025-06-10", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "553", + "$id": "525", "kind": "enumvalue", "name": "computer-use-preview", "value": "computer-use-preview", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] }, { - "$id": "554", + "$id": "526", "kind": "enumvalue", "name": "computer-use-preview-2025-03-11", "value": "computer-use-preview-2025-03-11", "valueType": { - "$ref": "493" + "$ref": "465" }, "enumType": { - "$ref": "492" + "$ref": "464" }, "decorators": [] } @@ -6762,12 +6440,12 @@ "decorators": [] }, { - "$id": "555", + "$id": "527", "kind": "enum", - "name": "ToolChoiceOptions", - "crossLanguageDefinitionId": "OpenAI.ToolChoiceOptions", + "name": "ReasoningSummary", + "crossLanguageDefinitionId": "OpenAI.Reasoning.summary.anonymous", "valueType": { - "$id": "556", + "$id": "528", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6775,59 +6453,58 @@ }, "values": [ { - "$id": "557", + "$id": "529", "kind": "enumvalue", - "name": "none", - "value": "none", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "556" + "$ref": "528" }, "enumType": { - "$ref": "555" + "$ref": "527" }, "decorators": [] }, { - "$id": "558", + "$id": "530", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "concise", + "value": "concise", "valueType": { - "$ref": "556" + "$ref": "528" }, "enumType": { - "$ref": "555" + "$ref": "527" }, "decorators": [] }, { - "$id": "559", + "$id": "531", "kind": "enumvalue", - "name": "required", - "value": "required", + "name": "detailed", + "value": "detailed", "valueType": { - "$ref": "556" + "$ref": "528" }, "enumType": { - "$ref": "555" + "$ref": "527" }, "decorators": [] } ], - "namespace": "OpenAI", - "doc": "Controls which (if any) tool is called by the model.\n\n`none` means the model will not call any tool and instead generates a message.\n\n`auto` means the model can pick between generating a message or calling one or\nmore tools.\n\n`required` means the model must call one or more tools.", + "namespace": "", "isFixed": true, "isFlags": false, "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "560", + "$id": "532", "kind": "enum", - "name": "ToolChoiceObjectType", - "crossLanguageDefinitionId": "OpenAI.ToolChoiceObjectType", + "name": "ReasoningGenerateSummary", + "crossLanguageDefinitionId": "OpenAI.Reasoning.generate_summary.anonymous", "valueType": { - "$id": "561", + "$id": "533", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6835,93 +6512,212 @@ }, "values": [ { - "$id": "562", + "$id": "534", "kind": "enumvalue", - "name": "file_search", - "value": "file_search", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "561" + "$ref": "533" }, "enumType": { - "$ref": "560" + "$ref": "532" }, "decorators": [] }, { - "$id": "563", + "$id": "535", "kind": "enumvalue", - "name": "function", - "value": "function", + "name": "concise", + "value": "concise", "valueType": { - "$ref": "561" + "$ref": "533" }, "enumType": { - "$ref": "560" + "$ref": "532" }, "decorators": [] }, { - "$id": "564", + "$id": "536", "kind": "enumvalue", - "name": "computer", - "value": "computer_use_preview", + "name": "detailed", + "value": "detailed", "valueType": { - "$ref": "561" + "$ref": "533" }, "enumType": { - "$ref": "560" + "$ref": "532" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output,Json", + "decorators": [] + }, + { + "$id": "537", + "kind": "enum", + "name": "ToolChoiceOptions", + "crossLanguageDefinitionId": "OpenAI.ToolChoiceOptions", + "valueType": { + "$id": "538", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "565", + "$id": "539", "kind": "enumvalue", - "name": "web_search", - "value": "web_search_preview", + "name": "none", + "value": "none", "valueType": { - "$ref": "561" + "$ref": "538" }, "enumType": { - "$ref": "560" + "$ref": "537" }, "decorators": [] }, { - "$id": "566", + "$id": "540", "kind": "enumvalue", - "name": "image_generation", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "538" + }, + "enumType": { + "$ref": "537" + }, + "decorators": [] + }, + { + "$id": "541", + "kind": "enumvalue", + "name": "required", + "value": "required", + "valueType": { + "$ref": "538" + }, + "enumType": { + "$ref": "537" + }, + "decorators": [] + } + ], + "namespace": "OpenAI", + "doc": "Controls which (if any) tool is called by the model.\n\n`none` means the model will not call any tool and instead generates a message.\n\n`auto` means the model can pick between generating a message or calling one or\nmore tools.\n\n`required` means the model must call one or more tools.", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output,Json", + "decorators": [] + }, + { + "$id": "542", + "kind": "enum", + "name": "ToolChoiceObjectType", + "crossLanguageDefinitionId": "OpenAI.ToolChoiceObjectType", + "valueType": { + "$id": "543", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "544", + "kind": "enumvalue", + "name": "file_search", + "value": "file_search", + "valueType": { + "$ref": "543" + }, + "enumType": { + "$ref": "542" + }, + "decorators": [] + }, + { + "$id": "545", + "kind": "enumvalue", + "name": "function", + "value": "function", + "valueType": { + "$ref": "543" + }, + "enumType": { + "$ref": "542" + }, + "decorators": [] + }, + { + "$id": "546", + "kind": "enumvalue", + "name": "computer", + "value": "computer_use_preview", + "valueType": { + "$ref": "543" + }, + "enumType": { + "$ref": "542" + }, + "decorators": [] + }, + { + "$id": "547", + "kind": "enumvalue", + "name": "web_search", + "value": "web_search_preview", + "valueType": { + "$ref": "543" + }, + "enumType": { + "$ref": "542" + }, + "decorators": [] + }, + { + "$id": "548", + "kind": "enumvalue", + "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "561" + "$ref": "543" }, "enumType": { - "$ref": "560" + "$ref": "542" }, "decorators": [] }, { - "$id": "567", + "$id": "549", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "561" + "$ref": "543" }, "enumType": { - "$ref": "560" + "$ref": "542" }, "decorators": [] }, { - "$id": "568", + "$id": "550", "kind": "enumvalue", "name": "mcp", "value": "mcp", "valueType": { - "$ref": "561" + "$ref": "543" }, "enumType": { - "$ref": "560" + "$ref": "542" }, "decorators": [] } @@ -6934,12 +6730,58 @@ "decorators": [] }, { - "$id": "569", + "$id": "551", + "kind": "enum", + "name": "CreateResponseTruncation", + "crossLanguageDefinitionId": "OpenAI.CreateResponse.truncation.anonymous", + "valueType": { + "$id": "552", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "553", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "552" + }, + "enumType": { + "$ref": "551" + }, + "decorators": [] + }, + { + "$id": "554", + "kind": "enumvalue", + "name": "disabled", + "value": "disabled", + "valueType": { + "$ref": "552" + }, + "enumType": { + "$ref": "551" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output,Json", + "decorators": [] + }, + { + "$id": "555", "kind": "enum", "name": "ItemContentType", "crossLanguageDefinitionId": "OpenAI.ItemContentType", "valueType": { - "$id": "570", + "$id": "556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -6947,93 +6789,93 @@ }, "values": [ { - "$id": "571", + "$id": "557", "kind": "enumvalue", "name": "input_text", "value": "input_text", "valueType": { - "$ref": "570" + "$ref": "556" }, "enumType": { - "$ref": "569" + "$ref": "555" }, "decorators": [] }, { - "$id": "572", + "$id": "558", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "570" + "$ref": "556" }, "enumType": { - "$ref": "569" + "$ref": "555" }, "decorators": [] }, { - "$id": "573", + "$id": "559", "kind": "enumvalue", "name": "input_image", "value": "input_image", "valueType": { - "$ref": "570" + "$ref": "556" }, "enumType": { - "$ref": "569" + "$ref": "555" }, "decorators": [] }, { - "$id": "574", + "$id": "560", "kind": "enumvalue", "name": "input_file", "value": "input_file", "valueType": { - "$ref": "570" + "$ref": "556" }, "enumType": { - "$ref": "569" + "$ref": "555" }, "decorators": [] }, { - "$id": "575", + "$id": "561", "kind": "enumvalue", "name": "output_text", "value": "output_text", "valueType": { - "$ref": "570" + "$ref": "556" }, "enumType": { - "$ref": "569" + "$ref": "555" }, "decorators": [] }, { - "$id": "576", + "$id": "562", "kind": "enumvalue", "name": "output_audio", "value": "output_audio", "valueType": { - "$ref": "570" + "$ref": "556" }, "enumType": { - "$ref": "569" + "$ref": "555" }, "decorators": [] }, { - "$id": "577", + "$id": "563", "kind": "enumvalue", "name": "refusal", "value": "refusal", "valueType": { - "$ref": "570" + "$ref": "556" }, "enumType": { - "$ref": "569" + "$ref": "555" }, "decorators": [] } @@ -7046,12 +6888,12 @@ "decorators": [] }, { - "$id": "578", + "$id": "564", "kind": "enum", "name": "ItemContentInputAudioFormat", "crossLanguageDefinitionId": "OpenAI.ItemContentInputAudio.format.anonymous", "valueType": { - "$id": "579", + "$id": "565", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7059,28 +6901,28 @@ }, "values": [ { - "$id": "580", + "$id": "566", "kind": "enumvalue", "name": "mp3", "value": "mp3", "valueType": { - "$ref": "579" + "$ref": "565" }, "enumType": { - "$ref": "578" + "$ref": "564" }, "decorators": [] }, { - "$id": "581", + "$id": "567", "kind": "enumvalue", "name": "wav", "value": "wav", "valueType": { - "$ref": "579" + "$ref": "565" }, "enumType": { - "$ref": "578" + "$ref": "564" }, "decorators": [] } @@ -7092,12 +6934,12 @@ "decorators": [] }, { - "$id": "582", + "$id": "568", "kind": "enum", "name": "ItemContentInputImageDetail", "crossLanguageDefinitionId": "OpenAI.ItemContentInputImage.detail.anonymous", "valueType": { - "$id": "583", + "$id": "569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7105,41 +6947,41 @@ }, "values": [ { - "$id": "584", + "$id": "570", "kind": "enumvalue", "name": "low", "value": "low", "valueType": { - "$ref": "583" + "$ref": "569" }, "enumType": { - "$ref": "582" + "$ref": "568" }, "decorators": [] }, { - "$id": "585", + "$id": "571", "kind": "enumvalue", "name": "high", "value": "high", "valueType": { - "$ref": "583" + "$ref": "569" }, "enumType": { - "$ref": "582" + "$ref": "568" }, "decorators": [] }, { - "$id": "586", + "$id": "572", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "583" + "$ref": "569" }, "enumType": { - "$ref": "582" + "$ref": "568" }, "decorators": [] } @@ -7151,12 +6993,12 @@ "decorators": [] }, { - "$id": "587", + "$id": "573", "kind": "enum", "name": "AnnotationType", "crossLanguageDefinitionId": "OpenAI.AnnotationType", "valueType": { - "$id": "588", + "$id": "574", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7164,54 +7006,54 @@ }, "values": [ { - "$id": "589", + "$id": "575", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "588" + "$ref": "574" }, "enumType": { - "$ref": "587" + "$ref": "573" }, "decorators": [] }, { - "$id": "590", + "$id": "576", "kind": "enumvalue", "name": "url_citation", "value": "url_citation", "valueType": { - "$ref": "588" + "$ref": "574" }, "enumType": { - "$ref": "587" + "$ref": "573" }, "decorators": [] }, { - "$id": "591", + "$id": "577", "kind": "enumvalue", "name": "file_path", "value": "file_path", "valueType": { - "$ref": "588" + "$ref": "574" }, "enumType": { - "$ref": "587" + "$ref": "573" }, "decorators": [] }, { - "$id": "592", + "$id": "578", "kind": "enumvalue", "name": "container_file_citation", "value": "container_file_citation", "valueType": { - "$ref": "588" + "$ref": "574" }, "enumType": { - "$ref": "587" + "$ref": "573" }, "decorators": [] } @@ -7223,12 +7065,12 @@ "decorators": [] }, { - "$id": "593", + "$id": "579", "kind": "enum", "name": "ItemType", "crossLanguageDefinitionId": "OpenAI.ItemType", "valueType": { - "$id": "594", + "$id": "580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7236,223 +7078,223 @@ }, "values": [ { - "$id": "595", + "$id": "581", "kind": "enumvalue", "name": "message", "value": "message", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "596", + "$id": "582", "kind": "enumvalue", "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "597", + "$id": "583", "kind": "enumvalue", "name": "function_call", "value": "function_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "598", + "$id": "584", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "599", + "$id": "585", "kind": "enumvalue", "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "600", + "$id": "586", "kind": "enumvalue", "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "601", + "$id": "587", "kind": "enumvalue", "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "602", + "$id": "588", "kind": "enumvalue", "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "603", + "$id": "589", "kind": "enumvalue", "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "604", + "$id": "590", "kind": "enumvalue", "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "605", + "$id": "591", "kind": "enumvalue", "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "606", + "$id": "592", "kind": "enumvalue", "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "607", + "$id": "593", "kind": "enumvalue", "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "608", + "$id": "594", "kind": "enumvalue", "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "609", + "$id": "595", "kind": "enumvalue", "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "610", + "$id": "596", "kind": "enumvalue", "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] }, { - "$id": "611", + "$id": "597", "kind": "enumvalue", "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "594" + "$ref": "580" }, "enumType": { - "$ref": "593" + "$ref": "579" }, "decorators": [] } @@ -7464,12 +7306,12 @@ "decorators": [] }, { - "$id": "612", + "$id": "598", "kind": "enum", "name": "ComputerActionType", "crossLanguageDefinitionId": "OpenAI.ComputerActionType", "valueType": { - "$id": "613", + "$id": "599", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7477,119 +7319,119 @@ }, "values": [ { - "$id": "614", + "$id": "600", "kind": "enumvalue", "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "615", + "$id": "601", "kind": "enumvalue", "name": "click", "value": "click", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "616", + "$id": "602", "kind": "enumvalue", "name": "double_click", "value": "double_click", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "617", + "$id": "603", "kind": "enumvalue", "name": "scroll", "value": "scroll", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "618", + "$id": "604", "kind": "enumvalue", "name": "type", "value": "type", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "619", + "$id": "605", "kind": "enumvalue", "name": "wait", "value": "wait", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "620", + "$id": "606", "kind": "enumvalue", "name": "keypress", "value": "keypress", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "621", + "$id": "607", "kind": "enumvalue", "name": "drag", "value": "drag", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] }, { - "$id": "622", + "$id": "608", "kind": "enumvalue", "name": "move", "value": "move", "valueType": { - "$ref": "613" + "$ref": "599" }, "enumType": { - "$ref": "612" + "$ref": "598" }, "decorators": [] } @@ -7601,12 +7443,12 @@ "decorators": [] }, { - "$id": "623", + "$id": "609", "kind": "enum", "name": "ComputerActionClickButton", "crossLanguageDefinitionId": "OpenAI.ComputerActionClick.button.anonymous", "valueType": { - "$id": "624", + "$id": "610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7614,67 +7456,67 @@ }, "values": [ { - "$id": "625", + "$id": "611", "kind": "enumvalue", "name": "left", "value": "left", "valueType": { - "$ref": "624" + "$ref": "610" }, "enumType": { - "$ref": "623" + "$ref": "609" }, "decorators": [] }, { - "$id": "626", + "$id": "612", "kind": "enumvalue", "name": "right", "value": "right", "valueType": { - "$ref": "624" + "$ref": "610" }, "enumType": { - "$ref": "623" + "$ref": "609" }, "decorators": [] }, { - "$id": "627", + "$id": "613", "kind": "enumvalue", "name": "wheel", "value": "wheel", "valueType": { - "$ref": "624" + "$ref": "610" }, "enumType": { - "$ref": "623" + "$ref": "609" }, "decorators": [] }, { - "$id": "628", + "$id": "614", "kind": "enumvalue", "name": "back", "value": "back", "valueType": { - "$ref": "624" + "$ref": "610" }, "enumType": { - "$ref": "623" + "$ref": "609" }, "decorators": [] }, { - "$id": "629", + "$id": "615", "kind": "enumvalue", "name": "forward", "value": "forward", "valueType": { - "$ref": "624" + "$ref": "610" }, "enumType": { - "$ref": "623" + "$ref": "609" }, "decorators": [] } @@ -7686,12 +7528,12 @@ "decorators": [] }, { - "$id": "630", + "$id": "616", "kind": "enum", "name": "ComputerToolCallOutputItemOutputType", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallOutputItemOutputType", "valueType": { - "$id": "631", + "$id": "617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7699,15 +7541,15 @@ }, "values": [ { - "$id": "632", + "$id": "618", "kind": "enumvalue", "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "631" + "$ref": "617" }, "enumType": { - "$ref": "630" + "$ref": "616" }, "decorators": [] } @@ -7720,12 +7562,12 @@ "decorators": [] }, { - "$id": "633", + "$id": "619", "kind": "enum", "name": "ReasoningItemSummaryPartType", "crossLanguageDefinitionId": "OpenAI.ReasoningItemSummaryPartType", "valueType": { - "$id": "634", + "$id": "620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7733,15 +7575,15 @@ }, "values": [ { - "$id": "635", + "$id": "621", "kind": "enumvalue", "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "634" + "$ref": "620" }, "enumType": { - "$ref": "633" + "$ref": "619" }, "decorators": [] } @@ -7753,12 +7595,12 @@ "decorators": [] }, { - "$id": "636", + "$id": "622", "kind": "enum", "name": "ResponsesMessageRole", "crossLanguageDefinitionId": "OpenAI.ResponsesMessageRole", "valueType": { - "$id": "637", + "$id": "623", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7766,54 +7608,54 @@ }, "values": [ { - "$id": "638", + "$id": "624", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "637" + "$ref": "623" }, "enumType": { - "$ref": "636" + "$ref": "622" }, "decorators": [] }, { - "$id": "639", + "$id": "625", "kind": "enumvalue", "name": "developer", "value": "developer", "valueType": { - "$ref": "637" + "$ref": "623" }, "enumType": { - "$ref": "636" + "$ref": "622" }, "decorators": [] }, { - "$id": "640", + "$id": "626", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "637" + "$ref": "623" }, "enumType": { - "$ref": "636" + "$ref": "622" }, "decorators": [] }, { - "$id": "641", + "$id": "627", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "637" + "$ref": "623" }, "enumType": { - "$ref": "636" + "$ref": "622" }, "decorators": [] } @@ -7826,12 +7668,12 @@ "decorators": [] }, { - "$id": "642", + "$id": "628", "kind": "enum", "name": "Includable", "crossLanguageDefinitionId": "OpenAI.Includable", "valueType": { - "$id": "643", + "$id": "629", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7839,67 +7681,67 @@ }, "values": [ { - "$id": "644", + "$id": "630", "kind": "enumvalue", "name": "file_search_call.results", "value": "file_search_call.results", "valueType": { - "$ref": "643" + "$ref": "629" }, "enumType": { - "$ref": "642" + "$ref": "628" }, "decorators": [] }, { - "$id": "645", + "$id": "631", "kind": "enumvalue", "name": "message.input_image.image_url", "value": "message.input_image.image_url", "valueType": { - "$ref": "643" + "$ref": "629" }, "enumType": { - "$ref": "642" + "$ref": "628" }, "decorators": [] }, { - "$id": "646", + "$id": "632", "kind": "enumvalue", "name": "computer_call_output.output.image_url", "value": "computer_call_output.output.image_url", "valueType": { - "$ref": "643" + "$ref": "629" }, "enumType": { - "$ref": "642" + "$ref": "628" }, "decorators": [] }, { - "$id": "647", + "$id": "633", "kind": "enumvalue", "name": "reasoning.encrypted_content", "value": "reasoning.encrypted_content", "valueType": { - "$ref": "643" + "$ref": "629" }, "enumType": { - "$ref": "642" + "$ref": "628" }, "decorators": [] }, { - "$id": "648", + "$id": "634", "kind": "enumvalue", "name": "code_interpreter_call.outputs", "value": "code_interpreter_call.outputs", "valueType": { - "$ref": "643" + "$ref": "629" }, "enumType": { - "$ref": "642" + "$ref": "628" }, "decorators": [] } @@ -7912,12 +7754,12 @@ "decorators": [] }, { - "$id": "649", + "$id": "635", "kind": "enum", "name": "ResponseStatus", "crossLanguageDefinitionId": "OpenAI.Response.status.anonymous", "valueType": { - "$id": "650", + "$id": "636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -7925,80 +7767,80 @@ }, "values": [ { - "$id": "651", + "$id": "637", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "650" + "$ref": "636" }, "enumType": { - "$ref": "649" + "$ref": "635" }, "decorators": [] }, { - "$id": "652", + "$id": "638", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "650" + "$ref": "636" }, "enumType": { - "$ref": "649" + "$ref": "635" }, "decorators": [] }, { - "$id": "653", + "$id": "639", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "650" + "$ref": "636" }, "enumType": { - "$ref": "649" + "$ref": "635" }, "decorators": [] }, { - "$id": "654", + "$id": "640", "kind": "enumvalue", "name": "cancelled", "value": "cancelled", "valueType": { - "$ref": "650" + "$ref": "636" }, "enumType": { - "$ref": "649" + "$ref": "635" }, "decorators": [] }, { - "$id": "655", + "$id": "641", "kind": "enumvalue", "name": "queued", "value": "queued", "valueType": { - "$ref": "650" + "$ref": "636" }, "enumType": { - "$ref": "649" + "$ref": "635" }, "decorators": [] }, { - "$id": "656", + "$id": "642", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "650" + "$ref": "636" }, "enumType": { - "$ref": "649" + "$ref": "635" }, "decorators": [] } @@ -8010,12 +7852,12 @@ "decorators": [] }, { - "$id": "657", + "$id": "643", "kind": "enum", "name": "ResponseErrorCode", "crossLanguageDefinitionId": "OpenAI.ResponseErrorCode", "valueType": { - "$id": "658", + "$id": "644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8023,236 +7865,236 @@ }, "values": [ { - "$id": "659", + "$id": "645", "kind": "enumvalue", "name": "server_error", "value": "server_error", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "660", + "$id": "646", "kind": "enumvalue", "name": "rate_limit_exceeded", "value": "rate_limit_exceeded", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "661", + "$id": "647", "kind": "enumvalue", "name": "invalid_prompt", "value": "invalid_prompt", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "662", + "$id": "648", "kind": "enumvalue", "name": "vector_store_timeout", "value": "vector_store_timeout", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "663", + "$id": "649", "kind": "enumvalue", "name": "invalid_image", "value": "invalid_image", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "664", + "$id": "650", "kind": "enumvalue", "name": "invalid_image_format", "value": "invalid_image_format", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "665", + "$id": "651", "kind": "enumvalue", "name": "invalid_base64_image", "value": "invalid_base64_image", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "666", + "$id": "652", "kind": "enumvalue", "name": "invalid_image_url", "value": "invalid_image_url", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "667", + "$id": "653", "kind": "enumvalue", "name": "image_too_large", "value": "image_too_large", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "668", + "$id": "654", "kind": "enumvalue", "name": "image_too_small", "value": "image_too_small", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "669", + "$id": "655", "kind": "enumvalue", "name": "image_parse_error", "value": "image_parse_error", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "670", + "$id": "656", "kind": "enumvalue", "name": "image_content_policy_violation", "value": "image_content_policy_violation", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "671", + "$id": "657", "kind": "enumvalue", "name": "invalid_image_mode", "value": "invalid_image_mode", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "672", + "$id": "658", "kind": "enumvalue", "name": "image_file_too_large", "value": "image_file_too_large", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "673", + "$id": "659", "kind": "enumvalue", "name": "unsupported_image_media_type", "value": "unsupported_image_media_type", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "674", + "$id": "660", "kind": "enumvalue", "name": "empty_image_file", "value": "empty_image_file", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "675", + "$id": "661", "kind": "enumvalue", "name": "failed_to_download_image", "value": "failed_to_download_image", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] }, { - "$id": "676", + "$id": "662", "kind": "enumvalue", "name": "image_file_not_found", "value": "image_file_not_found", "valueType": { - "$ref": "658" + "$ref": "644" }, "enumType": { - "$ref": "657" + "$ref": "643" }, "decorators": [] } @@ -8265,12 +8107,12 @@ "decorators": [] }, { - "$id": "677", + "$id": "663", "kind": "enum", "name": "ResponseIncompleteDetailsReason", "crossLanguageDefinitionId": "OpenAI.Response.incomplete_details.reason.anonymous", "valueType": { - "$id": "678", + "$id": "664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8278,28 +8120,28 @@ }, "values": [ { - "$id": "679", + "$id": "665", "kind": "enumvalue", "name": "max_output_tokens", "value": "max_output_tokens", "valueType": { - "$ref": "678" + "$ref": "664" }, "enumType": { - "$ref": "677" + "$ref": "663" }, "decorators": [] }, { - "$id": "680", + "$id": "666", "kind": "enumvalue", "name": "content_filter", "value": "content_filter", "valueType": { - "$ref": "678" + "$ref": "664" }, "enumType": { - "$ref": "677" + "$ref": "663" }, "decorators": [] } @@ -8311,12 +8153,12 @@ "decorators": [] }, { - "$id": "681", + "$id": "667", "kind": "enum", "name": "FileSearchToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FileSearchToolCallItemResource.status.anonymous", "valueType": { - "$id": "682", + "$id": "668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8324,67 +8166,67 @@ }, "values": [ { - "$id": "683", + "$id": "669", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "682" + "$ref": "668" }, "enumType": { - "$ref": "681" + "$ref": "667" }, "decorators": [] }, { - "$id": "684", + "$id": "670", "kind": "enumvalue", "name": "searching", "value": "searching", "valueType": { - "$ref": "682" + "$ref": "668" }, "enumType": { - "$ref": "681" + "$ref": "667" }, "decorators": [] }, { - "$id": "685", + "$id": "671", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "682" + "$ref": "668" }, "enumType": { - "$ref": "681" + "$ref": "667" }, "decorators": [] }, { - "$id": "686", + "$id": "672", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "682" + "$ref": "668" }, "enumType": { - "$ref": "681" + "$ref": "667" }, "decorators": [] }, { - "$id": "687", + "$id": "673", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "682" + "$ref": "668" }, "enumType": { - "$ref": "681" + "$ref": "667" }, "decorators": [] } @@ -8396,12 +8238,12 @@ "decorators": [] }, { - "$id": "688", + "$id": "674", "kind": "enum", "name": "ComputerToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallItemResource.status.anonymous", "valueType": { - "$id": "689", + "$id": "675", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8409,41 +8251,41 @@ }, "values": [ { - "$id": "690", + "$id": "676", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "689" + "$ref": "675" }, "enumType": { - "$ref": "688" + "$ref": "674" }, "decorators": [] }, { - "$id": "691", + "$id": "677", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "689" + "$ref": "675" }, "enumType": { - "$ref": "688" + "$ref": "674" }, "decorators": [] }, { - "$id": "692", + "$id": "678", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "689" + "$ref": "675" }, "enumType": { - "$ref": "688" + "$ref": "674" }, "decorators": [] } @@ -8455,12 +8297,12 @@ "decorators": [] }, { - "$id": "693", + "$id": "679", "kind": "enum", "name": "ComputerToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ComputerToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "694", + "$id": "680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8468,41 +8310,41 @@ }, "values": [ { - "$id": "695", + "$id": "681", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "694" + "$ref": "680" }, "enumType": { - "$ref": "693" + "$ref": "679" }, "decorators": [] }, { - "$id": "696", + "$id": "682", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "694" + "$ref": "680" }, "enumType": { - "$ref": "693" + "$ref": "679" }, "decorators": [] }, { - "$id": "697", + "$id": "683", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "694" + "$ref": "680" }, "enumType": { - "$ref": "693" + "$ref": "679" }, "decorators": [] } @@ -8514,12 +8356,12 @@ "decorators": [] }, { - "$id": "698", + "$id": "684", "kind": "enum", "name": "WebSearchToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.WebSearchToolCallItemResource.status.anonymous", "valueType": { - "$id": "699", + "$id": "685", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8527,54 +8369,54 @@ }, "values": [ { - "$id": "700", + "$id": "686", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "699" + "$ref": "685" }, "enumType": { - "$ref": "698" + "$ref": "684" }, "decorators": [] }, { - "$id": "701", + "$id": "687", "kind": "enumvalue", "name": "searching", "value": "searching", "valueType": { - "$ref": "699" + "$ref": "685" }, "enumType": { - "$ref": "698" + "$ref": "684" }, "decorators": [] }, { - "$id": "702", + "$id": "688", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "699" + "$ref": "685" }, "enumType": { - "$ref": "698" + "$ref": "684" }, "decorators": [] }, { - "$id": "703", + "$id": "689", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "699" + "$ref": "685" }, "enumType": { - "$ref": "698" + "$ref": "684" }, "decorators": [] } @@ -8586,12 +8428,12 @@ "decorators": [] }, { - "$id": "704", + "$id": "690", "kind": "enum", "name": "FunctionToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FunctionToolCallItemResource.status.anonymous", "valueType": { - "$id": "705", + "$id": "691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8599,41 +8441,41 @@ }, "values": [ { - "$id": "706", + "$id": "692", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "705" + "$ref": "691" }, "enumType": { - "$ref": "704" + "$ref": "690" }, "decorators": [] }, { - "$id": "707", + "$id": "693", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "705" + "$ref": "691" }, "enumType": { - "$ref": "704" + "$ref": "690" }, "decorators": [] }, { - "$id": "708", + "$id": "694", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "705" + "$ref": "691" }, "enumType": { - "$ref": "704" + "$ref": "690" }, "decorators": [] } @@ -8645,12 +8487,12 @@ "decorators": [] }, { - "$id": "709", + "$id": "695", "kind": "enum", "name": "FunctionToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.FunctionToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "710", + "$id": "696", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8658,41 +8500,41 @@ }, "values": [ { - "$id": "711", + "$id": "697", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "710" + "$ref": "696" }, "enumType": { - "$ref": "709" + "$ref": "695" }, "decorators": [] }, { - "$id": "712", + "$id": "698", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "710" + "$ref": "696" }, "enumType": { - "$ref": "709" + "$ref": "695" }, "decorators": [] }, { - "$id": "713", + "$id": "699", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "710" + "$ref": "696" }, "enumType": { - "$ref": "709" + "$ref": "695" }, "decorators": [] } @@ -8704,12 +8546,12 @@ "decorators": [] }, { - "$id": "714", + "$id": "700", "kind": "enum", "name": "ReasoningItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ReasoningItemResource.status.anonymous", "valueType": { - "$id": "715", + "$id": "701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8717,41 +8559,41 @@ }, "values": [ { - "$id": "716", + "$id": "702", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "715" + "$ref": "701" }, "enumType": { - "$ref": "714" + "$ref": "700" }, "decorators": [] }, { - "$id": "717", + "$id": "703", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "715" + "$ref": "701" }, "enumType": { - "$ref": "714" + "$ref": "700" }, "decorators": [] }, { - "$id": "718", + "$id": "704", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "715" + "$ref": "701" }, "enumType": { - "$ref": "714" + "$ref": "700" }, "decorators": [] } @@ -8763,12 +8605,12 @@ "decorators": [] }, { - "$id": "719", + "$id": "705", "kind": "enum", "name": "ImageGenToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ImageGenToolCallItemResource.status.anonymous", "valueType": { - "$id": "720", + "$id": "706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8776,54 +8618,54 @@ }, "values": [ { - "$id": "721", + "$id": "707", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "720" + "$ref": "706" }, "enumType": { - "$ref": "719" + "$ref": "705" }, "decorators": [] }, { - "$id": "722", + "$id": "708", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "720" + "$ref": "706" }, "enumType": { - "$ref": "719" + "$ref": "705" }, "decorators": [] }, { - "$id": "723", + "$id": "709", "kind": "enumvalue", "name": "generating", "value": "generating", "valueType": { - "$ref": "720" + "$ref": "706" }, "enumType": { - "$ref": "719" + "$ref": "705" }, "decorators": [] }, { - "$id": "724", + "$id": "710", "kind": "enumvalue", "name": "failed", "value": "failed", "valueType": { - "$ref": "720" + "$ref": "706" }, "enumType": { - "$ref": "719" + "$ref": "705" }, "decorators": [] } @@ -8835,12 +8677,12 @@ "decorators": [] }, { - "$id": "725", + "$id": "711", "kind": "enum", "name": "CodeInterpreterToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.CodeInterpreterToolCallItemResource.status.anonymous", "valueType": { - "$id": "726", + "$id": "712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8848,41 +8690,41 @@ }, "values": [ { - "$id": "727", + "$id": "713", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "726" + "$ref": "712" }, "enumType": { - "$ref": "725" + "$ref": "711" }, "decorators": [] }, { - "$id": "728", + "$id": "714", "kind": "enumvalue", "name": "interpreting", "value": "interpreting", "valueType": { - "$ref": "726" + "$ref": "712" }, "enumType": { - "$ref": "725" + "$ref": "711" }, "decorators": [] }, { - "$id": "729", + "$id": "715", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "726" + "$ref": "712" }, "enumType": { - "$ref": "725" + "$ref": "711" }, "decorators": [] } @@ -8894,12 +8736,12 @@ "decorators": [] }, { - "$id": "730", + "$id": "716", "kind": "enum", "name": "LocalShellToolCallItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.LocalShellToolCallItemResource.status.anonymous", "valueType": { - "$id": "731", + "$id": "717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8907,41 +8749,41 @@ }, "values": [ { - "$id": "732", + "$id": "718", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "731" + "$ref": "717" }, "enumType": { - "$ref": "730" + "$ref": "716" }, "decorators": [] }, { - "$id": "733", + "$id": "719", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "731" + "$ref": "717" }, "enumType": { - "$ref": "730" + "$ref": "716" }, "decorators": [] }, { - "$id": "734", + "$id": "720", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "731" + "$ref": "717" }, "enumType": { - "$ref": "730" + "$ref": "716" }, "decorators": [] } @@ -8953,12 +8795,12 @@ "decorators": [] }, { - "$id": "735", + "$id": "721", "kind": "enum", "name": "LocalShellToolCallOutputItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.LocalShellToolCallOutputItemResource.status.anonymous", "valueType": { - "$id": "736", + "$id": "722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -8966,41 +8808,41 @@ }, "values": [ { - "$id": "737", + "$id": "723", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "736" + "$ref": "722" }, "enumType": { - "$ref": "735" + "$ref": "721" }, "decorators": [] }, { - "$id": "738", + "$id": "724", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "736" + "$ref": "722" }, "enumType": { - "$ref": "735" + "$ref": "721" }, "decorators": [] }, { - "$id": "739", + "$id": "725", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "736" + "$ref": "722" }, "enumType": { - "$ref": "735" + "$ref": "721" }, "decorators": [] } @@ -9012,12 +8854,12 @@ "decorators": [] }, { - "$id": "740", + "$id": "726", "kind": "enum", "name": "ResponsesMessageItemResourceStatus", "crossLanguageDefinitionId": "OpenAI.ResponsesMessageItemResource.status.anonymous", "valueType": { - "$id": "741", + "$id": "727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9025,41 +8867,41 @@ }, "values": [ { - "$id": "742", + "$id": "728", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "741" + "$ref": "727" }, "enumType": { - "$ref": "740" + "$ref": "726" }, "decorators": [] }, { - "$id": "743", + "$id": "729", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "741" + "$ref": "727" }, "enumType": { - "$ref": "740" + "$ref": "726" }, "decorators": [] }, { - "$id": "744", + "$id": "730", "kind": "enumvalue", "name": "incomplete", "value": "incomplete", "valueType": { - "$ref": "741" + "$ref": "727" }, "enumType": { - "$ref": "740" + "$ref": "726" }, "decorators": [] } @@ -9071,12 +8913,12 @@ "decorators": [] }, { - "$id": "745", + "$id": "731", "kind": "enum", "name": "ResponseStreamEventType", "crossLanguageDefinitionId": "OpenAI.ResponseStreamEventType", "valueType": { - "$id": "746", + "$id": "732", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9084,691 +8926,691 @@ }, "values": [ { - "$id": "747", + "$id": "733", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "748", + "$id": "734", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "749", + "$id": "735", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "750", + "$id": "736", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "751", + "$id": "737", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "752", + "$id": "738", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "753", + "$id": "739", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "754", + "$id": "740", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "755", + "$id": "741", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "756", + "$id": "742", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "757", + "$id": "743", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "758", + "$id": "744", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "759", + "$id": "745", "kind": "enumvalue", "name": "response_created", "value": "response.created", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "760", + "$id": "746", "kind": "enumvalue", "name": "error", "value": "error", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "761", + "$id": "747", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "762", + "$id": "748", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "763", + "$id": "749", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "764", + "$id": "750", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "765", + "$id": "751", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "766", + "$id": "752", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "767", + "$id": "753", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "768", + "$id": "754", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "769", + "$id": "755", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "770", + "$id": "756", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "771", + "$id": "757", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "772", + "$id": "758", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "773", + "$id": "759", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "774", + "$id": "760", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "775", + "$id": "761", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "776", + "$id": "762", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "777", + "$id": "763", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "778", + "$id": "764", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "779", + "$id": "765", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "780", + "$id": "766", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "781", + "$id": "767", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "782", + "$id": "768", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "783", + "$id": "769", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "784", + "$id": "770", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "785", + "$id": "771", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "786", + "$id": "772", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "787", + "$id": "773", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call.arguments_delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "788", + "$id": "774", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call.arguments_done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "789", + "$id": "775", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "790", + "$id": "776", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "791", + "$id": "777", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "792", + "$id": "778", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "793", + "$id": "779", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "794", + "$id": "780", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "795", + "$id": "781", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "796", + "$id": "782", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "797", + "$id": "783", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "798", + "$id": "784", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] }, { - "$id": "799", + "$id": "785", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "746" + "$ref": "732" }, "enumType": { - "$ref": "745" + "$ref": "731" }, "decorators": [] } @@ -9780,12 +9622,12 @@ "decorators": [] }, { - "$id": "800", + "$id": "786", "kind": "enum", - "name": "CreateMessageRequestRole", - "crossLanguageDefinitionId": "OpenAI.CreateMessageRequest.role.anonymous", + "name": "CreateImageRequestModel", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.model.anonymous", "valueType": { - "$id": "801", + "$id": "787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9793,45 +9635,58 @@ }, "values": [ { - "$id": "802", + "$id": "788", "kind": "enumvalue", - "name": "user", - "value": "user", + "name": "dall-e-2", + "value": "dall-e-2", "valueType": { - "$ref": "801" + "$ref": "787" }, "enumType": { - "$ref": "800" + "$ref": "786" + }, + "decorators": [] + }, + { + "$id": "789", + "kind": "enumvalue", + "name": "dall-e-3", + "value": "dall-e-3", + "valueType": { + "$ref": "787" + }, + "enumType": { + "$ref": "786" }, "decorators": [] }, { - "$id": "803", + "$id": "790", "kind": "enumvalue", - "name": "assistant", - "value": "assistant", + "name": "gpt-image-1", + "value": "gpt-image-1", "valueType": { - "$ref": "801" + "$ref": "787" }, "enumType": { - "$ref": "800" + "$ref": "786" }, "decorators": [] } ], "namespace": "", - "isFixed": true, + "isFixed": false, "isFlags": false, "usage": "Input,Json", "decorators": [] }, { - "$id": "804", + "$id": "791", "kind": "enum", - "name": "MessageContentType", - "crossLanguageDefinitionId": "OpenAI.MessageContentType", + "name": "CreateImageRequestQuality", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.quality.anonymous", "valueType": { - "$id": "805", + "$id": "792", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9839,117 +9694,80 @@ }, "values": [ { - "$id": "806", + "$id": "793", "kind": "enumvalue", - "name": "text", - "value": "text", + "name": "standard", + "value": "standard", "valueType": { - "$ref": "805" + "$ref": "792" }, "enumType": { - "$ref": "804" + "$ref": "791" }, - "doc": "The content is a text message.", "decorators": [] }, { - "$id": "807", + "$id": "794", "kind": "enumvalue", - "name": "image_file", - "value": "image_file", + "name": "hd", + "value": "hd", "valueType": { - "$ref": "805" + "$ref": "792" }, "enumType": { - "$ref": "804" + "$ref": "791" }, - "doc": "The content is an image file.", "decorators": [] }, { - "$id": "808", + "$id": "795", "kind": "enumvalue", - "name": "image_url", - "value": "image_url", + "name": "low", + "value": "low", "valueType": { - "$ref": "805" + "$ref": "792" }, "enumType": { - "$ref": "804" + "$ref": "791" }, - "doc": "The content is an image URL.", "decorators": [] }, { - "$id": "809", - "kind": "enumvalue", - "name": "refusal", - "value": "refusal", - "valueType": { - "$ref": "805" - }, - "enumType": { - "$ref": "804" - }, - "doc": "The content is a refusal message.", - "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "810", - "kind": "enum", - "name": "MessageContentImageFileObjectImageFileDetail", - "crossLanguageDefinitionId": "OpenAI.MessageContentImageFileObject.image_file.detail.anonymous", - "valueType": { - "$id": "811", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "812", + "$id": "796", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "medium", + "value": "medium", "valueType": { - "$ref": "811" + "$ref": "792" }, "enumType": { - "$ref": "810" + "$ref": "791" }, "decorators": [] }, { - "$id": "813", + "$id": "797", "kind": "enumvalue", - "name": "low", - "value": "low", + "name": "high", + "value": "high", "valueType": { - "$ref": "811" + "$ref": "792" }, "enumType": { - "$ref": "810" + "$ref": "791" }, "decorators": [] }, { - "$id": "814", + "$id": "798", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "811" + "$ref": "792" }, "enumType": { - "$ref": "810" + "$ref": "791" }, "decorators": [] } @@ -9957,16 +9775,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "815", + "$id": "799", "kind": "enum", - "name": "MessageContentTextAnnotationType", - "crossLanguageDefinitionId": "OpenAI.MessageContentTextAnnotationType", + "name": "CreateImageRequestResponseFormat", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.response_format.anonymous", "valueType": { - "$id": "816", + "$id": "800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -9974,45 +9792,45 @@ }, "values": [ { - "$id": "817", + "$id": "801", "kind": "enumvalue", - "name": "file_citation", - "value": "file_citation", + "name": "url", + "value": "url", "valueType": { - "$ref": "816" + "$ref": "800" }, "enumType": { - "$ref": "815" + "$ref": "799" }, "decorators": [] }, { - "$id": "818", + "$id": "802", "kind": "enumvalue", - "name": "file_path", - "value": "file_path", + "name": "b64_json", + "value": "b64_json", "valueType": { - "$ref": "816" + "$ref": "800" }, "enumType": { - "$ref": "815" + "$ref": "799" }, "decorators": [] } ], - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "819", + "$id": "803", "kind": "enum", - "name": "MessageContentImageUrlObjectImageUrlDetail", - "crossLanguageDefinitionId": "OpenAI.MessageContentImageUrlObject.image_url.detail.anonymous", + "name": "CreateImageRequestOutputFormat", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.output_format.anonymous", "valueType": { - "$id": "820", + "$id": "804", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10020,41 +9838,41 @@ }, "values": [ { - "$id": "821", + "$id": "805", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "png", + "value": "png", "valueType": { - "$ref": "820" + "$ref": "804" }, "enumType": { - "$ref": "819" + "$ref": "803" }, "decorators": [] }, { - "$id": "822", + "$id": "806", "kind": "enumvalue", - "name": "low", - "value": "low", + "name": "jpeg", + "value": "jpeg", "valueType": { - "$ref": "820" + "$ref": "804" }, "enumType": { - "$ref": "819" + "$ref": "803" }, "decorators": [] }, { - "$id": "823", + "$id": "807", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "webp", + "value": "webp", "valueType": { - "$ref": "820" + "$ref": "804" }, "enumType": { - "$ref": "819" + "$ref": "803" }, "decorators": [] } @@ -10062,16 +9880,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "824", + "$id": "808", "kind": "enum", - "name": "MessageObjectStatus", - "crossLanguageDefinitionId": "OpenAI.MessageObject.status.anonymous", + "name": "CreateImageRequestSize", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.size.anonymous", "valueType": { - "$id": "825", + "$id": "809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10079,126 +9897,106 @@ }, "values": [ { - "$id": "826", + "$id": "810", "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "825" + "$ref": "809" }, "enumType": { - "$ref": "824" + "$ref": "808" }, "decorators": [] }, { - "$id": "827", + "$id": "811", "kind": "enumvalue", - "name": "incomplete", - "value": "incomplete", + "name": "1024x1024", + "value": "1024x1024", "valueType": { - "$ref": "825" + "$ref": "809" }, "enumType": { - "$ref": "824" + "$ref": "808" }, "decorators": [] }, { - "$id": "828", + "$id": "812", "kind": "enumvalue", - "name": "completed", - "value": "completed", + "name": "1536x1024", + "value": "1536x1024", "valueType": { - "$ref": "825" + "$ref": "809" }, "enumType": { - "$ref": "824" + "$ref": "808" }, "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "829", - "kind": "enum", - "name": "MessageObjectIncompleteDetailsReason", - "crossLanguageDefinitionId": "OpenAI.MessageObject.incomplete_details.reason.anonymous", - "valueType": { - "$id": "830", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "831", + "$id": "813", "kind": "enumvalue", - "name": "content_filter", - "value": "content_filter", + "name": "1024x1536", + "value": "1024x1536", "valueType": { - "$ref": "830" + "$ref": "809" }, "enumType": { - "$ref": "829" + "$ref": "808" }, "decorators": [] }, { - "$id": "832", + "$id": "814", "kind": "enumvalue", - "name": "max_tokens", - "value": "max_tokens", + "name": "256x256", + "value": "256x256", "valueType": { - "$ref": "830" + "$ref": "809" }, "enumType": { - "$ref": "829" + "$ref": "808" }, "decorators": [] }, { - "$id": "833", + "$id": "815", "kind": "enumvalue", - "name": "run_cancelled", - "value": "run_cancelled", + "name": "512x512", + "value": "512x512", "valueType": { - "$ref": "830" + "$ref": "809" }, "enumType": { - "$ref": "829" + "$ref": "808" }, "decorators": [] }, { - "$id": "834", + "$id": "816", "kind": "enumvalue", - "name": "run_expired", - "value": "run_expired", + "name": "1792x1024", + "value": "1792x1024", "valueType": { - "$ref": "830" + "$ref": "809" }, "enumType": { - "$ref": "829" + "$ref": "808" }, "decorators": [] }, { - "$id": "835", + "$id": "817", "kind": "enumvalue", - "name": "run_failed", - "value": "run_failed", + "name": "1024x1792", + "value": "1024x1792", "valueType": { - "$ref": "830" + "$ref": "809" }, "enumType": { - "$ref": "829" + "$ref": "808" }, "decorators": [] } @@ -10206,16 +10004,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "836", + "$id": "818", "kind": "enum", - "name": "MessageObjectRole", - "crossLanguageDefinitionId": "OpenAI.MessageObject.role.anonymous", + "name": "CreateImageRequestModeration", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.moderation.anonymous", "valueType": { - "$id": "837", + "$id": "819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10223,28 +10021,28 @@ }, "values": [ { - "$id": "838", + "$id": "820", "kind": "enumvalue", - "name": "user", - "value": "user", + "name": "low", + "value": "low", "valueType": { - "$ref": "837" + "$ref": "819" }, "enumType": { - "$ref": "836" + "$ref": "818" }, "decorators": [] }, { - "$id": "839", + "$id": "821", "kind": "enumvalue", - "name": "assistant", - "value": "assistant", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "837" + "$ref": "819" }, "enumType": { - "$ref": "836" + "$ref": "818" }, "decorators": [] } @@ -10252,16 +10050,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "840", + "$id": "822", "kind": "enum", - "name": "CreateModerationRequestModel", - "crossLanguageDefinitionId": "OpenAI.CreateModerationRequest.model.anonymous", + "name": "CreateImageRequestBackground", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.background.anonymous", "valueType": { - "$id": "841", + "$id": "823", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10269,117 +10067,58 @@ }, "values": [ { - "$id": "842", + "$id": "824", "kind": "enumvalue", - "name": "omni-moderation-latest", - "value": "omni-moderation-latest", + "name": "transparent", + "value": "transparent", "valueType": { - "$ref": "841" + "$ref": "823" }, "enumType": { - "$ref": "840" + "$ref": "822" }, "decorators": [] }, { - "$id": "843", + "$id": "825", "kind": "enumvalue", - "name": "omni-moderation-2024-09-26", - "value": "omni-moderation-2024-09-26", + "name": "opaque", + "value": "opaque", "valueType": { - "$ref": "841" + "$ref": "823" }, "enumType": { - "$ref": "840" + "$ref": "822" }, "decorators": [] }, { - "$id": "844", - "kind": "enumvalue", - "name": "text-moderation-latest", - "value": "text-moderation-latest", - "valueType": { - "$ref": "841" - }, - "enumType": { - "$ref": "840" - }, - "decorators": [] - }, - { - "$id": "845", + "$id": "826", "kind": "enumvalue", - "name": "text-moderation-stable", - "value": "text-moderation-stable", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "841" + "$ref": "823" }, "enumType": { - "$ref": "840" + "$ref": "822" }, "decorators": [] } ], "namespace": "", - "isFixed": false, + "isFixed": true, "isFlags": false, "usage": "Input,Json", "decorators": [] }, { - "$id": "846", - "kind": "enum", - "name": "ModerationAppliedInputType", - "crossLanguageDefinitionId": "OpenAI.ModerationAppliedInputType", - "valueType": { - "$id": "847", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "848", - "kind": "enumvalue", - "name": "text", - "value": "text", - "valueType": { - "$ref": "847" - }, - "enumType": { - "$ref": "846" - }, - "decorators": [] - }, - { - "$id": "849", - "kind": "enumvalue", - "name": "image", - "value": "image", - "valueType": { - "$ref": "847" - }, - "enumType": { - "$ref": "846" - }, - "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "850", + "$id": "827", "kind": "enum", - "name": "TruncationObjectType", - "crossLanguageDefinitionId": "OpenAI.TruncationObject.type.anonymous", + "name": "CreateImageRequestStyle", + "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.style.anonymous", "valueType": { - "$id": "851", + "$id": "828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10387,28 +10126,28 @@ }, "values": [ { - "$id": "852", + "$id": "829", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "vivid", + "value": "vivid", "valueType": { - "$ref": "851" + "$ref": "828" }, "enumType": { - "$ref": "850" + "$ref": "827" }, "decorators": [] }, { - "$id": "853", + "$id": "830", "kind": "enumvalue", - "name": "last_messages", - "value": "last_messages", + "name": "natural", + "value": "natural", "valueType": { - "$ref": "851" + "$ref": "828" }, "enumType": { - "$ref": "850" + "$ref": "827" }, "decorators": [] } @@ -10416,16 +10155,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "854", + "$id": "831", "kind": "enum", - "name": "CreateThreadAndRunRequestToolChoice1", - "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.tool_choice.anonymous", + "name": "CreateImageEditRequestBackground", + "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.background.anonymous", "valueType": { - "$id": "855", + "$id": "832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10433,41 +10172,41 @@ }, "values": [ { - "$id": "856", + "$id": "833", "kind": "enumvalue", - "name": "none", - "value": "none", + "name": "transparent", + "value": "transparent", "valueType": { - "$ref": "855" + "$ref": "832" }, "enumType": { - "$ref": "854" + "$ref": "831" }, "decorators": [] }, { - "$id": "857", + "$id": "834", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "opaque", + "value": "opaque", "valueType": { - "$ref": "855" + "$ref": "832" }, "enumType": { - "$ref": "854" + "$ref": "831" }, "decorators": [] }, { - "$id": "858", + "$id": "835", "kind": "enumvalue", - "name": "required", - "value": "required", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "855" + "$ref": "832" }, "enumType": { - "$ref": "854" + "$ref": "831" }, "decorators": [] } @@ -10475,16 +10214,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Input", "decorators": [] }, { - "$id": "859", + "$id": "836", "kind": "enum", - "name": "AssistantsNamedToolChoiceType", - "crossLanguageDefinitionId": "OpenAI.AssistantsNamedToolChoice.type.anonymous", + "name": "CreateImageEditRequestModel", + "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.model.anonymous", "valueType": { - "$id": "860", + "$id": "837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10492,58 +10231,45 @@ }, "values": [ { - "$id": "861", - "kind": "enumvalue", - "name": "function", - "value": "function", - "valueType": { - "$ref": "860" - }, - "enumType": { - "$ref": "859" - }, - "decorators": [] - }, - { - "$id": "862", + "$id": "838", "kind": "enumvalue", - "name": "code_interpreter", - "value": "code_interpreter", + "name": "dall-e-2", + "value": "dall-e-2", "valueType": { - "$ref": "860" + "$ref": "837" }, "enumType": { - "$ref": "859" + "$ref": "836" }, "decorators": [] }, { - "$id": "863", + "$id": "839", "kind": "enumvalue", - "name": "file_search", - "value": "file_search", + "name": "gpt-image-1", + "value": "gpt-image-1", "valueType": { - "$ref": "860" + "$ref": "837" }, "enumType": { - "$ref": "859" + "$ref": "836" }, "decorators": [] } ], "namespace": "", - "isFixed": true, + "isFixed": false, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Input", "decorators": [] }, { - "$id": "864", + "$id": "840", "kind": "enum", - "name": "RunObjectStatus", - "crossLanguageDefinitionId": "OpenAI.RunObject.status.anonymous", + "name": "CreateImageEditRequestSize", + "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.size.anonymous", "valueType": { - "$id": "865", + "$id": "841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10551,119 +10277,126 @@ }, "values": [ { - "$id": "866", - "kind": "enumvalue", - "name": "queued", - "value": "queued", - "valueType": { - "$ref": "865" - }, - "enumType": { - "$ref": "864" - }, - "decorators": [] - }, - { - "$id": "867", + "$id": "842", "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", + "name": "256x256", + "value": "256x256", "valueType": { - "$ref": "865" + "$ref": "841" }, "enumType": { - "$ref": "864" + "$ref": "840" }, "decorators": [] }, { - "$id": "868", + "$id": "843", "kind": "enumvalue", - "name": "requires_action", - "value": "requires_action", + "name": "512x512", + "value": "512x512", "valueType": { - "$ref": "865" + "$ref": "841" }, "enumType": { - "$ref": "864" + "$ref": "840" }, "decorators": [] }, { - "$id": "869", + "$id": "844", "kind": "enumvalue", - "name": "cancelling", - "value": "cancelling", + "name": "1024x1024", + "value": "1024x1024", "valueType": { - "$ref": "865" + "$ref": "841" }, "enumType": { - "$ref": "864" + "$ref": "840" }, "decorators": [] }, { - "$id": "870", + "$id": "845", "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", + "name": "1536x1024", + "value": "1536x1024", "valueType": { - "$ref": "865" + "$ref": "841" }, "enumType": { - "$ref": "864" + "$ref": "840" }, "decorators": [] }, { - "$id": "871", + "$id": "846", "kind": "enumvalue", - "name": "failed", - "value": "failed", + "name": "1024x1536", + "value": "1024x1536", "valueType": { - "$ref": "865" + "$ref": "841" }, "enumType": { - "$ref": "864" + "$ref": "840" }, "decorators": [] }, { - "$id": "872", + "$id": "847", "kind": "enumvalue", - "name": "completed", - "value": "completed", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "865" + "$ref": "841" }, "enumType": { - "$ref": "864" + "$ref": "840" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", + "decorators": [] + }, + { + "$id": "848", + "kind": "enum", + "name": "CreateImageEditRequestResponseFormat", + "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.response_format.anonymous", + "valueType": { + "$id": "849", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "873", + "$id": "850", "kind": "enumvalue", - "name": "incomplete", - "value": "incomplete", + "name": "url", + "value": "url", "valueType": { - "$ref": "865" + "$ref": "849" }, "enumType": { - "$ref": "864" + "$ref": "848" }, "decorators": [] }, { - "$id": "874", + "$id": "851", "kind": "enumvalue", - "name": "expired", - "value": "expired", + "name": "b64_json", + "value": "b64_json", "valueType": { - "$ref": "865" + "$ref": "849" }, "enumType": { - "$ref": "864" + "$ref": "848" }, "decorators": [] } @@ -10671,16 +10404,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input", "decorators": [] }, { - "$id": "875", + "$id": "852", "kind": "enum", - "name": "RunObjectLastErrorCode", - "crossLanguageDefinitionId": "OpenAI.RunObject.last_error.code.anonymous", + "name": "CreateImageEditRequestQuality", + "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.quality.anonymous", "valueType": { - "$id": "876", + "$id": "853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10688,87 +10421,67 @@ }, "values": [ { - "$id": "877", + "$id": "854", "kind": "enumvalue", - "name": "server_error", - "value": "server_error", + "name": "standard", + "value": "standard", "valueType": { - "$ref": "876" + "$ref": "853" }, "enumType": { - "$ref": "875" + "$ref": "852" }, "decorators": [] }, { - "$id": "878", + "$id": "855", "kind": "enumvalue", - "name": "rate_limit_exceeded", - "value": "rate_limit_exceeded", + "name": "low", + "value": "low", "valueType": { - "$ref": "876" + "$ref": "853" }, "enumType": { - "$ref": "875" + "$ref": "852" }, "decorators": [] }, { - "$id": "879", + "$id": "856", "kind": "enumvalue", - "name": "invalid_prompt", - "value": "invalid_prompt", + "name": "medium", + "value": "medium", "valueType": { - "$ref": "876" + "$ref": "853" }, "enumType": { - "$ref": "875" + "$ref": "852" }, "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "880", - "kind": "enum", - "name": "RunObjectIncompleteDetailsReason", - "crossLanguageDefinitionId": "OpenAI.RunObject.incomplete_details.reason.anonymous", - "valueType": { - "$id": "881", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "882", + "$id": "857", "kind": "enumvalue", - "name": "max_completion_tokens", - "value": "max_completion_tokens", + "name": "high", + "value": "high", "valueType": { - "$ref": "881" + "$ref": "853" }, "enumType": { - "$ref": "880" + "$ref": "852" }, "decorators": [] }, { - "$id": "883", + "$id": "858", "kind": "enumvalue", - "name": "max_prompt_tokens", - "value": "max_prompt_tokens", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "881" + "$ref": "853" }, "enumType": { - "$ref": "880" + "$ref": "852" }, "decorators": [] } @@ -10776,16 +10489,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input", "decorators": [] }, { - "$id": "884", + "$id": "859", "kind": "enum", - "name": "IncludedRunStepProperty", - "crossLanguageDefinitionId": "OpenAI.IncludedRunStepProperty", + "name": "CreateImageVariationRequestModel", + "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.model.anonymous", "valueType": { - "$id": "885", + "$id": "860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10793,32 +10506,32 @@ }, "values": [ { - "$id": "886", + "$id": "861", "kind": "enumvalue", - "name": "file_search_result_content", - "value": "step_details.tool_calls[*].file_search.results[*].content", + "name": "dall-e-2", + "value": "dall-e-2", "valueType": { - "$ref": "885" + "$ref": "860" }, "enumType": { - "$ref": "884" + "$ref": "859" }, "decorators": [] } ], - "namespace": "OpenAI", + "namespace": "", "isFixed": false, "isFlags": false, "usage": "Input", "decorators": [] }, { - "$id": "887", + "$id": "862", "kind": "enum", - "name": "RunStepObjectType", - "crossLanguageDefinitionId": "OpenAI.RunStepObject.type.anonymous", + "name": "CreateImageVariationRequestResponseFormat", + "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.response_format.anonymous", "valueType": { - "$id": "888", + "$id": "863", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10826,28 +10539,28 @@ }, "values": [ { - "$id": "889", + "$id": "864", "kind": "enumvalue", - "name": "message_creation", - "value": "message_creation", + "name": "url", + "value": "url", "valueType": { - "$ref": "888" + "$ref": "863" }, "enumType": { - "$ref": "887" + "$ref": "862" }, "decorators": [] }, { - "$id": "890", + "$id": "865", "kind": "enumvalue", - "name": "tool_calls", - "value": "tool_calls", + "name": "b64_json", + "value": "b64_json", "valueType": { - "$ref": "888" + "$ref": "863" }, "enumType": { - "$ref": "887" + "$ref": "862" }, "decorators": [] } @@ -10855,16 +10568,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input", "decorators": [] }, { - "$id": "891", + "$id": "866", "kind": "enum", - "name": "RunStepObjectStatus", - "crossLanguageDefinitionId": "OpenAI.RunStepObject.status.anonymous", + "name": "CreateImageVariationRequestSize", + "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.size.anonymous", "valueType": { - "$id": "892", + "$id": "867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10872,67 +10585,41 @@ }, "values": [ { - "$id": "893", - "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", - "valueType": { - "$ref": "892" - }, - "enumType": { - "$ref": "891" - }, - "decorators": [] - }, - { - "$id": "894", - "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", - "valueType": { - "$ref": "892" - }, - "enumType": { - "$ref": "891" - }, - "decorators": [] - }, - { - "$id": "895", + "$id": "868", "kind": "enumvalue", - "name": "failed", - "value": "failed", + "name": "256x256", + "value": "256x256", "valueType": { - "$ref": "892" + "$ref": "867" }, "enumType": { - "$ref": "891" + "$ref": "866" }, "decorators": [] }, { - "$id": "896", + "$id": "869", "kind": "enumvalue", - "name": "completed", - "value": "completed", + "name": "512x512", + "value": "512x512", "valueType": { - "$ref": "892" + "$ref": "867" }, "enumType": { - "$ref": "891" + "$ref": "866" }, "decorators": [] }, { - "$id": "897", + "$id": "870", "kind": "enumvalue", - "name": "expired", - "value": "expired", + "name": "1024x1024", + "value": "1024x1024", "valueType": { - "$ref": "892" + "$ref": "867" }, "enumType": { - "$ref": "891" + "$ref": "866" }, "decorators": [] } @@ -10940,16 +10627,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input", "decorators": [] }, { - "$id": "898", + "$id": "871", "kind": "enum", - "name": "RunStepDetailsType", - "crossLanguageDefinitionId": "OpenAI.RunStepDetailsType", + "name": "CreateMessageRequestRole", + "crossLanguageDefinitionId": "OpenAI.CreateMessageRequest.role.anonymous", "valueType": { - "$id": "899", + "$id": "872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -10957,45 +10644,45 @@ }, "values": [ { - "$id": "900", + "$id": "873", "kind": "enumvalue", - "name": "message_creation", - "value": "message_creation", + "name": "user", + "value": "user", "valueType": { - "$ref": "899" + "$ref": "872" }, "enumType": { - "$ref": "898" + "$ref": "871" }, "decorators": [] }, { - "$id": "901", + "$id": "874", "kind": "enumvalue", - "name": "tool_calls", - "value": "tool_calls", + "name": "assistant", + "value": "assistant", "valueType": { - "$ref": "899" + "$ref": "872" }, "enumType": { - "$ref": "898" + "$ref": "871" }, "decorators": [] } ], - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "902", + "$id": "875", "kind": "enum", - "name": "RunStepDetailsToolCallType", - "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallType", + "name": "MessageContentType", + "crossLanguageDefinitionId": "OpenAI.MessageContentType", "valueType": { - "$id": "903", + "$id": "876", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11003,58 +10690,75 @@ }, "values": [ { - "$id": "904", + "$id": "877", "kind": "enumvalue", - "name": "code_interpreter", - "value": "code_interpreter", + "name": "text", + "value": "text", "valueType": { - "$ref": "903" + "$ref": "876" }, "enumType": { - "$ref": "902" + "$ref": "875" }, + "doc": "The content is a text message.", "decorators": [] }, { - "$id": "905", + "$id": "878", "kind": "enumvalue", - "name": "file_search", - "value": "file_search", + "name": "image_file", + "value": "image_file", "valueType": { - "$ref": "903" + "$ref": "876" }, "enumType": { - "$ref": "902" + "$ref": "875" }, + "doc": "The content is an image file.", "decorators": [] }, { - "$id": "906", + "$id": "879", "kind": "enumvalue", - "name": "function", - "value": "function", + "name": "image_url", + "value": "image_url", + "valueType": { + "$ref": "876" + }, + "enumType": { + "$ref": "875" + }, + "doc": "The content is an image URL.", + "decorators": [] + }, + { + "$id": "880", + "kind": "enumvalue", + "name": "refusal", + "value": "refusal", "valueType": { - "$ref": "903" + "$ref": "876" }, "enumType": { - "$ref": "902" + "$ref": "875" }, + "doc": "The content is a refusal message.", "decorators": [] } ], "namespace": "OpenAI", - "isFixed": false, + "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "907", + "$id": "881", "kind": "enum", - "name": "RunStepDetailsCodeInterpreterOutputType", - "crossLanguageDefinitionId": "OpenAI.RunStepDetailsCodeInterpreterOutputType", + "name": "MessageContentImageFileObjectImageFileDetail", + "crossLanguageDefinitionId": "OpenAI.MessageContentImageFileObject.image_file.detail.anonymous", "valueType": { - "$id": "908", + "$id": "882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11062,78 +10766,58 @@ }, "values": [ { - "$id": "909", + "$id": "883", "kind": "enumvalue", - "name": "logs", - "value": "logs", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "908" + "$ref": "882" }, "enumType": { - "$ref": "907" + "$ref": "881" }, "decorators": [] }, { - "$id": "910", + "$id": "884", "kind": "enumvalue", - "name": "image", - "value": "image", + "name": "low", + "value": "low", "valueType": { - "$ref": "908" + "$ref": "882" }, "enumType": { - "$ref": "907" + "$ref": "881" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "911", - "kind": "enum", - "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", - "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentType", - "valueType": { - "$id": "912", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "913", + "$id": "885", "kind": "enumvalue", - "name": "text", - "value": "text", + "name": "high", + "value": "high", "valueType": { - "$ref": "912" + "$ref": "882" }, "enumType": { - "$ref": "911" + "$ref": "881" }, "decorators": [] } ], - "namespace": "OpenAI", + "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "914", + "$id": "886", "kind": "enum", - "name": "RunStepObjectLastErrorCode", - "crossLanguageDefinitionId": "OpenAI.RunStepObject.last_error.code.anonymous", + "name": "MessageContentTextAnnotationType", + "crossLanguageDefinitionId": "OpenAI.MessageContentTextAnnotationType", "valueType": { - "$id": "915", + "$id": "887", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11141,45 +10825,45 @@ }, "values": [ { - "$id": "916", + "$id": "888", "kind": "enumvalue", - "name": "server_error", - "value": "server_error", + "name": "file_citation", + "value": "file_citation", "valueType": { - "$ref": "915" + "$ref": "887" }, "enumType": { - "$ref": "914" + "$ref": "886" }, "decorators": [] }, { - "$id": "917", + "$id": "889", "kind": "enumvalue", - "name": "rate_limit_exceeded", - "value": "rate_limit_exceeded", + "name": "file_path", + "value": "file_path", "valueType": { - "$ref": "915" + "$ref": "887" }, "enumType": { - "$ref": "914" + "$ref": "886" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "918", + "$id": "890", "kind": "enum", - "name": "VectorStoreObjectStatus", - "crossLanguageDefinitionId": "OpenAI.VectorStoreObject.status.anonymous", + "name": "MessageContentImageUrlObjectImageUrlDetail", + "crossLanguageDefinitionId": "OpenAI.MessageContentImageUrlObject.image_url.detail.anonymous", "valueType": { - "$id": "919", + "$id": "891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11187,41 +10871,41 @@ }, "values": [ { - "$id": "920", + "$id": "892", "kind": "enumvalue", - "name": "expired", - "value": "expired", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "919" + "$ref": "891" }, "enumType": { - "$ref": "918" + "$ref": "890" }, "decorators": [] }, { - "$id": "921", + "$id": "893", "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", + "name": "low", + "value": "low", "valueType": { - "$ref": "919" + "$ref": "891" }, "enumType": { - "$ref": "918" + "$ref": "890" }, "decorators": [] }, { - "$id": "922", + "$id": "894", "kind": "enumvalue", - "name": "completed", - "value": "completed", + "name": "high", + "value": "high", "valueType": { - "$ref": "919" + "$ref": "891" }, "enumType": { - "$ref": "918" + "$ref": "890" }, "decorators": [] } @@ -11229,49 +10913,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "923", + "$id": "895", "kind": "enum", - "name": "VectorStoreExpirationAnchor", - "crossLanguageDefinitionId": "OpenAI.VectorStoreExpirationAnchor", - "valueType": { - "$id": "924", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "925", - "kind": "enumvalue", - "name": "last_active_at", - "value": "last_active_at", - "valueType": { - "$ref": "924" - }, - "enumType": { - "$ref": "923" - }, - "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "926", - "kind": "enum", - "name": "VectorStoreFileBatchObjectStatus", - "crossLanguageDefinitionId": "OpenAI.VectorStoreFileBatchObject.status.anonymous", + "name": "MessageObjectStatus", + "crossLanguageDefinitionId": "OpenAI.MessageObject.status.anonymous", "valueType": { - "$id": "927", + "$id": "896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11279,54 +10930,41 @@ }, "values": [ { - "$id": "928", + "$id": "897", "kind": "enumvalue", "name": "in_progress", "value": "in_progress", "valueType": { - "$ref": "927" + "$ref": "896" }, "enumType": { - "$ref": "926" + "$ref": "895" }, "decorators": [] }, { - "$id": "929", - "kind": "enumvalue", - "name": "completed", - "value": "completed", - "valueType": { - "$ref": "927" - }, - "enumType": { - "$ref": "926" - }, - "decorators": [] - }, - { - "$id": "930", + "$id": "898", "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", + "name": "incomplete", + "value": "incomplete", "valueType": { - "$ref": "927" + "$ref": "896" }, "enumType": { - "$ref": "926" + "$ref": "895" }, "decorators": [] }, { - "$id": "931", + "$id": "899", "kind": "enumvalue", - "name": "failed", - "value": "failed", + "name": "completed", + "value": "completed", "valueType": { - "$ref": "927" + "$ref": "896" }, "enumType": { - "$ref": "926" + "$ref": "895" }, "decorators": [] } @@ -11338,12 +10976,12 @@ "decorators": [] }, { - "$id": "932", + "$id": "900", "kind": "enum", - "name": "ListVectorStoreFilesFilter", - "crossLanguageDefinitionId": "OpenAI.ListVectorStoreFilesFilter", + "name": "MessageObjectIncompleteDetailsReason", + "crossLanguageDefinitionId": "OpenAI.MessageObject.incomplete_details.reason.anonymous", "valueType": { - "$id": "933", + "$id": "901", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11351,71 +10989,84 @@ }, "values": [ { - "$id": "934", + "$id": "902", "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", + "name": "content_filter", + "value": "content_filter", "valueType": { - "$ref": "933" + "$ref": "901" }, "enumType": { - "$ref": "932" + "$ref": "900" }, "decorators": [] }, { - "$id": "935", + "$id": "903", "kind": "enumvalue", - "name": "completed", - "value": "completed", + "name": "max_tokens", + "value": "max_tokens", "valueType": { - "$ref": "933" + "$ref": "901" }, "enumType": { - "$ref": "932" + "$ref": "900" }, "decorators": [] }, { - "$id": "936", + "$id": "904", "kind": "enumvalue", - "name": "failed", - "value": "failed", + "name": "run_cancelled", + "value": "run_cancelled", "valueType": { - "$ref": "933" + "$ref": "901" }, "enumType": { - "$ref": "932" + "$ref": "900" }, "decorators": [] }, { - "$id": "937", + "$id": "905", "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", + "name": "run_expired", + "value": "run_expired", + "valueType": { + "$ref": "901" + }, + "enumType": { + "$ref": "900" + }, + "decorators": [] + }, + { + "$id": "906", + "kind": "enumvalue", + "name": "run_failed", + "value": "run_failed", "valueType": { - "$ref": "933" + "$ref": "901" }, "enumType": { - "$ref": "932" + "$ref": "900" }, "decorators": [] } ], - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Input", + "usage": "Output,Json", "decorators": [] }, { - "$id": "938", + "$id": "907", "kind": "enum", - "name": "VectorStoreFileObjectStatus", - "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.status.anonymous", + "name": "MessageObjectRole", + "crossLanguageDefinitionId": "OpenAI.MessageObject.role.anonymous", "valueType": { - "$id": "939", + "$id": "908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11423,54 +11074,28 @@ }, "values": [ { - "$id": "940", - "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", - "valueType": { - "$ref": "939" - }, - "enumType": { - "$ref": "938" - }, - "decorators": [] - }, - { - "$id": "941", - "kind": "enumvalue", - "name": "completed", - "value": "completed", - "valueType": { - "$ref": "939" - }, - "enumType": { - "$ref": "938" - }, - "decorators": [] - }, - { - "$id": "942", + "$id": "909", "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", + "name": "user", + "value": "user", "valueType": { - "$ref": "939" + "$ref": "908" }, "enumType": { - "$ref": "938" + "$ref": "907" }, "decorators": [] }, { - "$id": "943", + "$id": "910", "kind": "enumvalue", - "name": "failed", - "value": "failed", + "name": "assistant", + "value": "assistant", "valueType": { - "$ref": "939" + "$ref": "908" }, "enumType": { - "$ref": "938" + "$ref": "907" }, "decorators": [] } @@ -11482,12 +11107,12 @@ "decorators": [] }, { - "$id": "944", + "$id": "911", "kind": "enum", - "name": "VectorStoreFileObjectLastErrorCode", - "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.last_error.code.anonymous", + "name": "CreateModerationRequestModel", + "crossLanguageDefinitionId": "OpenAI.CreateModerationRequest.model.anonymous", "valueType": { - "$id": "945", + "$id": "912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11495,58 +11120,71 @@ }, "values": [ { - "$id": "946", + "$id": "913", "kind": "enumvalue", - "name": "server_error", - "value": "server_error", + "name": "omni-moderation-latest", + "value": "omni-moderation-latest", "valueType": { - "$ref": "945" + "$ref": "912" }, "enumType": { - "$ref": "944" + "$ref": "911" }, "decorators": [] }, { - "$id": "947", + "$id": "914", "kind": "enumvalue", - "name": "unsupported_file", - "value": "unsupported_file", + "name": "omni-moderation-2024-09-26", + "value": "omni-moderation-2024-09-26", + "valueType": { + "$ref": "912" + }, + "enumType": { + "$ref": "911" + }, + "decorators": [] + }, + { + "$id": "915", + "kind": "enumvalue", + "name": "text-moderation-latest", + "value": "text-moderation-latest", "valueType": { - "$ref": "945" + "$ref": "912" }, "enumType": { - "$ref": "944" + "$ref": "911" }, "decorators": [] }, { - "$id": "948", + "$id": "916", "kind": "enumvalue", - "name": "invalid_file", - "value": "invalid_file", + "name": "text-moderation-stable", + "value": "text-moderation-stable", "valueType": { - "$ref": "945" + "$ref": "912" }, "enumType": { - "$ref": "944" + "$ref": "911" }, "decorators": [] } ], "namespace": "", - "isFixed": true, + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "949", + "$id": "917", "kind": "enum", - "name": "ChunkingStrategyResponseParamType", - "crossLanguageDefinitionId": "OpenAI.ChunkingStrategyResponseParam.type.anonymous", + "name": "ModerationAppliedInputType", + "crossLanguageDefinitionId": "OpenAI.ModerationAppliedInputType", "valueType": { - "$id": "950", + "$id": "918", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11554,45 +11192,45 @@ }, "values": [ { - "$id": "951", + "$id": "919", "kind": "enumvalue", - "name": "static", - "value": "static", + "name": "text", + "value": "text", "valueType": { - "$ref": "950" + "$ref": "918" }, "enumType": { - "$ref": "949" + "$ref": "917" }, "decorators": [] }, { - "$id": "952", + "$id": "920", "kind": "enumvalue", - "name": "other", - "value": "other", + "name": "image", + "value": "image", "valueType": { - "$ref": "950" + "$ref": "918" }, "enumType": { - "$ref": "949" + "$ref": "917" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, "usage": "Output,Json", "decorators": [] }, { - "$id": "953", + "$id": "921", "kind": "enum", - "name": "VectorStoreSearchRequestRankingOptionsRanker", - "crossLanguageDefinitionId": "OpenAI.VectorStoreSearchRequest.ranking_options.ranker.anonymous", + "name": "CreateThreadAndRunRequestModel", + "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.model.anonymous", "valueType": { - "$id": "954", + "$id": "922", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -11600,609 +11238,435 @@ }, "values": [ { - "$id": "955", + "$id": "923", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "gpt-4.1", + "value": "gpt-4.1", "valueType": { - "$ref": "954" + "$ref": "922" }, "enumType": { - "$ref": "953" + "$ref": "921" }, "decorators": [] }, { - "$id": "956", + "$id": "924", "kind": "enumvalue", - "name": "default-2024-11-15", - "value": "default-2024-11-15", + "name": "gpt-4.1-mini", + "value": "gpt-4.1-mini", "valueType": { - "$ref": "954" + "$ref": "922" }, "enumType": { - "$ref": "953" + "$ref": "921" }, "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] - }, - { - "$id": "957", - "kind": "enum", - "name": "CreateCompletionRequestModel", - "crossLanguageDefinitionId": "OpenAI.CreateCompletionRequest.model.anonymous", - "valueType": { - "$id": "958", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "959", + "$id": "925", "kind": "enumvalue", - "name": "gpt-3.5-turbo-instruct", - "value": "gpt-3.5-turbo-instruct", + "name": "gpt-4.1-nano", + "value": "gpt-4.1-nano", "valueType": { - "$ref": "958" + "$ref": "922" }, "enumType": { - "$ref": "957" + "$ref": "921" }, "decorators": [] }, { - "$id": "960", + "$id": "926", "kind": "enumvalue", - "name": "davinci-002", - "value": "davinci-002", + "name": "gpt-4.1-2025-04-14", + "value": "gpt-4.1-2025-04-14", "valueType": { - "$ref": "958" + "$ref": "922" }, "enumType": { - "$ref": "957" + "$ref": "921" }, "decorators": [] }, { - "$id": "961", + "$id": "927", "kind": "enumvalue", - "name": "babbage-002", - "value": "babbage-002", + "name": "gpt-4.1-mini-2025-04-14", + "value": "gpt-4.1-mini-2025-04-14", "valueType": { - "$ref": "958" + "$ref": "922" }, "enumType": { - "$ref": "957" + "$ref": "921" }, "decorators": [] - } - ], - "namespace": "", - "isFixed": false, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] - }, - { - "$id": "962", - "kind": "enum", - "name": "CreateCompletionResponseChoiceFinishReason", - "crossLanguageDefinitionId": "OpenAI.CreateCompletionResponse.choice.finish_reason.anonymous", - "valueType": { - "$id": "963", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "964", + "$id": "928", "kind": "enumvalue", - "name": "stop", - "value": "stop", + "name": "gpt-4.1-nano-2025-04-14", + "value": "gpt-4.1-nano-2025-04-14", "valueType": { - "$ref": "963" + "$ref": "922" }, "enumType": { - "$ref": "962" + "$ref": "921" }, "decorators": [] }, { - "$id": "965", + "$id": "929", "kind": "enumvalue", - "name": "length", - "value": "length", + "name": "gpt-4o", + "value": "gpt-4o", "valueType": { - "$ref": "963" + "$ref": "922" }, "enumType": { - "$ref": "962" + "$ref": "921" }, "decorators": [] }, { - "$id": "966", + "$id": "930", "kind": "enumvalue", - "name": "content_filter", - "value": "content_filter", + "name": "gpt-4o-2024-11-20", + "value": "gpt-4o-2024-11-20", "valueType": { - "$ref": "963" + "$ref": "922" }, "enumType": { - "$ref": "962" + "$ref": "921" }, "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "967", - "kind": "enum", - "name": "RealtimeClientEventType", - "crossLanguageDefinitionId": "OpenAI.RealtimeClientEventType", - "valueType": { - "$id": "968", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "969", + "$id": "931", "kind": "enumvalue", - "name": "session_update", - "value": "session.update", + "name": "gpt-4o-2024-08-06", + "value": "gpt-4o-2024-08-06", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "970", + "$id": "932", "kind": "enumvalue", - "name": "input_audio_buffer_append", - "value": "input_audio_buffer.append", + "name": "gpt-4o-2024-05-13", + "value": "gpt-4o-2024-05-13", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "971", + "$id": "933", "kind": "enumvalue", - "name": "input_audio_buffer_commit", - "value": "input_audio_buffer.commit", + "name": "gpt-4o-mini", + "value": "gpt-4o-mini", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "972", + "$id": "934", "kind": "enumvalue", - "name": "input_audio_buffer_clear", - "value": "input_audio_buffer.clear", + "name": "gpt-4o-mini-2024-07-18", + "value": "gpt-4o-mini-2024-07-18", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "973", + "$id": "935", "kind": "enumvalue", - "name": "output_audio_buffer_clear", - "value": "output_audio_buffer.clear", + "name": "gpt-4.5-preview", + "value": "gpt-4.5-preview", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "974", + "$id": "936", "kind": "enumvalue", - "name": "conversation_item_create", - "value": "conversation.item.create", + "name": "gpt-4.5-preview-2025-02-27", + "value": "gpt-4.5-preview-2025-02-27", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "975", + "$id": "937", "kind": "enumvalue", - "name": "conversation_item_retrieve", - "value": "conversation.item.retrieve", + "name": "gpt-4-turbo", + "value": "gpt-4-turbo", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "976", + "$id": "938", "kind": "enumvalue", - "name": "conversation_item_truncate", - "value": "conversation.item.truncate", + "name": "gpt-4-turbo-2024-04-09", + "value": "gpt-4-turbo-2024-04-09", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "977", + "$id": "939", "kind": "enumvalue", - "name": "conversation_item_delete", - "value": "conversation.item.delete", + "name": "gpt-4-0125-preview", + "value": "gpt-4-0125-preview", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "978", + "$id": "940", "kind": "enumvalue", - "name": "response_create", - "value": "response.create", + "name": "gpt-4-turbo-preview", + "value": "gpt-4-turbo-preview", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "979", + "$id": "941", "kind": "enumvalue", - "name": "response_cancel", - "value": "response.cancel", + "name": "gpt-4-1106-preview", + "value": "gpt-4-1106-preview", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] }, { - "$id": "980", + "$id": "942", "kind": "enumvalue", - "name": "transcription_session_update", - "value": "transcription_session.update", + "name": "gpt-4-vision-preview", + "value": "gpt-4-vision-preview", "valueType": { - "$ref": "968" + "$ref": "922" }, "enumType": { - "$ref": "967" + "$ref": "921" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] - }, - { - "$id": "981", - "kind": "enum", - "name": "RealtimeModality", - "crossLanguageDefinitionId": "OpenAI.RealtimeModality", - "valueType": { - "$id": "982", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "983", + "$id": "943", "kind": "enumvalue", - "name": "text", - "value": "text", + "name": "gpt-4", + "value": "gpt-4", "valueType": { - "$ref": "982" + "$ref": "922" }, "enumType": { - "$ref": "981" + "$ref": "921" }, "decorators": [] }, { - "$id": "984", + "$id": "944", "kind": "enumvalue", - "name": "audio", - "value": "audio", + "name": "gpt-4-0314", + "value": "gpt-4-0314", "valueType": { - "$ref": "982" + "$ref": "922" }, "enumType": { - "$ref": "981" + "$ref": "921" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "985", - "kind": "enum", - "name": "RealtimeRequestSessionModel", - "crossLanguageDefinitionId": "OpenAI.RealtimeRequestSession.model.anonymous", - "valueType": { - "$id": "986", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "987", + "$id": "945", "kind": "enumvalue", - "name": "gpt-4o-realtime-preview", - "value": "gpt-4o-realtime-preview", + "name": "gpt-4-0613", + "value": "gpt-4-0613", "valueType": { - "$ref": "986" + "$ref": "922" }, "enumType": { - "$ref": "985" + "$ref": "921" }, "decorators": [] }, { - "$id": "988", + "$id": "946", "kind": "enumvalue", - "name": "gpt-4o-realtime-preview-2024-10-01", - "value": "gpt-4o-realtime-preview-2024-10-01", + "name": "gpt-4-32k", + "value": "gpt-4-32k", "valueType": { - "$ref": "986" + "$ref": "922" }, "enumType": { - "$ref": "985" + "$ref": "921" }, "decorators": [] }, { - "$id": "989", + "$id": "947", "kind": "enumvalue", - "name": "gpt-4o-realtime-preview-2024-12-17", - "value": "gpt-4o-realtime-preview-2024-12-17", + "name": "gpt-4-32k-0314", + "value": "gpt-4-32k-0314", "valueType": { - "$ref": "986" + "$ref": "922" }, "enumType": { - "$ref": "985" + "$ref": "921" }, "decorators": [] }, { - "$id": "990", + "$id": "948", "kind": "enumvalue", - "name": "gpt-4o-mini-realtime-preview", - "value": "gpt-4o-mini-realtime-preview", + "name": "gpt-4-32k-0613", + "value": "gpt-4-32k-0613", "valueType": { - "$ref": "986" + "$ref": "922" }, "enumType": { - "$ref": "985" + "$ref": "921" }, "decorators": [] }, { - "$id": "991", + "$id": "949", "kind": "enumvalue", - "name": "gpt-4o-mini-realtime-preview-2024-12-17", - "value": "gpt-4o-mini-realtime-preview-2024-12-17", + "name": "gpt-3.5-turbo", + "value": "gpt-3.5-turbo", "valueType": { - "$ref": "986" + "$ref": "922" }, "enumType": { - "$ref": "985" + "$ref": "921" }, "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] - }, - { - "$id": "992", - "kind": "enum", - "name": "RealtimeAudioFormat", - "crossLanguageDefinitionId": "OpenAI.RealtimeAudioFormat", - "valueType": { - "$id": "993", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "994", + "$id": "950", "kind": "enumvalue", - "name": "pcm16", - "value": "pcm16", + "name": "gpt-3.5-turbo-16k", + "value": "gpt-3.5-turbo-16k", "valueType": { - "$ref": "993" + "$ref": "922" }, "enumType": { - "$ref": "992" + "$ref": "921" }, "decorators": [] }, { - "$id": "995", + "$id": "951", "kind": "enumvalue", - "name": "g711_ulaw", - "value": "g711_ulaw", + "name": "gpt-3.5-turbo-0613", + "value": "gpt-3.5-turbo-0613", "valueType": { - "$ref": "993" + "$ref": "922" }, "enumType": { - "$ref": "992" + "$ref": "921" }, "decorators": [] }, { - "$id": "996", + "$id": "952", "kind": "enumvalue", - "name": "g711_alaw", - "value": "g711_alaw", + "name": "gpt-3.5-turbo-1106", + "value": "gpt-3.5-turbo-1106", "valueType": { - "$ref": "993" + "$ref": "922" }, "enumType": { - "$ref": "992" + "$ref": "921" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "997", - "kind": "enum", - "name": "RealtimeAudioInputTranscriptionModel", - "crossLanguageDefinitionId": "OpenAI.RealtimeAudioInputTranscriptionModel", - "valueType": { - "$id": "998", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "999", - "kind": "enumvalue", - "name": "whisper_1", - "value": "whisper-1", - "valueType": { - "$ref": "998" - }, - "enumType": { - "$ref": "997" - }, - "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "1000", - "kind": "enum", - "name": "RealtimeTurnDetectionType", - "crossLanguageDefinitionId": "OpenAI.RealtimeTurnDetectionType", - "valueType": { - "$id": "1001", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1002", + "$id": "953", "kind": "enumvalue", - "name": "server_vad", - "value": "server_vad", + "name": "gpt-3.5-turbo-0125", + "value": "gpt-3.5-turbo-0125", "valueType": { - "$ref": "1001" + "$ref": "922" }, "enumType": { - "$ref": "1000" + "$ref": "921" }, - "doc": "Indicates that server-side voice activity detection (VAD) should be enabled, allowing the server to determine when\nadd_user_audio commands present ends of speech and should be automatically committed.\n\nThe API will also detect when the user begins talking, sending a generation_canceled command.", "decorators": [] }, { - "$id": "1003", + "$id": "954", "kind": "enumvalue", - "name": "semantic_vad", - "value": "semantic_vad", + "name": "gpt-3.5-turbo-16k-0613", + "value": "gpt-3.5-turbo-16k-0613", "valueType": { - "$ref": "1001" + "$ref": "922" }, "enumType": { - "$ref": "1000" + "$ref": "921" }, "decorators": [] } ], - "namespace": "OpenAI", + "namespace": "", "isFixed": false, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1004", + "$id": "955", "kind": "enum", - "name": "RealtimeSemanticVadTurnDetectionEagerness", - "crossLanguageDefinitionId": "OpenAI.RealtimeSemanticVadTurnDetection.eagerness.anonymous", + "name": "TruncationObjectType", + "crossLanguageDefinitionId": "OpenAI.TruncationObject.type.anonymous", "valueType": { - "$id": "1005", + "$id": "956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12210,54 +11674,28 @@ }, "values": [ { - "$id": "1006", - "kind": "enumvalue", - "name": "low", - "value": "low", - "valueType": { - "$ref": "1005" - }, - "enumType": { - "$ref": "1004" - }, - "decorators": [] - }, - { - "$id": "1007", - "kind": "enumvalue", - "name": "medium", - "value": "medium", - "valueType": { - "$ref": "1005" - }, - "enumType": { - "$ref": "1004" - }, - "decorators": [] - }, - { - "$id": "1008", + "$id": "957", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "1005" + "$ref": "956" }, "enumType": { - "$ref": "1004" + "$ref": "955" }, "decorators": [] }, { - "$id": "1009", + "$id": "958", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "last_messages", + "value": "last_messages", "valueType": { - "$ref": "1005" + "$ref": "956" }, "enumType": { - "$ref": "1004" + "$ref": "955" }, "decorators": [] } @@ -12269,12 +11707,12 @@ "decorators": [] }, { - "$id": "1010", + "$id": "959", "kind": "enum", - "name": "RealtimeAudioNoiseReductionType", - "crossLanguageDefinitionId": "OpenAI.RealtimeAudioNoiseReductionType", + "name": "CreateThreadAndRunRequestToolChoice1", + "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.tool_choice.anonymous", "valueType": { - "$id": "1011", + "$id": "960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12282,79 +11720,58 @@ }, "values": [ { - "$id": "1012", + "$id": "961", "kind": "enumvalue", - "name": "near_field", - "value": "near_field", + "name": "none", + "value": "none", "valueType": { - "$ref": "1011" + "$ref": "960" }, "enumType": { - "$ref": "1010" + "$ref": "959" }, "decorators": [] }, { - "$id": "1013", + "$id": "962", "kind": "enumvalue", - "name": "far_field", - "value": "far_field", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "1011" + "$ref": "960" }, "enumType": { - "$ref": "1010" + "$ref": "959" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "1014", - "kind": "enum", - "name": "RealtimeToolType", - "crossLanguageDefinitionId": "OpenAI.RealtimeToolType", - "valueType": { - "$id": "1015", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1016", + "$id": "963", "kind": "enumvalue", - "name": "function", - "value": "function", + "name": "required", + "value": "required", "valueType": { - "$ref": "1015" + "$ref": "960" }, "enumType": { - "$ref": "1014" + "$ref": "959" }, "decorators": [] } ], - "namespace": "OpenAI", - "doc": "The supported tool type discriminators for realtime tools.\nCurrently, only 'function' tools are supported.", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1017", + "$id": "964", "kind": "enum", - "name": "RealtimeToolChoiceLiteral", - "crossLanguageDefinitionId": "OpenAI.RealtimeToolChoiceLiteral", + "name": "AssistantsNamedToolChoiceType", + "crossLanguageDefinitionId": "OpenAI.AssistantsNamedToolChoice.type.anonymous", "valueType": { - "$id": "1018", + "$id": "965", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12362,62 +11779,58 @@ }, "values": [ { - "$id": "1019", + "$id": "966", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "function", + "value": "function", "valueType": { - "$ref": "1018" + "$ref": "965" }, "enumType": { - "$ref": "1017" + "$ref": "964" }, - "doc": "Specifies that the model should freely determine which tool or tools, if any, to call.", "decorators": [] }, { - "$id": "1020", + "$id": "967", "kind": "enumvalue", - "name": "none", - "value": "none", + "name": "code_interpreter", + "value": "code_interpreter", "valueType": { - "$ref": "1018" + "$ref": "965" }, "enumType": { - "$ref": "1017" + "$ref": "964" }, - "doc": "Specifies that the model should call no tools whatsoever.", "decorators": [] }, { - "$id": "1021", + "$id": "968", "kind": "enumvalue", - "name": "required", - "value": "required", + "name": "file_search", + "value": "file_search", "valueType": { - "$ref": "1018" + "$ref": "965" }, "enumType": { - "$ref": "1017" + "$ref": "964" }, - "doc": "Specifies that the model should call at least one tool.", "decorators": [] } ], - "namespace": "OpenAI", - "doc": "The available set of mode-level, string literal tool_choice options for the realtime endpoint.", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1022", + "$id": "969", "kind": "enum", - "name": "RealtimeItemType", - "crossLanguageDefinitionId": "OpenAI.RealtimeItemType", + "name": "RunObjectStatus", + "crossLanguageDefinitionId": "OpenAI.RunObject.status.anonymous", "valueType": { - "$id": "1023", + "$id": "970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12425,176 +11838,136 @@ }, "values": [ { - "$id": "1024", + "$id": "971", "kind": "enumvalue", - "name": "message", - "value": "message", + "name": "queued", + "value": "queued", "valueType": { - "$ref": "1023" + "$ref": "970" }, "enumType": { - "$ref": "1022" + "$ref": "969" }, "decorators": [] }, { - "$id": "1025", + "$id": "972", "kind": "enumvalue", - "name": "function_call", - "value": "function_call", + "name": "in_progress", + "value": "in_progress", "valueType": { - "$ref": "1023" + "$ref": "970" }, "enumType": { - "$ref": "1022" + "$ref": "969" }, "decorators": [] }, { - "$id": "1026", + "$id": "973", "kind": "enumvalue", - "name": "function_call_output", - "value": "function_call_output", + "name": "requires_action", + "value": "requires_action", "valueType": { - "$ref": "1023" + "$ref": "970" }, "enumType": { - "$ref": "1022" + "$ref": "969" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "1027", - "kind": "enum", - "name": "RealtimeMessageRole", - "crossLanguageDefinitionId": "OpenAI.RealtimeMessageRole", - "valueType": { - "$id": "1028", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1029", + "$id": "974", "kind": "enumvalue", - "name": "system", - "value": "system", + "name": "cancelling", + "value": "cancelling", "valueType": { - "$ref": "1028" + "$ref": "970" }, "enumType": { - "$ref": "1027" + "$ref": "969" }, "decorators": [] }, { - "$id": "1030", + "$id": "975", "kind": "enumvalue", - "name": "user", - "value": "user", + "name": "cancelled", + "value": "cancelled", "valueType": { - "$ref": "1028" + "$ref": "970" }, "enumType": { - "$ref": "1027" + "$ref": "969" }, "decorators": [] }, { - "$id": "1031", + "$id": "976", "kind": "enumvalue", - "name": "assistant", - "value": "assistant", + "name": "failed", + "value": "failed", "valueType": { - "$ref": "1028" + "$ref": "970" }, "enumType": { - "$ref": "1027" + "$ref": "969" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] - }, - { - "$id": "1032", - "kind": "enum", - "name": "RealtimeItemStatus", - "crossLanguageDefinitionId": "OpenAI.RealtimeItemStatus", - "valueType": { - "$id": "1033", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1034", + "$id": "977", "kind": "enumvalue", - "name": "in_progress", - "value": "in_progress", + "name": "completed", + "value": "completed", "valueType": { - "$ref": "1033" + "$ref": "970" }, "enumType": { - "$ref": "1032" + "$ref": "969" }, "decorators": [] }, { - "$id": "1035", + "$id": "978", "kind": "enumvalue", - "name": "completed", - "value": "completed", + "name": "incomplete", + "value": "incomplete", "valueType": { - "$ref": "1033" + "$ref": "970" }, "enumType": { - "$ref": "1032" + "$ref": "969" }, "decorators": [] }, { - "$id": "1036", + "$id": "979", "kind": "enumvalue", - "name": "incomplete", - "value": "incomplete", + "name": "expired", + "value": "expired", "valueType": { - "$ref": "1033" + "$ref": "970" }, "enumType": { - "$ref": "1032" + "$ref": "969" }, "decorators": [] } ], - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1037", + "$id": "980", "kind": "enum", - "name": "RealtimeContentPartType", - "crossLanguageDefinitionId": "OpenAI.RealtimeContentPartType", + "name": "RunObjectLastErrorCode", + "crossLanguageDefinitionId": "OpenAI.RunObject.last_error.code.anonymous", "valueType": { - "$id": "1038", + "$id": "981", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12602,71 +11975,58 @@ }, "values": [ { - "$id": "1039", - "kind": "enumvalue", - "name": "input_text", - "value": "input_text", - "valueType": { - "$ref": "1038" - }, - "enumType": { - "$ref": "1037" - }, - "decorators": [] - }, - { - "$id": "1040", + "$id": "982", "kind": "enumvalue", - "name": "input_audio", - "value": "input_audio", + "name": "server_error", + "value": "server_error", "valueType": { - "$ref": "1038" + "$ref": "981" }, "enumType": { - "$ref": "1037" + "$ref": "980" }, "decorators": [] }, { - "$id": "1041", + "$id": "983", "kind": "enumvalue", - "name": "text", - "value": "text", + "name": "rate_limit_exceeded", + "value": "rate_limit_exceeded", "valueType": { - "$ref": "1038" + "$ref": "981" }, "enumType": { - "$ref": "1037" + "$ref": "980" }, "decorators": [] }, { - "$id": "1042", + "$id": "984", "kind": "enumvalue", - "name": "audio", - "value": "audio", + "name": "invalid_prompt", + "value": "invalid_prompt", "valueType": { - "$ref": "1038" + "$ref": "981" }, "enumType": { - "$ref": "1037" + "$ref": "980" }, "decorators": [] } ], - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Input,Output,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1043", + "$id": "985", "kind": "enum", - "name": "RealtimeResponseCreateParamsConversation", - "crossLanguageDefinitionId": "OpenAI.RealtimeResponseCreateParams.conversation.anonymous", + "name": "RunObjectIncompleteDetailsReason", + "crossLanguageDefinitionId": "OpenAI.RunObject.incomplete_details.reason.anonymous", "valueType": { - "$id": "1044", + "$id": "986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12674,45 +12034,45 @@ }, "values": [ { - "$id": "1045", + "$id": "987", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "max_completion_tokens", + "value": "max_completion_tokens", "valueType": { - "$ref": "1044" + "$ref": "986" }, "enumType": { - "$ref": "1043" + "$ref": "985" }, "decorators": [] }, { - "$id": "1046", + "$id": "988", "kind": "enumvalue", - "name": "none", - "value": "none", + "name": "max_prompt_tokens", + "value": "max_prompt_tokens", "valueType": { - "$ref": "1044" + "$ref": "986" }, "enumType": { - "$ref": "1043" + "$ref": "985" }, "decorators": [] } ], "namespace": "", - "isFixed": false, + "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1047", + "$id": "989", "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateRequestModality", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.modality.anonymous", + "name": "RunStepObjectType", + "crossLanguageDefinitionId": "OpenAI.RunStepObject.type.anonymous", "valueType": { - "$id": "1048", + "$id": "990", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12720,28 +12080,28 @@ }, "values": [ { - "$id": "1049", + "$id": "991", "kind": "enumvalue", - "name": "text", - "value": "text", + "name": "message_creation", + "value": "message_creation", "valueType": { - "$ref": "1048" + "$ref": "990" }, "enumType": { - "$ref": "1047" + "$ref": "989" }, "decorators": [] }, { - "$id": "1050", + "$id": "992", "kind": "enumvalue", - "name": "audio", - "value": "audio", + "name": "tool_calls", + "value": "tool_calls", "valueType": { - "$ref": "1048" + "$ref": "990" }, "enumType": { - "$ref": "1047" + "$ref": "989" }, "decorators": [] } @@ -12749,16 +12109,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1051", + "$id": "993", "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateRequestInputAudioFormat", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_format.anonymous", + "name": "RunStepObjectStatus", + "crossLanguageDefinitionId": "OpenAI.RunStepObject.status.anonymous", "valueType": { - "$id": "1052", + "$id": "994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12766,100 +12126,67 @@ }, "values": [ { - "$id": "1053", + "$id": "995", "kind": "enumvalue", - "name": "pcm16", - "value": "pcm16", + "name": "in_progress", + "value": "in_progress", "valueType": { - "$ref": "1052" + "$ref": "994" }, "enumType": { - "$ref": "1051" + "$ref": "993" }, "decorators": [] }, { - "$id": "1054", + "$id": "996", "kind": "enumvalue", - "name": "g711_ulaw", - "value": "g711_ulaw", + "name": "cancelled", + "value": "cancelled", "valueType": { - "$ref": "1052" + "$ref": "994" }, "enumType": { - "$ref": "1051" + "$ref": "993" }, "decorators": [] }, { - "$id": "1055", - "kind": "enumvalue", - "name": "g711_alaw", - "value": "g711_alaw", - "valueType": { - "$ref": "1052" - }, - "enumType": { - "$ref": "1051" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] - }, - { - "$id": "1056", - "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscriptionModel", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_transcription.model.anonymous", - "valueType": { - "$id": "1057", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "1058", + "$id": "997", "kind": "enumvalue", - "name": "gpt-4o-transcribe", - "value": "gpt-4o-transcribe", + "name": "failed", + "value": "failed", "valueType": { - "$ref": "1057" + "$ref": "994" }, "enumType": { - "$ref": "1056" + "$ref": "993" }, "decorators": [] }, { - "$id": "1059", + "$id": "998", "kind": "enumvalue", - "name": "gpt-4o-mini-transcribe", - "value": "gpt-4o-mini-transcribe", + "name": "completed", + "value": "completed", "valueType": { - "$ref": "1057" + "$ref": "994" }, "enumType": { - "$ref": "1056" + "$ref": "993" }, "decorators": [] }, { - "$id": "1060", + "$id": "999", "kind": "enumvalue", - "name": "whisper-1", - "value": "whisper-1", + "name": "expired", + "value": "expired", "valueType": { - "$ref": "1057" + "$ref": "994" }, "enumType": { - "$ref": "1056" + "$ref": "993" }, "decorators": [] } @@ -12867,16 +12194,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1061", + "$id": "1000", "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionType", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.type.anonymous", + "name": "RunStepDetailsType", + "crossLanguageDefinitionId": "OpenAI.RunStepDetailsType", "valueType": { - "$id": "1062", + "$id": "1001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12884,45 +12211,45 @@ }, "values": [ { - "$id": "1063", + "$id": "1002", "kind": "enumvalue", - "name": "server_vad", - "value": "server_vad", + "name": "message_creation", + "value": "message_creation", "valueType": { - "$ref": "1062" + "$ref": "1001" }, "enumType": { - "$ref": "1061" + "$ref": "1000" }, "decorators": [] }, { - "$id": "1064", + "$id": "1003", "kind": "enumvalue", - "name": "semantic_vad", - "value": "semantic_vad", + "name": "tool_calls", + "value": "tool_calls", "valueType": { - "$ref": "1062" + "$ref": "1001" }, "enumType": { - "$ref": "1061" + "$ref": "1000" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Input,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1065", + "$id": "1004", "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.eagerness.anonymous", + "name": "RunStepDetailsToolCallType", + "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallType", "valueType": { - "$id": "1066", + "$id": "1005", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -12930,71 +12257,58 @@ }, "values": [ { - "$id": "1067", - "kind": "enumvalue", - "name": "low", - "value": "low", - "valueType": { - "$ref": "1066" - }, - "enumType": { - "$ref": "1065" - }, - "decorators": [] - }, - { - "$id": "1068", + "$id": "1006", "kind": "enumvalue", - "name": "medium", - "value": "medium", + "name": "code_interpreter", + "value": "code_interpreter", "valueType": { - "$ref": "1066" + "$ref": "1005" }, "enumType": { - "$ref": "1065" + "$ref": "1004" }, "decorators": [] }, { - "$id": "1069", + "$id": "1007", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "file_search", + "value": "file_search", "valueType": { - "$ref": "1066" + "$ref": "1005" }, "enumType": { - "$ref": "1065" + "$ref": "1004" }, "decorators": [] }, { - "$id": "1070", + "$id": "1008", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "function", + "value": "function", "valueType": { - "$ref": "1066" + "$ref": "1005" }, "enumType": { - "$ref": "1065" + "$ref": "1004" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Input,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1071", + "$id": "1009", "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReductionType", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_noise_reduction.type.anonymous", + "name": "RunStepDetailsCodeInterpreterOutputType", + "crossLanguageDefinitionId": "OpenAI.RunStepDetailsCodeInterpreterOutputType", "valueType": { - "$id": "1072", + "$id": "1010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13002,45 +12316,78 @@ }, "values": [ { - "$id": "1073", + "$id": "1011", "kind": "enumvalue", - "name": "near_field", - "value": "near_field", + "name": "logs", + "value": "logs", "valueType": { - "$ref": "1072" + "$ref": "1010" }, "enumType": { - "$ref": "1071" + "$ref": "1009" }, "decorators": [] }, { - "$id": "1074", + "$id": "1012", "kind": "enumvalue", - "name": "far_field", - "value": "far_field", + "name": "image", + "value": "image", "valueType": { - "$ref": "1072" + "$ref": "1010" }, "enumType": { - "$ref": "1071" + "$ref": "1009" }, "decorators": [] } ], - "namespace": "", + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1013", + "kind": "enum", + "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", + "crossLanguageDefinitionId": "OpenAI.RunStepDetailsToolCallsFileSearchResultObjectContentType", + "valueType": { + "$id": "1014", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "1015", + "kind": "enumvalue", + "name": "text", + "value": "text", + "valueType": { + "$ref": "1014" + }, + "enumType": { + "$ref": "1013" + }, + "decorators": [] + } + ], + "namespace": "OpenAI", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Output,Json", "decorators": [] }, { - "$id": "1075", + "$id": "1016", "kind": "enum", - "name": "RealtimeServerEventType", - "crossLanguageDefinitionId": "OpenAI.RealtimeServerEventType", + "name": "RunStepObjectLastErrorCode", + "crossLanguageDefinitionId": "OpenAI.RunStepObject.last_error.code.anonymous", "valueType": { - "$id": "1076", + "$id": "1017", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13048,533 +12395,726 @@ }, "values": [ { - "$id": "1077", + "$id": "1018", "kind": "enumvalue", - "name": "error", - "value": "error", + "name": "server_error", + "value": "server_error", "valueType": { - "$ref": "1076" + "$ref": "1017" }, "enumType": { - "$ref": "1075" + "$ref": "1016" }, "decorators": [] }, { - "$id": "1078", + "$id": "1019", "kind": "enumvalue", - "name": "session_created", - "value": "session.created", + "name": "rate_limit_exceeded", + "value": "rate_limit_exceeded", "valueType": { - "$ref": "1076" + "$ref": "1017" }, "enumType": { - "$ref": "1075" + "$ref": "1016" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1020", + "kind": "enum", + "name": "VectorStoreObjectStatus", + "crossLanguageDefinitionId": "OpenAI.VectorStoreObject.status.anonymous", + "valueType": { + "$id": "1021", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1079", + "$id": "1022", "kind": "enumvalue", - "name": "session_updated", - "value": "session.updated", + "name": "expired", + "value": "expired", "valueType": { - "$ref": "1076" + "$ref": "1021" }, "enumType": { - "$ref": "1075" + "$ref": "1020" }, "decorators": [] }, { - "$id": "1080", + "$id": "1023", "kind": "enumvalue", - "name": "conversation_created", - "value": "conversation.created", + "name": "in_progress", + "value": "in_progress", "valueType": { - "$ref": "1076" + "$ref": "1021" }, "enumType": { - "$ref": "1075" + "$ref": "1020" }, "decorators": [] }, { - "$id": "1081", + "$id": "1024", "kind": "enumvalue", - "name": "conversation_item_input_audio_transcription_completed", - "value": "conversation.item.input_audio_transcription.completed", + "name": "completed", + "value": "completed", "valueType": { - "$ref": "1076" + "$ref": "1021" }, "enumType": { - "$ref": "1075" + "$ref": "1020" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1025", + "kind": "enum", + "name": "VectorStoreExpirationAnchor", + "crossLanguageDefinitionId": "OpenAI.VectorStoreExpirationAnchor", + "valueType": { + "$id": "1026", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1082", + "$id": "1027", "kind": "enumvalue", - "name": "conversation_item_input_audio_transcription_delta", - "value": "conversation.item.input_audio_transcription.delta", + "name": "last_active_at", + "value": "last_active_at", "valueType": { - "$ref": "1076" + "$ref": "1026" }, "enumType": { - "$ref": "1075" + "$ref": "1025" }, "decorators": [] - }, + } + ], + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output,Json", + "decorators": [] + }, + { + "$id": "1028", + "kind": "enum", + "name": "VectorStoreFileBatchObjectStatus", + "crossLanguageDefinitionId": "OpenAI.VectorStoreFileBatchObject.status.anonymous", + "valueType": { + "$id": "1029", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1083", + "$id": "1030", "kind": "enumvalue", - "name": "conversation_item_input_audio_transcription_failed", - "value": "conversation.item.input_audio_transcription.failed", + "name": "in_progress", + "value": "in_progress", "valueType": { - "$ref": "1076" + "$ref": "1029" }, "enumType": { - "$ref": "1075" + "$ref": "1028" }, "decorators": [] }, { - "$id": "1084", + "$id": "1031", "kind": "enumvalue", - "name": "conversation_item_created", - "value": "conversation.item.created", + "name": "completed", + "value": "completed", "valueType": { - "$ref": "1076" + "$ref": "1029" }, "enumType": { - "$ref": "1075" + "$ref": "1028" }, "decorators": [] }, { - "$id": "1085", + "$id": "1032", "kind": "enumvalue", - "name": "conversation_item_retrieved", - "value": "conversation.item.retrieved", + "name": "cancelled", + "value": "cancelled", "valueType": { - "$ref": "1076" + "$ref": "1029" }, "enumType": { - "$ref": "1075" + "$ref": "1028" }, "decorators": [] }, { - "$id": "1086", + "$id": "1033", "kind": "enumvalue", - "name": "conversation_item_truncated", - "value": "conversation.item.truncated", + "name": "failed", + "value": "failed", "valueType": { - "$ref": "1076" + "$ref": "1029" }, "enumType": { - "$ref": "1075" + "$ref": "1028" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1034", + "kind": "enum", + "name": "VectorStoreFileObjectStatus", + "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.status.anonymous", + "valueType": { + "$id": "1035", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1087", + "$id": "1036", "kind": "enumvalue", - "name": "conversation_item_deleted", - "value": "conversation.item.deleted", + "name": "in_progress", + "value": "in_progress", "valueType": { - "$ref": "1076" + "$ref": "1035" }, "enumType": { - "$ref": "1075" + "$ref": "1034" }, "decorators": [] }, { - "$id": "1088", + "$id": "1037", "kind": "enumvalue", - "name": "input_audio_buffer_committed", - "value": "input_audio_buffer.committed", + "name": "completed", + "value": "completed", "valueType": { - "$ref": "1076" + "$ref": "1035" }, "enumType": { - "$ref": "1075" + "$ref": "1034" }, "decorators": [] }, { - "$id": "1089", + "$id": "1038", "kind": "enumvalue", - "name": "input_audio_buffer_cleared", - "value": "input_audio_buffer.cleared", + "name": "cancelled", + "value": "cancelled", "valueType": { - "$ref": "1076" + "$ref": "1035" }, "enumType": { - "$ref": "1075" + "$ref": "1034" }, "decorators": [] }, { - "$id": "1090", + "$id": "1039", "kind": "enumvalue", - "name": "input_audio_buffer_speech_started", - "value": "input_audio_buffer.speech_started", + "name": "failed", + "value": "failed", "valueType": { - "$ref": "1076" + "$ref": "1035" }, "enumType": { - "$ref": "1075" + "$ref": "1034" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1040", + "kind": "enum", + "name": "VectorStoreFileObjectLastErrorCode", + "crossLanguageDefinitionId": "OpenAI.VectorStoreFileObject.last_error.code.anonymous", + "valueType": { + "$id": "1041", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1091", + "$id": "1042", "kind": "enumvalue", - "name": "input_audio_buffer_speech_stopped", - "value": "input_audio_buffer.speech_stopped", + "name": "server_error", + "value": "server_error", "valueType": { - "$ref": "1076" + "$ref": "1041" }, "enumType": { - "$ref": "1075" + "$ref": "1040" }, "decorators": [] }, { - "$id": "1092", + "$id": "1043", "kind": "enumvalue", - "name": "output_audio_buffer_cleared", - "value": "output_audio_buffer.cleared", + "name": "unsupported_file", + "value": "unsupported_file", "valueType": { - "$ref": "1076" + "$ref": "1041" }, "enumType": { - "$ref": "1075" + "$ref": "1040" }, "decorators": [] }, { - "$id": "1093", + "$id": "1044", "kind": "enumvalue", - "name": "output_audio_buffer_started", - "value": "output_audio_buffer.started", + "name": "invalid_file", + "value": "invalid_file", "valueType": { - "$ref": "1076" + "$ref": "1041" }, "enumType": { - "$ref": "1075" + "$ref": "1040" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1045", + "kind": "enum", + "name": "ChunkingStrategyResponseParamType", + "crossLanguageDefinitionId": "OpenAI.ChunkingStrategyResponseParam.type.anonymous", + "valueType": { + "$id": "1046", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1094", + "$id": "1047", "kind": "enumvalue", - "name": "output_audio_buffer_stopped", - "value": "output_audio_buffer.stopped", + "name": "static", + "value": "static", "valueType": { - "$ref": "1076" + "$ref": "1046" }, "enumType": { - "$ref": "1075" + "$ref": "1045" }, "decorators": [] }, { - "$id": "1095", + "$id": "1048", "kind": "enumvalue", - "name": "response_created", - "value": "response.created", + "name": "other", + "value": "other", "valueType": { - "$ref": "1076" + "$ref": "1046" }, "enumType": { - "$ref": "1075" + "$ref": "1045" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1049", + "kind": "enum", + "name": "VectorStoreSearchRequestRankingOptionsRanker", + "crossLanguageDefinitionId": "OpenAI.VectorStoreSearchRequest.ranking_options.ranker.anonymous", + "valueType": { + "$id": "1050", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1096", + "$id": "1051", "kind": "enumvalue", - "name": "response_done", - "value": "response.done", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "1076" + "$ref": "1050" }, "enumType": { - "$ref": "1075" + "$ref": "1049" }, "decorators": [] }, { - "$id": "1097", + "$id": "1052", "kind": "enumvalue", - "name": "response_output_item_added", - "value": "response.output_item.added", + "name": "default-2024-11-15", + "value": "default-2024-11-15", "valueType": { - "$ref": "1076" + "$ref": "1050" }, "enumType": { - "$ref": "1075" + "$ref": "1049" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Json", + "decorators": [] + }, + { + "$id": "1053", + "kind": "enum", + "name": "CreateCompletionRequestModel", + "crossLanguageDefinitionId": "OpenAI.CreateCompletionRequest.model.anonymous", + "valueType": { + "$id": "1054", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1098", + "$id": "1055", "kind": "enumvalue", - "name": "response_output_item_done", - "value": "response.output_item.done", + "name": "gpt-3.5-turbo-instruct", + "value": "gpt-3.5-turbo-instruct", "valueType": { - "$ref": "1076" + "$ref": "1054" }, "enumType": { - "$ref": "1075" + "$ref": "1053" }, "decorators": [] }, { - "$id": "1099", + "$id": "1056", "kind": "enumvalue", - "name": "response_content_part_added", - "value": "response.content_part.added", + "name": "davinci-002", + "value": "davinci-002", "valueType": { - "$ref": "1076" + "$ref": "1054" }, "enumType": { - "$ref": "1075" + "$ref": "1053" }, "decorators": [] }, { - "$id": "1100", + "$id": "1057", "kind": "enumvalue", - "name": "response_content_part_done", - "value": "response.content_part.done", + "name": "babbage-002", + "value": "babbage-002", "valueType": { - "$ref": "1076" + "$ref": "1054" }, "enumType": { - "$ref": "1075" + "$ref": "1053" }, "decorators": [] - }, + } + ], + "namespace": "", + "isFixed": false, + "isFlags": false, + "usage": "Input,Json", + "decorators": [] + }, + { + "$id": "1058", + "kind": "enum", + "name": "CreateCompletionResponseChoiceFinishReason", + "crossLanguageDefinitionId": "OpenAI.CreateCompletionResponse.choice.finish_reason.anonymous", + "valueType": { + "$id": "1059", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1101", + "$id": "1060", "kind": "enumvalue", - "name": "response_text_delta", - "value": "response.text.delta", + "name": "stop", + "value": "stop", "valueType": { - "$ref": "1076" + "$ref": "1059" }, "enumType": { - "$ref": "1075" + "$ref": "1058" }, "decorators": [] }, { - "$id": "1102", + "$id": "1061", "kind": "enumvalue", - "name": "response_text_done", - "value": "response.text.done", + "name": "length", + "value": "length", "valueType": { - "$ref": "1076" + "$ref": "1059" }, "enumType": { - "$ref": "1075" + "$ref": "1058" }, "decorators": [] }, { - "$id": "1103", + "$id": "1062", "kind": "enumvalue", - "name": "response_audio_transcript_delta", - "value": "response.audio_transcript.delta", + "name": "content_filter", + "value": "content_filter", + "valueType": { + "$ref": "1059" + }, + "enumType": { + "$ref": "1058" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1063", + "kind": "enum", + "name": "RealtimeClientEventType", + "crossLanguageDefinitionId": "OpenAI.RealtimeClientEventType", + "valueType": { + "$id": "1064", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "1065", + "kind": "enumvalue", + "name": "session_update", + "value": "session.update", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1104", + "$id": "1066", "kind": "enumvalue", - "name": "response_audio_transcript_done", - "value": "response.audio_transcript.done", + "name": "input_audio_buffer_append", + "value": "input_audio_buffer.append", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1105", + "$id": "1067", "kind": "enumvalue", - "name": "response_audio_delta", - "value": "response.audio.delta", + "name": "input_audio_buffer_commit", + "value": "input_audio_buffer.commit", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1106", + "$id": "1068", "kind": "enumvalue", - "name": "response_audio_done", - "value": "response.audio.done", + "name": "input_audio_buffer_clear", + "value": "input_audio_buffer.clear", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1107", + "$id": "1069", "kind": "enumvalue", - "name": "response_function_call_arguments_delta", - "value": "response.function_call_arguments.delta", + "name": "output_audio_buffer_clear", + "value": "output_audio_buffer.clear", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1108", + "$id": "1070", "kind": "enumvalue", - "name": "response_function_call_arguments_done", - "value": "response.function_call_arguments.done", + "name": "conversation_item_create", + "value": "conversation.item.create", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1109", + "$id": "1071", "kind": "enumvalue", - "name": "transcription_session_updated", - "value": "transcription_session.updated", + "name": "conversation_item_retrieve", + "value": "conversation.item.retrieve", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1110", + "$id": "1072", "kind": "enumvalue", - "name": "rate_limits_updated", - "value": "rate_limits.updated", + "name": "conversation_item_truncate", + "value": "conversation.item.truncate", "valueType": { - "$ref": "1076" + "$ref": "1064" }, "enumType": { - "$ref": "1075" + "$ref": "1063" }, "decorators": [] - } - ], - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "1111", - "kind": "enum", - "name": "RealtimeResponseStatus", - "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status.anonymous", - "valueType": { - "$id": "1112", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1113", + "$id": "1073", "kind": "enumvalue", - "name": "completed", - "value": "completed", + "name": "conversation_item_delete", + "value": "conversation.item.delete", "valueType": { - "$ref": "1112" + "$ref": "1064" }, "enumType": { - "$ref": "1111" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1114", + "$id": "1074", "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", + "name": "response_create", + "value": "response.create", "valueType": { - "$ref": "1112" + "$ref": "1064" }, "enumType": { - "$ref": "1111" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1115", + "$id": "1075", "kind": "enumvalue", - "name": "failed", - "value": "failed", + "name": "response_cancel", + "value": "response.cancel", "valueType": { - "$ref": "1112" + "$ref": "1064" }, "enumType": { - "$ref": "1111" + "$ref": "1063" }, "decorators": [] }, { - "$id": "1116", + "$id": "1076", "kind": "enumvalue", - "name": "incomplete", - "value": "incomplete", + "name": "transcription_session_update", + "value": "transcription_session.update", "valueType": { - "$ref": "1112" + "$ref": "1064" }, "enumType": { - "$ref": "1111" + "$ref": "1063" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1117", + "$id": "1077", "kind": "enum", - "name": "RealtimeResponseStatusDetailsType", - "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.type.anonymous", + "name": "RealtimeModality", + "crossLanguageDefinitionId": "OpenAI.RealtimeModality", "valueType": { - "$id": "1118", + "$id": "1078", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13582,71 +13122,45 @@ }, "values": [ { - "$id": "1119", - "kind": "enumvalue", - "name": "completed", - "value": "completed", - "valueType": { - "$ref": "1118" - }, - "enumType": { - "$ref": "1117" - }, - "decorators": [] - }, - { - "$id": "1120", - "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", - "valueType": { - "$ref": "1118" - }, - "enumType": { - "$ref": "1117" - }, - "decorators": [] - }, - { - "$id": "1121", + "$id": "1079", "kind": "enumvalue", - "name": "failed", - "value": "failed", + "name": "text", + "value": "text", "valueType": { - "$ref": "1118" + "$ref": "1078" }, "enumType": { - "$ref": "1117" + "$ref": "1077" }, "decorators": [] }, { - "$id": "1122", + "$id": "1080", "kind": "enumvalue", - "name": "incomplete", - "value": "incomplete", + "name": "audio", + "value": "audio", "valueType": { - "$ref": "1118" + "$ref": "1078" }, "enumType": { - "$ref": "1117" + "$ref": "1077" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1123", + "$id": "1081", "kind": "enum", - "name": "RealtimeResponseStatusDetailsReason", - "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.reason.anonymous", + "name": "RealtimeRequestSessionModel", + "crossLanguageDefinitionId": "OpenAI.RealtimeRequestSession.model.anonymous", "valueType": { - "$id": "1124", + "$id": "1082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13654,100 +13168,67 @@ }, "values": [ { - "$id": "1125", + "$id": "1083", "kind": "enumvalue", - "name": "turn_detected", - "value": "turn_detected", + "name": "gpt-4o-realtime-preview", + "value": "gpt-4o-realtime-preview", "valueType": { - "$ref": "1124" + "$ref": "1082" }, "enumType": { - "$ref": "1123" + "$ref": "1081" }, "decorators": [] }, { - "$id": "1126", + "$id": "1084", "kind": "enumvalue", - "name": "client_cancelled", - "value": "client_cancelled", + "name": "gpt-4o-realtime-preview-2024-10-01", + "value": "gpt-4o-realtime-preview-2024-10-01", "valueType": { - "$ref": "1124" + "$ref": "1082" }, "enumType": { - "$ref": "1123" + "$ref": "1081" }, "decorators": [] }, { - "$id": "1127", + "$id": "1085", "kind": "enumvalue", - "name": "max_output_tokens", - "value": "max_output_tokens", + "name": "gpt-4o-realtime-preview-2024-12-17", + "value": "gpt-4o-realtime-preview-2024-12-17", "valueType": { - "$ref": "1124" + "$ref": "1082" }, "enumType": { - "$ref": "1123" + "$ref": "1081" }, "decorators": [] }, { - "$id": "1128", - "kind": "enumvalue", - "name": "content_filter", - "value": "content_filter", - "valueType": { - "$ref": "1124" - }, - "enumType": { - "$ref": "1123" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Output,Json", - "decorators": [] - }, - { - "$id": "1129", - "kind": "enum", - "name": "RealtimeResponseModality", - "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.modality.anonymous", - "valueType": { - "$id": "1130", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "1131", + "$id": "1086", "kind": "enumvalue", - "name": "text", - "value": "text", + "name": "gpt-4o-mini-realtime-preview", + "value": "gpt-4o-mini-realtime-preview", "valueType": { - "$ref": "1130" + "$ref": "1082" }, "enumType": { - "$ref": "1129" + "$ref": "1081" }, "decorators": [] }, { - "$id": "1132", + "$id": "1087", "kind": "enumvalue", - "name": "audio", - "value": "audio", + "name": "gpt-4o-mini-realtime-preview-2024-12-17", + "value": "gpt-4o-mini-realtime-preview-2024-12-17", "valueType": { - "$ref": "1130" + "$ref": "1082" }, "enumType": { - "$ref": "1129" + "$ref": "1081" }, "decorators": [] } @@ -13755,16 +13236,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1133", + "$id": "1088", "kind": "enum", - "name": "RealtimeResponseOutputAudioFormat", - "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.output_audio_format.anonymous", + "name": "RealtimeAudioFormat", + "crossLanguageDefinitionId": "OpenAI.RealtimeAudioFormat", "valueType": { - "$id": "1134", + "$id": "1089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13772,58 +13253,58 @@ }, "values": [ { - "$id": "1135", + "$id": "1090", "kind": "enumvalue", "name": "pcm16", "value": "pcm16", "valueType": { - "$ref": "1134" + "$ref": "1089" }, "enumType": { - "$ref": "1133" + "$ref": "1088" }, "decorators": [] }, { - "$id": "1136", + "$id": "1091", "kind": "enumvalue", "name": "g711_ulaw", "value": "g711_ulaw", "valueType": { - "$ref": "1134" + "$ref": "1089" }, "enumType": { - "$ref": "1133" + "$ref": "1088" }, "decorators": [] }, { - "$id": "1137", + "$id": "1092", "kind": "enumvalue", "name": "g711_alaw", "value": "g711_alaw", "valueType": { - "$ref": "1134" + "$ref": "1089" }, "enumType": { - "$ref": "1133" + "$ref": "1088" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1138", + "$id": "1093", "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateResponseModality", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.modality.anonymous", + "name": "RealtimeAudioInputTranscriptionModel", + "crossLanguageDefinitionId": "OpenAI.RealtimeAudioInputTranscriptionModel", "valueType": { - "$id": "1139", + "$id": "1094", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13831,45 +13312,32 @@ }, "values": [ { - "$id": "1140", - "kind": "enumvalue", - "name": "text", - "value": "text", - "valueType": { - "$ref": "1139" - }, - "enumType": { - "$ref": "1138" - }, - "decorators": [] - }, - { - "$id": "1141", + "$id": "1095", "kind": "enumvalue", - "name": "audio", - "value": "audio", + "name": "whisper_1", + "value": "whisper-1", "valueType": { - "$ref": "1139" + "$ref": "1094" }, "enumType": { - "$ref": "1138" + "$ref": "1093" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1142", + "$id": "1096", "kind": "enum", - "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscriptionModel", - "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.input_audio_transcription.model.anonymous", + "name": "RealtimeTurnDetectionType", + "crossLanguageDefinitionId": "OpenAI.RealtimeTurnDetectionType", "valueType": { - "$id": "1143", + "$id": "1097", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13877,58 +13345,46 @@ }, "values": [ { - "$id": "1144", - "kind": "enumvalue", - "name": "gpt-4o-transcribe", - "value": "gpt-4o-transcribe", - "valueType": { - "$ref": "1143" - }, - "enumType": { - "$ref": "1142" - }, - "decorators": [] - }, - { - "$id": "1145", + "$id": "1098", "kind": "enumvalue", - "name": "gpt-4o-mini-transcribe", - "value": "gpt-4o-mini-transcribe", + "name": "server_vad", + "value": "server_vad", "valueType": { - "$ref": "1143" + "$ref": "1097" }, "enumType": { - "$ref": "1142" + "$ref": "1096" }, + "doc": "Indicates that server-side voice activity detection (VAD) should be enabled, allowing the server to determine when\nadd_user_audio commands present ends of speech and should be automatically committed.\n\nThe API will also detect when the user begins talking, sending a generation_canceled command.", "decorators": [] }, { - "$id": "1146", + "$id": "1099", "kind": "enumvalue", - "name": "whisper-1", - "value": "whisper-1", + "name": "semantic_vad", + "value": "semantic_vad", "valueType": { - "$ref": "1143" + "$ref": "1097" }, "enumType": { - "$ref": "1142" + "$ref": "1096" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1147", + "$id": "1100", "kind": "enum", - "name": "RealtimeSessionCreateRequestModel", - "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.model.anonymous", + "name": "RealtimeSemanticVadTurnDetectionEagerness", + "crossLanguageDefinitionId": "OpenAI.RealtimeSemanticVadTurnDetection.eagerness.anonymous", "valueType": { - "$id": "1148", + "$id": "1101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -13936,80 +13392,54 @@ }, "values": [ { - "$id": "1149", - "kind": "enumvalue", - "name": "gpt-4o-realtime-preview", - "value": "gpt-4o-realtime-preview", - "valueType": { - "$ref": "1148" - }, - "enumType": { - "$ref": "1147" - }, - "decorators": [] - }, - { - "$id": "1150", - "kind": "enumvalue", - "name": "gpt-4o-realtime-preview-2024-10-01", - "value": "gpt-4o-realtime-preview-2024-10-01", - "valueType": { - "$ref": "1148" - }, - "enumType": { - "$ref": "1147" - }, - "decorators": [] - }, - { - "$id": "1151", + "$id": "1102", "kind": "enumvalue", - "name": "gpt-4o-realtime-preview-2024-12-17", - "value": "gpt-4o-realtime-preview-2024-12-17", + "name": "low", + "value": "low", "valueType": { - "$ref": "1148" + "$ref": "1101" }, "enumType": { - "$ref": "1147" + "$ref": "1100" }, "decorators": [] }, { - "$id": "1152", + "$id": "1103", "kind": "enumvalue", - "name": "gpt-4o-realtime-preview-2025-06-03", - "value": "gpt-4o-realtime-preview-2025-06-03", + "name": "medium", + "value": "medium", "valueType": { - "$ref": "1148" + "$ref": "1101" }, "enumType": { - "$ref": "1147" + "$ref": "1100" }, "decorators": [] }, { - "$id": "1153", + "$id": "1104", "kind": "enumvalue", - "name": "gpt-4o-mini-realtime-preview", - "value": "gpt-4o-mini-realtime-preview", + "name": "high", + "value": "high", "valueType": { - "$ref": "1148" + "$ref": "1101" }, "enumType": { - "$ref": "1147" + "$ref": "1100" }, "decorators": [] }, { - "$id": "1154", + "$id": "1105", "kind": "enumvalue", - "name": "gpt-4o-mini-realtime-preview-2024-12-17", - "value": "gpt-4o-mini-realtime-preview-2024-12-17", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "1148" + "$ref": "1101" }, "enumType": { - "$ref": "1147" + "$ref": "1100" }, "decorators": [] } @@ -14017,16 +13447,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1155", + "$id": "1106", "kind": "enum", - "name": "RealtimeSessionCreateRequestTurnDetectionType", - "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.type.anonymous", + "name": "RealtimeAudioNoiseReductionType", + "crossLanguageDefinitionId": "OpenAI.RealtimeAudioNoiseReductionType", "valueType": { - "$id": "1156", + "$id": "1107", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14034,45 +13464,45 @@ }, "values": [ { - "$id": "1157", + "$id": "1108", "kind": "enumvalue", - "name": "server_vad", - "value": "server_vad", + "name": "near_field", + "value": "near_field", "valueType": { - "$ref": "1156" + "$ref": "1107" }, "enumType": { - "$ref": "1155" + "$ref": "1106" }, "decorators": [] }, { - "$id": "1158", + "$id": "1109", "kind": "enumvalue", - "name": "semantic_vad", - "value": "semantic_vad", + "name": "far_field", + "value": "far_field", "valueType": { - "$ref": "1156" + "$ref": "1107" }, "enumType": { - "$ref": "1155" + "$ref": "1106" }, "decorators": [] } ], - "namespace": "", + "namespace": "OpenAI", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1159", + "$id": "1110", "kind": "enum", - "name": "RealtimeSessionCreateRequestTurnDetectionEagerness", - "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.eagerness.anonymous", + "name": "RealtimeToolType", + "crossLanguageDefinitionId": "OpenAI.RealtimeToolType", "valueType": { - "$id": "1160", + "$id": "1111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14080,71 +13510,96 @@ }, "values": [ { - "$id": "1161", + "$id": "1112", "kind": "enumvalue", - "name": "low", - "value": "low", + "name": "function", + "value": "function", "valueType": { - "$ref": "1160" + "$ref": "1111" }, "enumType": { - "$ref": "1159" + "$ref": "1110" }, "decorators": [] - }, + } + ], + "namespace": "OpenAI", + "doc": "The supported tool type discriminators for realtime tools.\nCurrently, only 'function' tools are supported.", + "isFixed": false, + "isFlags": false, + "usage": "Input,Output,Json", + "decorators": [] + }, + { + "$id": "1113", + "kind": "enum", + "name": "RealtimeToolChoiceLiteral", + "crossLanguageDefinitionId": "OpenAI.RealtimeToolChoiceLiteral", + "valueType": { + "$id": "1114", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ { - "$id": "1162", + "$id": "1115", "kind": "enumvalue", - "name": "medium", - "value": "medium", + "name": "auto", + "value": "auto", "valueType": { - "$ref": "1160" + "$ref": "1114" }, "enumType": { - "$ref": "1159" + "$ref": "1113" }, + "doc": "Specifies that the model should freely determine which tool or tools, if any, to call.", "decorators": [] }, { - "$id": "1163", + "$id": "1116", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "none", + "value": "none", "valueType": { - "$ref": "1160" + "$ref": "1114" }, "enumType": { - "$ref": "1159" + "$ref": "1113" }, + "doc": "Specifies that the model should call no tools whatsoever.", "decorators": [] }, { - "$id": "1164", + "$id": "1117", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "required", + "value": "required", "valueType": { - "$ref": "1160" + "$ref": "1114" }, "enumType": { - "$ref": "1159" + "$ref": "1113" }, + "doc": "Specifies that the model should call at least one tool.", "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "doc": "The available set of mode-level, string literal tool_choice options for the realtime endpoint.", + "isFixed": false, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1165", + "$id": "1118", "kind": "enum", - "name": "RealtimeSessionCreateRequestInputAudioNoiseReductionType", - "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.input_audio_noise_reduction.type.anonymous", + "name": "RealtimeItemType", + "crossLanguageDefinitionId": "OpenAI.RealtimeItemType", "valueType": { - "$id": "1166", + "$id": "1119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14152,45 +13607,58 @@ }, "values": [ { - "$id": "1167", + "$id": "1120", "kind": "enumvalue", - "name": "near_field", - "value": "near_field", + "name": "message", + "value": "message", "valueType": { - "$ref": "1166" + "$ref": "1119" }, "enumType": { - "$ref": "1165" + "$ref": "1118" }, "decorators": [] }, { - "$id": "1168", + "$id": "1121", "kind": "enumvalue", - "name": "far_field", - "value": "far_field", + "name": "function_call", + "value": "function_call", + "valueType": { + "$ref": "1119" + }, + "enumType": { + "$ref": "1118" + }, + "decorators": [] + }, + { + "$id": "1122", + "kind": "enumvalue", + "name": "function_call_output", + "value": "function_call_output", "valueType": { - "$ref": "1166" + "$ref": "1119" }, "enumType": { - "$ref": "1165" + "$ref": "1118" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1169", + "$id": "1123", "kind": "enum", - "name": "CreateUploadRequestPurpose", - "crossLanguageDefinitionId": "OpenAI.CreateUploadRequest.purpose.anonymous", + "name": "RealtimeMessageRole", + "crossLanguageDefinitionId": "OpenAI.RealtimeMessageRole", "valueType": { - "$id": "1170", + "$id": "1124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14198,71 +13666,58 @@ }, "values": [ { - "$id": "1171", - "kind": "enumvalue", - "name": "assistants", - "value": "assistants", - "valueType": { - "$ref": "1170" - }, - "enumType": { - "$ref": "1169" - }, - "decorators": [] - }, - { - "$id": "1172", + "$id": "1125", "kind": "enumvalue", - "name": "batch", - "value": "batch", + "name": "system", + "value": "system", "valueType": { - "$ref": "1170" + "$ref": "1124" }, "enumType": { - "$ref": "1169" + "$ref": "1123" }, "decorators": [] }, { - "$id": "1173", + "$id": "1126", "kind": "enumvalue", - "name": "fine-tune", - "value": "fine-tune", + "name": "user", + "value": "user", "valueType": { - "$ref": "1170" + "$ref": "1124" }, "enumType": { - "$ref": "1169" + "$ref": "1123" }, "decorators": [] }, { - "$id": "1174", + "$id": "1127", "kind": "enumvalue", - "name": "vision", - "value": "vision", + "name": "assistant", + "value": "assistant", "valueType": { - "$ref": "1170" + "$ref": "1124" }, "enumType": { - "$ref": "1169" + "$ref": "1123" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1175", + "$id": "1128", "kind": "enum", - "name": "UploadStatus", - "crossLanguageDefinitionId": "OpenAI.Upload.status.anonymous", + "name": "RealtimeItemStatus", + "crossLanguageDefinitionId": "OpenAI.RealtimeItemStatus", "valueType": { - "$id": "1176", + "$id": "1129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14270,71 +13725,58 @@ }, "values": [ { - "$id": "1177", + "$id": "1130", "kind": "enumvalue", - "name": "pending", - "value": "pending", + "name": "in_progress", + "value": "in_progress", "valueType": { - "$ref": "1176" + "$ref": "1129" }, "enumType": { - "$ref": "1175" + "$ref": "1128" }, "decorators": [] }, { - "$id": "1178", + "$id": "1131", "kind": "enumvalue", "name": "completed", "value": "completed", "valueType": { - "$ref": "1176" - }, - "enumType": { - "$ref": "1175" - }, - "decorators": [] - }, - { - "$id": "1179", - "kind": "enumvalue", - "name": "cancelled", - "value": "cancelled", - "valueType": { - "$ref": "1176" + "$ref": "1129" }, "enumType": { - "$ref": "1175" + "$ref": "1128" }, "decorators": [] }, { - "$id": "1180", + "$id": "1132", "kind": "enumvalue", - "name": "expired", - "value": "expired", + "name": "incomplete", + "value": "incomplete", "valueType": { - "$ref": "1176" + "$ref": "1129" }, "enumType": { - "$ref": "1175" + "$ref": "1128" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Output,Json", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1181", + "$id": "1133", "kind": "enum", - "name": "FineTuneChatCompletionRequestAssistantMessageWeight", - "crossLanguageDefinitionId": "OpenAI.FineTuneChatCompletionRequestAssistantMessage.weight.anonymous", + "name": "RealtimeContentPartType", + "crossLanguageDefinitionId": "OpenAI.RealtimeContentPartType", "valueType": { - "$id": "1182", + "$id": "1134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14342,45 +13784,71 @@ }, "values": [ { - "$id": "1183", + "$id": "1135", "kind": "enumvalue", - "name": "0", - "value": "0", + "name": "input_text", + "value": "input_text", "valueType": { - "$ref": "1182" + "$ref": "1134" }, "enumType": { - "$ref": "1181" + "$ref": "1133" }, "decorators": [] }, { - "$id": "1184", + "$id": "1136", "kind": "enumvalue", - "name": "1", - "value": "1", + "name": "input_audio", + "value": "input_audio", + "valueType": { + "$ref": "1134" + }, + "enumType": { + "$ref": "1133" + }, + "decorators": [] + }, + { + "$id": "1137", + "kind": "enumvalue", + "name": "text", + "value": "text", + "valueType": { + "$ref": "1134" + }, + "enumType": { + "$ref": "1133" + }, + "decorators": [] + }, + { + "$id": "1138", + "kind": "enumvalue", + "name": "audio", + "value": "audio", "valueType": { - "$ref": "1182" + "$ref": "1134" }, "enumType": { - "$ref": "1181" + "$ref": "1133" }, "decorators": [] } ], - "namespace": "", - "isFixed": true, + "namespace": "OpenAI", + "isFixed": false, "isFlags": false, - "usage": "Input", + "usage": "Input,Output,Json", "decorators": [] }, { - "$id": "1185", + "$id": "1139", "kind": "enum", - "name": "MessageDeltaContentImageFileObjectImageFileDetail", - "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageFileObject.image_file.detail.anonymous", + "name": "RealtimeResponseCreateParamsConversation", + "crossLanguageDefinitionId": "OpenAI.RealtimeResponseCreateParams.conversation.anonymous", "valueType": { - "$id": "1186", + "$id": "1140", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14388,58 +13856,45 @@ }, "values": [ { - "$id": "1187", + "$id": "1141", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1186" - }, - "enumType": { - "$ref": "1185" - }, - "decorators": [] - }, - { - "$id": "1188", - "kind": "enumvalue", - "name": "low", - "value": "low", - "valueType": { - "$ref": "1186" + "$ref": "1140" }, "enumType": { - "$ref": "1185" + "$ref": "1139" }, "decorators": [] }, { - "$id": "1189", + "$id": "1142", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "none", + "value": "none", "valueType": { - "$ref": "1186" + "$ref": "1140" }, "enumType": { - "$ref": "1185" + "$ref": "1139" }, "decorators": [] } ], "namespace": "", - "isFixed": true, + "isFixed": false, "isFlags": false, - "usage": "Output", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1190", + "$id": "1143", "kind": "enum", - "name": "MessageDeltaContentImageUrlObjectImageUrlDetail", - "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageUrlObject.image_url.detail.anonymous", + "name": "RealtimeTranscriptionSessionCreateRequestModality", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.modality.anonymous", "valueType": { - "$id": "1191", + "$id": "1144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14447,41 +13902,28 @@ }, "values": [ { - "$id": "1192", + "$id": "1145", "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "1191" - }, - "enumType": { - "$ref": "1190" - }, - "decorators": [] - }, - { - "$id": "1193", - "kind": "enumvalue", - "name": "low", - "value": "low", + "name": "text", + "value": "text", "valueType": { - "$ref": "1191" + "$ref": "1144" }, "enumType": { - "$ref": "1190" + "$ref": "1143" }, "decorators": [] }, { - "$id": "1194", + "$id": "1146", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "audio", + "value": "audio", "valueType": { - "$ref": "1191" + "$ref": "1144" }, "enumType": { - "$ref": "1190" + "$ref": "1143" }, "decorators": [] } @@ -14489,16 +13931,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1195", + "$id": "1147", "kind": "enum", - "name": "MessageDeltaObjectDeltaRole", - "crossLanguageDefinitionId": "OpenAI.MessageDeltaObject.delta.role.anonymous", + "name": "RealtimeTranscriptionSessionCreateRequestInputAudioFormat", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_format.anonymous", "valueType": { - "$id": "1196", + "$id": "1148", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14506,28 +13948,41 @@ }, "values": [ { - "$id": "1197", + "$id": "1149", "kind": "enumvalue", - "name": "user", - "value": "user", + "name": "pcm16", + "value": "pcm16", "valueType": { - "$ref": "1196" + "$ref": "1148" }, "enumType": { - "$ref": "1195" + "$ref": "1147" }, "decorators": [] }, { - "$id": "1198", + "$id": "1150", "kind": "enumvalue", - "name": "assistant", - "value": "assistant", + "name": "g711_ulaw", + "value": "g711_ulaw", + "valueType": { + "$ref": "1148" + }, + "enumType": { + "$ref": "1147" + }, + "decorators": [] + }, + { + "$id": "1151", + "kind": "enumvalue", + "name": "g711_alaw", + "value": "g711_alaw", "valueType": { - "$ref": "1196" + "$ref": "1148" }, "enumType": { - "$ref": "1195" + "$ref": "1147" }, "decorators": [] } @@ -14535,16 +13990,16 @@ "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Output", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1199", + "$id": "1152", "kind": "enum", - "name": "ChatCompletionCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOrder", + "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscriptionModel", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_transcription.model.anonymous", "valueType": { - "$id": "1200", + "$id": "1153", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14552,45 +14007,58 @@ }, "values": [ { - "$id": "1201", + "$id": "1154", "kind": "enumvalue", - "name": "Ascending", - "value": "asc", + "name": "gpt-4o-transcribe", + "value": "gpt-4o-transcribe", "valueType": { - "$ref": "1200" + "$ref": "1153" }, "enumType": { - "$ref": "1199" + "$ref": "1152" }, "decorators": [] }, { - "$id": "1202", + "$id": "1155", "kind": "enumvalue", - "name": "Descending", - "value": "desc", + "name": "gpt-4o-mini-transcribe", + "value": "gpt-4o-mini-transcribe", + "valueType": { + "$ref": "1153" + }, + "enumType": { + "$ref": "1152" + }, + "decorators": [] + }, + { + "$id": "1156", + "kind": "enumvalue", + "name": "whisper-1", + "value": "whisper-1", "valueType": { - "$ref": "1200" + "$ref": "1153" }, "enumType": { - "$ref": "1199" + "$ref": "1152" }, "decorators": [] } ], - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Input", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1203", + "$id": "1157", "kind": "enum", - "name": "ChatCompletionMessageCollectionOrder", - "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOrder", + "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionType", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.type.anonymous", "valueType": { - "$id": "1204", + "$id": "1158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14598,45 +14066,45 @@ }, "values": [ { - "$id": "1205", + "$id": "1159", "kind": "enumvalue", - "name": "Ascending", - "value": "asc", + "name": "server_vad", + "value": "server_vad", "valueType": { - "$ref": "1204" + "$ref": "1158" }, "enumType": { - "$ref": "1203" + "$ref": "1157" }, "decorators": [] }, { - "$id": "1206", + "$id": "1160", "kind": "enumvalue", - "name": "Descending", - "value": "desc", + "name": "semantic_vad", + "value": "semantic_vad", "valueType": { - "$ref": "1204" + "$ref": "1158" }, "enumType": { - "$ref": "1203" + "$ref": "1157" }, "decorators": [] } ], - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Input", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1207", + "$id": "1161", "kind": "enum", - "name": "DotNetCombinedChunkingStrategyParamType", - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam.type.anonymous", + "name": "RealtimeTranscriptionSessionCreateRequestTurnDetectionEagerness", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.turn_detection.eagerness.anonymous", "valueType": { - "$id": "1208", + "$id": "1162", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14644,92 +14112,71 @@ }, "values": [ { - "$id": "1209", + "$id": "1163", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "low", + "value": "low", "valueType": { - "$ref": "1208" + "$ref": "1162" }, "enumType": { - "$ref": "1207" + "$ref": "1161" }, "decorators": [] }, { - "$id": "1210", + "$id": "1164", "kind": "enumvalue", - "name": "static", - "value": "static", + "name": "medium", + "value": "medium", "valueType": { - "$ref": "1208" + "$ref": "1162" }, "enumType": { - "$ref": "1207" + "$ref": "1161" }, "decorators": [] }, { - "$id": "1211", + "$id": "1165", "kind": "enumvalue", - "name": "other", - "value": "other", + "name": "high", + "value": "high", "valueType": { - "$ref": "1208" + "$ref": "1162" }, "enumType": { - "$ref": "1207" + "$ref": "1161" }, "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output", - "decorators": [] - }, - { - "$id": "1212", - "kind": "enum", - "name": "CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", - "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", - "valueType": { - "$id": "1213", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1214", + "$id": "1166", "kind": "enumvalue", "name": "auto", "value": "auto", "valueType": { - "$ref": "1213" + "$ref": "1162" }, "enumType": { - "$ref": "1212" + "$ref": "1161" }, "decorators": [] } ], - "access": "public", - "namespace": "OpenAI", + "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1215", + "$id": "1167", "kind": "enum", - "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", - "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", + "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReductionType", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateRequest.input_audio_noise_reduction.type.anonymous", "valueType": { - "$id": "1216", + "$id": "1168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14737,67 +14184,45 @@ }, "values": [ { - "$id": "1217", + "$id": "1169", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "near_field", + "value": "near_field", "valueType": { - "$ref": "1216" + "$ref": "1168" }, "enumType": { - "$ref": "1215" + "$ref": "1167" }, "decorators": [] - } - ], - "access": "public", - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "1218", - "kind": "enum", - "name": "CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", - "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", - "valueType": { - "$id": "1219", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1220", + "$id": "1170", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "far_field", + "value": "far_field", "valueType": { - "$ref": "1219" + "$ref": "1168" }, "enumType": { - "$ref": "1218" + "$ref": "1167" }, "decorators": [] } ], - "access": "public", - "namespace": "OpenAI", + "namespace": "", "isFixed": true, "isFlags": false, - "usage": "Input", + "usage": "Input,Json", "decorators": [] }, { - "$id": "1221", + "$id": "1171", "kind": "enum", - "name": "CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", - "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", + "name": "RealtimeServerEventType", + "crossLanguageDefinitionId": "OpenAI.RealtimeServerEventType", "valueType": { - "$id": "1222", + "$id": "1172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -14805,1305 +14230,2949 @@ }, "values": [ { - "$id": "1223", + "$id": "1173", "kind": "enumvalue", - "name": "auto", - "value": "auto", + "name": "error", + "value": "error", "valueType": { - "$ref": "1222" + "$ref": "1172" }, "enumType": { - "$ref": "1221" + "$ref": "1171" }, "decorators": [] - } - ], - "access": "public", - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] - }, - { - "$id": "1224", - "kind": "enum", - "name": "DotNetResponseReasoningEffortLevel", - "crossLanguageDefinitionId": "OpenAI.DotNetResponseReasoningEffortLevel", - "valueType": { - "$id": "1225", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1226", + "$id": "1174", "kind": "enumvalue", - "name": "low", - "value": "low", + "name": "session_created", + "value": "session.created", "valueType": { - "$ref": "1225" + "$ref": "1172" }, "enumType": { - "$ref": "1224" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1227", + "$id": "1175", "kind": "enumvalue", - "name": "medium", - "value": "medium", + "name": "session_updated", + "value": "session.updated", "valueType": { - "$ref": "1225" + "$ref": "1172" }, "enumType": { - "$ref": "1224" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1228", + "$id": "1176", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "conversation_created", + "value": "conversation.created", "valueType": { - "$ref": "1225" + "$ref": "1172" }, "enumType": { - "$ref": "1224" + "$ref": "1171" }, "decorators": [] - } - ], - "access": "public", - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output", - "decorators": [] - }, - { - "$id": "1229", - "kind": "enum", - "name": "DotNetResponseWebSearchContextSize", - "crossLanguageDefinitionId": "OpenAI.DotNetResponseWebSearchContextSize", - "valueType": { - "$id": "1230", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1231", + "$id": "1177", "kind": "enumvalue", - "name": "low", - "value": "low", + "name": "conversation_item_input_audio_transcription_completed", + "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "1230" + "$ref": "1172" }, "enumType": { - "$ref": "1229" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1232", + "$id": "1178", "kind": "enumvalue", - "name": "medium", - "value": "medium", + "name": "conversation_item_input_audio_transcription_delta", + "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "1230" + "$ref": "1172" }, "enumType": { - "$ref": "1229" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1233", + "$id": "1179", "kind": "enumvalue", - "name": "high", - "value": "high", + "name": "conversation_item_input_audio_transcription_failed", + "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "1230" + "$ref": "1172" }, "enumType": { - "$ref": "1229" + "$ref": "1171" }, "decorators": [] - } - ], - "access": "public", - "namespace": "OpenAI", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output", - "decorators": [] - }, - { - "$id": "1234", - "kind": "enum", - "name": "DotNetAudioVoiceIds", - "crossLanguageDefinitionId": "OpenAI.DotNetAudioVoiceIds", - "valueType": { - "$id": "1235", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1236", + "$id": "1180", "kind": "enumvalue", - "name": "alloy", - "value": "alloy", + "name": "conversation_item_created", + "value": "conversation.item.created", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1237", + "$id": "1181", "kind": "enumvalue", - "name": "ash", - "value": "ash", + "name": "conversation_item_retrieved", + "value": "conversation.item.retrieved", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1238", + "$id": "1182", "kind": "enumvalue", - "name": "ballad", - "value": "ballad", + "name": "conversation_item_truncated", + "value": "conversation.item.truncated", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1239", + "$id": "1183", "kind": "enumvalue", - "name": "coral", - "value": "coral", + "name": "conversation_item_deleted", + "value": "conversation.item.deleted", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1240", + "$id": "1184", "kind": "enumvalue", - "name": "echo", - "value": "echo", + "name": "input_audio_buffer_committed", + "value": "input_audio_buffer.committed", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1241", + "$id": "1185", "kind": "enumvalue", - "name": "fable", - "value": "fable", + "name": "input_audio_buffer_cleared", + "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1242", + "$id": "1186", "kind": "enumvalue", - "name": "onyx", - "value": "onyx", + "name": "input_audio_buffer_speech_started", + "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1243", + "$id": "1187", "kind": "enumvalue", - "name": "nova", - "value": "nova", + "name": "input_audio_buffer_speech_stopped", + "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1244", + "$id": "1188", "kind": "enumvalue", - "name": "sage", - "value": "sage", + "name": "output_audio_buffer_cleared", + "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1245", + "$id": "1189", "kind": "enumvalue", - "name": "shimmer", - "value": "shimmer", + "name": "output_audio_buffer_started", + "value": "output_audio_buffer.started", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1246", + "$id": "1190", "kind": "enumvalue", - "name": "verse", - "value": "verse", + "name": "output_audio_buffer_stopped", + "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "1235" + "$ref": "1172" }, "enumType": { - "$ref": "1234" + "$ref": "1171" }, "decorators": [] - } - ], - "access": "public", - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Output", - "decorators": [] - }, - { - "$id": "1247", - "kind": "enum", - "name": "DotNetChatVoiceIds", - "crossLanguageDefinitionId": "OpenAI.DotNetChatVoiceIds", - "valueType": { - "$id": "1248", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1249", + "$id": "1191", "kind": "enumvalue", - "name": "alloy", - "value": "alloy", + "name": "response_created", + "value": "response.created", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1250", + "$id": "1192", "kind": "enumvalue", - "name": "ash", - "value": "ash", + "name": "response_done", + "value": "response.done", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1251", + "$id": "1193", "kind": "enumvalue", - "name": "ballad", - "value": "ballad", + "name": "response_output_item_added", + "value": "response.output_item.added", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1252", + "$id": "1194", "kind": "enumvalue", - "name": "coral", - "value": "coral", + "name": "response_output_item_done", + "value": "response.output_item.done", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1253", + "$id": "1195", "kind": "enumvalue", - "name": "echo", - "value": "echo", + "name": "response_content_part_added", + "value": "response.content_part.added", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1254", + "$id": "1196", "kind": "enumvalue", - "name": "fable", - "value": "fable", + "name": "response_content_part_done", + "value": "response.content_part.done", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1255", + "$id": "1197", "kind": "enumvalue", - "name": "onyx", - "value": "onyx", + "name": "response_text_delta", + "value": "response.text.delta", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1256", + "$id": "1198", "kind": "enumvalue", - "name": "nova", - "value": "nova", + "name": "response_text_done", + "value": "response.text.done", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1257", + "$id": "1199", "kind": "enumvalue", - "name": "sage", - "value": "sage", + "name": "response_audio_transcript_delta", + "value": "response.audio_transcript.delta", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1258", + "$id": "1200", "kind": "enumvalue", - "name": "shimmer", - "value": "shimmer", + "name": "response_audio_transcript_done", + "value": "response.audio_transcript.done", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1259", + "$id": "1201", "kind": "enumvalue", - "name": "verse", - "value": "verse", + "name": "response_audio_delta", + "value": "response.audio.delta", "valueType": { - "$ref": "1248" + "$ref": "1172" }, "enumType": { - "$ref": "1247" + "$ref": "1171" }, "decorators": [] - } - ], - "access": "public", - "namespace": "OpenAI", - "isFixed": false, - "isFlags": false, - "usage": "Input,Output", - "decorators": [] - }, - { - "$id": "1260", - "kind": "enum", - "name": "DotNetRealtimeVoiceIds", - "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeVoiceIds", - "valueType": { - "$id": "1261", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ + }, { - "$id": "1262", + "$id": "1202", "kind": "enumvalue", - "name": "alloy", - "value": "alloy", + "name": "response_audio_done", + "value": "response.audio.done", "valueType": { - "$ref": "1261" + "$ref": "1172" }, "enumType": { - "$ref": "1260" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1263", + "$id": "1203", "kind": "enumvalue", - "name": "ash", - "value": "ash", + "name": "response_function_call_arguments_delta", + "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "1261" + "$ref": "1172" }, "enumType": { - "$ref": "1260" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1264", + "$id": "1204", "kind": "enumvalue", - "name": "ballad", - "value": "ballad", + "name": "response_function_call_arguments_done", + "value": "response.function_call_arguments.done", "valueType": { - "$ref": "1261" + "$ref": "1172" }, "enumType": { - "$ref": "1260" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1265", + "$id": "1205", "kind": "enumvalue", - "name": "coral", - "value": "coral", + "name": "transcription_session_updated", + "value": "transcription_session.updated", "valueType": { - "$ref": "1261" + "$ref": "1172" }, "enumType": { - "$ref": "1260" + "$ref": "1171" }, "decorators": [] }, { - "$id": "1266", + "$id": "1206", "kind": "enumvalue", - "name": "echo", - "value": "echo", + "name": "rate_limits_updated", + "value": "rate_limits.updated", "valueType": { - "$ref": "1261" + "$ref": "1172" + }, + "enumType": { + "$ref": "1171" + }, + "decorators": [] + } + ], + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1207", + "kind": "enum", + "name": "RealtimeResponseStatus", + "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status.anonymous", + "valueType": { + "$id": "1208", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "1209", + "kind": "enumvalue", + "name": "completed", + "value": "completed", + "valueType": { + "$ref": "1208" }, "enumType": { - "$ref": "1260" + "$ref": "1207" }, "decorators": [] }, { - "$id": "1267", + "$id": "1210", "kind": "enumvalue", - "name": "fable", - "value": "fable", + "name": "cancelled", + "value": "cancelled", "valueType": { - "$ref": "1261" + "$ref": "1208" }, "enumType": { - "$ref": "1260" + "$ref": "1207" }, "decorators": [] }, { - "$id": "1268", + "$id": "1211", "kind": "enumvalue", - "name": "onyx", - "value": "onyx", + "name": "failed", + "value": "failed", "valueType": { - "$ref": "1261" + "$ref": "1208" }, "enumType": { - "$ref": "1260" + "$ref": "1207" }, "decorators": [] }, { - "$id": "1269", + "$id": "1212", "kind": "enumvalue", - "name": "nova", - "value": "nova", + "name": "incomplete", + "value": "incomplete", "valueType": { - "$ref": "1261" + "$ref": "1208" + }, + "enumType": { + "$ref": "1207" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", + "decorators": [] + }, + { + "$id": "1213", + "kind": "enum", + "name": "RealtimeResponseStatusDetailsType", + "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.type.anonymous", + "valueType": { + "$id": "1214", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "values": [ + { + "$id": "1215", + "kind": "enumvalue", + "name": "completed", + "value": "completed", + "valueType": { + "$ref": "1214" }, "enumType": { - "$ref": "1260" + "$ref": "1213" }, "decorators": [] }, { - "$id": "1270", + "$id": "1216", "kind": "enumvalue", - "name": "sage", - "value": "sage", + "name": "cancelled", + "value": "cancelled", "valueType": { - "$ref": "1261" + "$ref": "1214" }, "enumType": { - "$ref": "1260" + "$ref": "1213" }, "decorators": [] }, { - "$id": "1271", + "$id": "1217", "kind": "enumvalue", - "name": "shimmer", - "value": "shimmer", + "name": "failed", + "value": "failed", "valueType": { - "$ref": "1261" + "$ref": "1214" }, "enumType": { - "$ref": "1260" + "$ref": "1213" }, "decorators": [] }, { - "$id": "1272", + "$id": "1218", "kind": "enumvalue", - "name": "verse", - "value": "verse", + "name": "incomplete", + "value": "incomplete", "valueType": { - "$ref": "1261" + "$ref": "1214" }, "enumType": { - "$ref": "1260" + "$ref": "1213" }, "decorators": [] } ], - "access": "public", - "namespace": "OpenAI", - "isFixed": false, + "namespace": "", + "isFixed": true, "isFlags": false, - "usage": "Input,Output", + "usage": "Output,Json", "decorators": [] - } - ], - "constants": [ + }, { - "$id": "1273", - "kind": "constant", - "name": "ListAssistantsResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1219", + "kind": "enum", + "name": "RealtimeResponseStatusDetailsReason", + "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.status_details.reason.anonymous", "valueType": { - "$id": "1274", + "$id": "1220", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1221", + "kind": "enumvalue", + "name": "turn_detected", + "value": "turn_detected", + "valueType": { + "$ref": "1220" + }, + "enumType": { + "$ref": "1219" + }, + "decorators": [] + }, + { + "$id": "1222", + "kind": "enumvalue", + "name": "client_cancelled", + "value": "client_cancelled", + "valueType": { + "$ref": "1220" + }, + "enumType": { + "$ref": "1219" + }, + "decorators": [] + }, + { + "$id": "1223", + "kind": "enumvalue", + "name": "max_output_tokens", + "value": "max_output_tokens", + "valueType": { + "$ref": "1220" + }, + "enumType": { + "$ref": "1219" + }, + "decorators": [] + }, + { + "$id": "1224", + "kind": "enumvalue", + "name": "content_filter", + "value": "content_filter", + "valueType": { + "$ref": "1220" + }, + "enumType": { + "$ref": "1219" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", "decorators": [] }, { - "$id": "1275", - "kind": "constant", - "name": "AssistantObjectObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1225", + "kind": "enum", + "name": "RealtimeResponseModality", + "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.modality.anonymous", "valueType": { - "$id": "1276", + "$id": "1226", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistant", + "values": [ + { + "$id": "1227", + "kind": "enumvalue", + "name": "text", + "value": "text", + "valueType": { + "$ref": "1226" + }, + "enumType": { + "$ref": "1225" + }, + "decorators": [] + }, + { + "$id": "1228", + "kind": "enumvalue", + "name": "audio", + "value": "audio", + "valueType": { + "$ref": "1226" + }, + "enumType": { + "$ref": "1225" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", "decorators": [] }, { - "$id": "1277", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker", - "namespace": "", - "usage": "None", + "$id": "1229", + "kind": "enum", + "name": "RealtimeResponseOutputAudioFormat", + "crossLanguageDefinitionId": "OpenAI.RealtimeResponse.output_audio_format.anonymous", "valueType": { - "$id": "1278", + "$id": "1230", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1231", + "kind": "enumvalue", + "name": "pcm16", + "value": "pcm16", + "valueType": { + "$ref": "1230" + }, + "enumType": { + "$ref": "1229" + }, + "decorators": [] + }, + { + "$id": "1232", + "kind": "enumvalue", + "name": "g711_ulaw", + "value": "g711_ulaw", + "valueType": { + "$ref": "1230" + }, + "enumType": { + "$ref": "1229" + }, + "decorators": [] + }, + { + "$id": "1233", + "kind": "enumvalue", + "name": "g711_alaw", + "value": "g711_alaw", + "valueType": { + "$ref": "1230" + }, + "enumType": { + "$ref": "1229" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", "decorators": [] }, { - "$id": "1279", - "kind": "constant", - "name": "DeleteAssistantResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1234", + "kind": "enum", + "name": "RealtimeTranscriptionSessionCreateResponseModality", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.modality.anonymous", "valueType": { - "$id": "1280", + "$id": "1235", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistant.deleted", + "values": [ + { + "$id": "1236", + "kind": "enumvalue", + "name": "text", + "value": "text", + "valueType": { + "$ref": "1235" + }, + "enumType": { + "$ref": "1234" + }, + "decorators": [] + }, + { + "$id": "1237", + "kind": "enumvalue", + "name": "audio", + "value": "audio", + "valueType": { + "$ref": "1235" + }, + "enumType": { + "$ref": "1234" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", "decorators": [] }, { - "$id": "1281", - "kind": "constant", - "name": "VadConfigType", - "namespace": "OpenAI", - "usage": "Input", + "$id": "1238", + "kind": "enum", + "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscriptionModel", + "crossLanguageDefinitionId": "OpenAI.RealtimeTranscriptionSessionCreateResponse.input_audio_transcription.model.anonymous", "valueType": { - "$id": "1282", + "$id": "1239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "server_vad", + "values": [ + { + "$id": "1240", + "kind": "enumvalue", + "name": "gpt-4o-transcribe", + "value": "gpt-4o-transcribe", + "valueType": { + "$ref": "1239" + }, + "enumType": { + "$ref": "1238" + }, + "decorators": [] + }, + { + "$id": "1241", + "kind": "enumvalue", + "name": "gpt-4o-mini-transcribe", + "value": "gpt-4o-mini-transcribe", + "valueType": { + "$ref": "1239" + }, + "enumType": { + "$ref": "1238" + }, + "decorators": [] + }, + { + "$id": "1242", + "kind": "enumvalue", + "name": "whisper-1", + "value": "whisper-1", + "valueType": { + "$ref": "1239" + }, + "enumType": { + "$ref": "1238" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", "decorators": [] }, { - "$id": "1283", - "kind": "constant", - "name": "CreateTranscriptionResponseVerboseJsonTask", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1243", + "kind": "enum", + "name": "RealtimeSessionCreateRequestModel", + "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.model.anonymous", "valueType": { - "$id": "1284", + "$id": "1244", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "transcribe", + "values": [ + { + "$id": "1245", + "kind": "enumvalue", + "name": "gpt-4o-realtime-preview", + "value": "gpt-4o-realtime-preview", + "valueType": { + "$ref": "1244" + }, + "enumType": { + "$ref": "1243" + }, + "decorators": [] + }, + { + "$id": "1246", + "kind": "enumvalue", + "name": "gpt-4o-realtime-preview-2024-10-01", + "value": "gpt-4o-realtime-preview-2024-10-01", + "valueType": { + "$ref": "1244" + }, + "enumType": { + "$ref": "1243" + }, + "decorators": [] + }, + { + "$id": "1247", + "kind": "enumvalue", + "name": "gpt-4o-realtime-preview-2024-12-17", + "value": "gpt-4o-realtime-preview-2024-12-17", + "valueType": { + "$ref": "1244" + }, + "enumType": { + "$ref": "1243" + }, + "decorators": [] + }, + { + "$id": "1248", + "kind": "enumvalue", + "name": "gpt-4o-realtime-preview-2025-06-03", + "value": "gpt-4o-realtime-preview-2025-06-03", + "valueType": { + "$ref": "1244" + }, + "enumType": { + "$ref": "1243" + }, + "decorators": [] + }, + { + "$id": "1249", + "kind": "enumvalue", + "name": "gpt-4o-mini-realtime-preview", + "value": "gpt-4o-mini-realtime-preview", + "valueType": { + "$ref": "1244" + }, + "enumType": { + "$ref": "1243" + }, + "decorators": [] + }, + { + "$id": "1250", + "kind": "enumvalue", + "name": "gpt-4o-mini-realtime-preview-2024-12-17", + "value": "gpt-4o-mini-realtime-preview-2024-12-17", + "valueType": { + "$ref": "1244" + }, + "enumType": { + "$ref": "1243" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Json", "decorators": [] }, { - "$id": "1285", - "kind": "constant", - "name": "CreateTranslationResponseVerboseJsonTask", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1251", + "kind": "enum", + "name": "RealtimeSessionCreateRequestTurnDetectionType", + "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.type.anonymous", "valueType": { - "$id": "1286", + "$id": "1252", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "translate", + "values": [ + { + "$id": "1253", + "kind": "enumvalue", + "name": "server_vad", + "value": "server_vad", + "valueType": { + "$ref": "1252" + }, + "enumType": { + "$ref": "1251" + }, + "decorators": [] + }, + { + "$id": "1254", + "kind": "enumvalue", + "name": "semantic_vad", + "value": "semantic_vad", + "valueType": { + "$ref": "1252" + }, + "enumType": { + "$ref": "1251" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Json", "decorators": [] }, { - "$id": "1287", - "kind": "constant", - "name": "CreateBatchRequestCompletion_window", - "namespace": "", - "usage": "Spread,Json", + "$id": "1255", + "kind": "enum", + "name": "RealtimeSessionCreateRequestTurnDetectionEagerness", + "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.turn_detection.eagerness.anonymous", "valueType": { - "$id": "1288", + "$id": "1256", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "24h", - "decorators": [] - }, - { - "$id": "1289", - "kind": "constant", - "name": "BatchObject", - "namespace": "OpenAI", - "usage": "Output,Json", - "valueType": { - "$id": "1290", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "value": "batch", + "values": [ + { + "$id": "1257", + "kind": "enumvalue", + "name": "low", + "value": "low", + "valueType": { + "$ref": "1256" + }, + "enumType": { + "$ref": "1255" + }, + "decorators": [] + }, + { + "$id": "1258", + "kind": "enumvalue", + "name": "medium", + "value": "medium", + "valueType": { + "$ref": "1256" + }, + "enumType": { + "$ref": "1255" + }, + "decorators": [] + }, + { + "$id": "1259", + "kind": "enumvalue", + "name": "high", + "value": "high", + "valueType": { + "$ref": "1256" + }, + "enumType": { + "$ref": "1255" + }, + "decorators": [] + }, + { + "$id": "1260", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1256" + }, + "enumType": { + "$ref": "1255" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Json", "decorators": [] }, { - "$id": "1291", - "kind": "constant", - "name": "BatchErrorsObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1261", + "kind": "enum", + "name": "RealtimeSessionCreateRequestInputAudioNoiseReductionType", + "crossLanguageDefinitionId": "OpenAI.RealtimeSessionCreateRequest.input_audio_noise_reduction.type.anonymous", "valueType": { - "$id": "1292", + "$id": "1262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1263", + "kind": "enumvalue", + "name": "near_field", + "value": "near_field", + "valueType": { + "$ref": "1262" + }, + "enumType": { + "$ref": "1261" + }, + "decorators": [] + }, + { + "$id": "1264", + "kind": "enumvalue", + "name": "far_field", + "value": "far_field", + "valueType": { + "$ref": "1262" + }, + "enumType": { + "$ref": "1261" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Json", "decorators": [] }, { - "$id": "1293", - "kind": "constant", - "name": "ListBatchesResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1265", + "kind": "enum", + "name": "CreateUploadRequestPurpose", + "crossLanguageDefinitionId": "OpenAI.CreateUploadRequest.purpose.anonymous", "valueType": { - "$id": "1294", + "$id": "1266", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1267", + "kind": "enumvalue", + "name": "assistants", + "value": "assistants", + "valueType": { + "$ref": "1266" + }, + "enumType": { + "$ref": "1265" + }, + "decorators": [] + }, + { + "$id": "1268", + "kind": "enumvalue", + "name": "batch", + "value": "batch", + "valueType": { + "$ref": "1266" + }, + "enumType": { + "$ref": "1265" + }, + "decorators": [] + }, + { + "$id": "1269", + "kind": "enumvalue", + "name": "fine-tune", + "value": "fine-tune", + "valueType": { + "$ref": "1266" + }, + "enumType": { + "$ref": "1265" + }, + "decorators": [] + }, + { + "$id": "1270", + "kind": "enumvalue", + "name": "vision", + "value": "vision", + "valueType": { + "$ref": "1266" + }, + "enumType": { + "$ref": "1265" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Json", "decorators": [] }, { - "$id": "1295", - "kind": "constant", - "name": "ChatCompletionListObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1271", + "kind": "enum", + "name": "UploadStatus", + "crossLanguageDefinitionId": "OpenAI.Upload.status.anonymous", "valueType": { - "$id": "1296", + "$id": "1272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1273", + "kind": "enumvalue", + "name": "pending", + "value": "pending", + "valueType": { + "$ref": "1272" + }, + "enumType": { + "$ref": "1271" + }, + "decorators": [] + }, + { + "$id": "1274", + "kind": "enumvalue", + "name": "completed", + "value": "completed", + "valueType": { + "$ref": "1272" + }, + "enumType": { + "$ref": "1271" + }, + "decorators": [] + }, + { + "$id": "1275", + "kind": "enumvalue", + "name": "cancelled", + "value": "cancelled", + "valueType": { + "$ref": "1272" + }, + "enumType": { + "$ref": "1271" + }, + "decorators": [] + }, + { + "$id": "1276", + "kind": "enumvalue", + "name": "expired", + "value": "expired", + "valueType": { + "$ref": "1272" + }, + "enumType": { + "$ref": "1271" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output,Json", "decorators": [] }, { - "$id": "1297", - "kind": "constant", - "name": "ChatCompletionResponseMessageAnnotationType", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1277", + "kind": "enum", + "name": "FineTuneChatCompletionRequestAssistantMessageWeight", + "crossLanguageDefinitionId": "OpenAI.FineTuneChatCompletionRequestAssistantMessage.weight.anonymous", "valueType": { - "$id": "1298", + "$id": "1278", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "url_citation", + "values": [ + { + "$id": "1279", + "kind": "enumvalue", + "name": "0", + "value": "0", + "valueType": { + "$ref": "1278" + }, + "enumType": { + "$ref": "1277" + }, + "decorators": [] + }, + { + "$id": "1280", + "kind": "enumvalue", + "name": "1", + "value": "1", + "valueType": { + "$ref": "1278" + }, + "enumType": { + "$ref": "1277" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1299", - "kind": "constant", - "name": "CreateChatCompletionResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1281", + "kind": "enum", + "name": "MessageDeltaContentImageFileObjectImageFileDetail", + "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageFileObject.image_file.detail.anonymous", "valueType": { - "$id": "1300", + "$id": "1282", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "chat.completion", + "values": [ + { + "$id": "1283", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1282" + }, + "enumType": { + "$ref": "1281" + }, + "decorators": [] + }, + { + "$id": "1284", + "kind": "enumvalue", + "name": "low", + "value": "low", + "valueType": { + "$ref": "1282" + }, + "enumType": { + "$ref": "1281" + }, + "decorators": [] + }, + { + "$id": "1285", + "kind": "enumvalue", + "name": "high", + "value": "high", + "valueType": { + "$ref": "1282" + }, + "enumType": { + "$ref": "1281" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output", "decorators": [] }, { - "$id": "1301", - "kind": "constant", - "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1Type", - "namespace": "OpenAI", - "usage": "Input,Json", + "$id": "1286", + "kind": "enum", + "name": "MessageDeltaContentImageUrlObjectImageUrlDetail", + "crossLanguageDefinitionId": "OpenAI.MessageDeltaContentImageUrlObject.image_url.detail.anonymous", "valueType": { - "$id": "1302", + "$id": "1287", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "approximate", + "values": [ + { + "$id": "1288", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1287" + }, + "enumType": { + "$ref": "1286" + }, + "decorators": [] + }, + { + "$id": "1289", + "kind": "enumvalue", + "name": "low", + "value": "low", + "valueType": { + "$ref": "1287" + }, + "enumType": { + "$ref": "1286" + }, + "decorators": [] + }, + { + "$id": "1290", + "kind": "enumvalue", + "name": "high", + "value": "high", + "valueType": { + "$ref": "1287" + }, + "enumType": { + "$ref": "1286" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output", "decorators": [] }, { - "$id": "1303", - "kind": "constant", - "name": "ChatCompletionNamedToolChoiceType", - "namespace": "OpenAI", - "usage": "Input,Json", + "$id": "1291", + "kind": "enum", + "name": "MessageDeltaObjectDeltaRole", + "crossLanguageDefinitionId": "OpenAI.MessageDeltaObject.delta.role.anonymous", "valueType": { - "$id": "1304", + "$id": "1292", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "function", + "values": [ + { + "$id": "1293", + "kind": "enumvalue", + "name": "user", + "value": "user", + "valueType": { + "$ref": "1292" + }, + "enumType": { + "$ref": "1291" + }, + "decorators": [] + }, + { + "$id": "1294", + "kind": "enumvalue", + "name": "assistant", + "value": "assistant", + "valueType": { + "$ref": "1292" + }, + "enumType": { + "$ref": "1291" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Output", "decorators": [] }, { - "$id": "1305", - "kind": "constant", - "name": "CreateChatCompletionRequestToolChoice1", - "namespace": "", - "usage": "None", + "$id": "1295", + "kind": "enum", + "name": "ChatCompletionCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOrder", "valueType": { - "$id": "1306", + "$id": "1296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "none", + "values": [ + { + "$id": "1297", + "kind": "enumvalue", + "name": "Ascending", + "value": "asc", + "valueType": { + "$ref": "1296" + }, + "enumType": { + "$ref": "1295" + }, + "decorators": [] + }, + { + "$id": "1298", + "kind": "enumvalue", + "name": "Descending", + "value": "desc", + "valueType": { + "$ref": "1296" + }, + "enumType": { + "$ref": "1295" + }, + "decorators": [] + } + ], + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1307", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker1", - "namespace": "", - "usage": "None", + "$id": "1299", + "kind": "enum", + "name": "ChatCompletionMessageCollectionOrder", + "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOrder", "valueType": { - "$id": "1308", + "$id": "1300", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1301", + "kind": "enumvalue", + "name": "Ascending", + "value": "asc", + "valueType": { + "$ref": "1300" + }, + "enumType": { + "$ref": "1299" + }, + "decorators": [] + }, + { + "$id": "1302", + "kind": "enumvalue", + "name": "Descending", + "value": "desc", + "valueType": { + "$ref": "1300" + }, + "enumType": { + "$ref": "1299" + }, + "decorators": [] + } + ], + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1309", - "kind": "constant", - "name": "ChatCompletionMessageToolCallChunkType", - "namespace": "OpenAI", - "usage": "Output", + "$id": "1303", + "kind": "enum", + "name": "DotNetCombinedChunkingStrategyParamType", + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam.type.anonymous", "valueType": { - "$id": "1310", + "$id": "1304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "function", + "values": [ + { + "$id": "1305", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1304" + }, + "enumType": { + "$ref": "1303" + }, + "decorators": [] + }, + { + "$id": "1306", + "kind": "enumvalue", + "name": "static", + "value": "static", + "valueType": { + "$ref": "1304" + }, + "enumType": { + "$ref": "1303" + }, + "decorators": [] + }, + { + "$id": "1307", + "kind": "enumvalue", + "name": "other", + "value": "other", + "valueType": { + "$ref": "1304" + }, + "enumType": { + "$ref": "1303" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output", "decorators": [] }, { - "$id": "1311", - "kind": "constant", - "name": "CreateChatCompletionStreamResponseObject", - "namespace": "OpenAI", - "access": "public", - "usage": "Output", + "$id": "1308", + "kind": "enum", + "name": "PageOrderOptions", + "crossLanguageDefinitionId": "OpenAI.PageOrderOptions", "valueType": { - "$id": "1312", + "$id": "1309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "chat.completion.chunk", - "decorators": [] - }, - { - "$id": "1313", - "kind": "constant", - "name": "ChatCompletionDeletedObject", + "values": [ + { + "$id": "1310", + "kind": "enumvalue", + "name": "asc", + "value": "asc", + "valueType": { + "$ref": "1309" + }, + "enumType": { + "$ref": "1308" + }, + "decorators": [] + }, + { + "$id": "1311", + "kind": "enumvalue", + "name": "desc", + "value": "desc", + "valueType": { + "$ref": "1309" + }, + "enumType": { + "$ref": "1308" + }, + "decorators": [] + } + ], "namespace": "OpenAI", - "usage": "Output,Json", + "isFixed": true, + "isFlags": false, + "usage": "Input", + "decorators": [] + }, + { + "$id": "1312", + "kind": "enum", + "name": "CreateTranscriptionRequestAccept", + "crossLanguageDefinitionId": "OpenAI.createTranscription.RequestAccept.anonymous", "valueType": { - "$id": "1314", + "$id": "1313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "chat.completion.deleted", + "values": [ + { + "$id": "1314", + "kind": "enumvalue", + "name": "application/json", + "value": "application/json", + "valueType": { + "$ref": "1313" + }, + "enumType": { + "$ref": "1312" + }, + "decorators": [] + }, + { + "$id": "1315", + "kind": "enumvalue", + "name": "text/event-stream", + "value": "text/event-stream", + "valueType": { + "$ref": "1313" + }, + "enumType": { + "$ref": "1312" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1315", - "kind": "constant", - "name": "ChatCompletionMessageListObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1316", + "kind": "enum", + "name": "ListEvalsRequestOrder", + "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrder.anonymous", "valueType": { - "$id": "1316", + "$id": "1317", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1318", + "kind": "enumvalue", + "name": "asc", + "value": "asc", + "valueType": { + "$ref": "1317" + }, + "enumType": { + "$ref": "1316" + }, + "decorators": [] + }, + { + "$id": "1319", + "kind": "enumvalue", + "name": "desc", + "value": "desc", + "valueType": { + "$ref": "1317" + }, + "enumType": { + "$ref": "1316" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1317", - "kind": "constant", - "name": "EmbeddingObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1320", + "kind": "enum", + "name": "ListEvalsRequestOrderBy", + "crossLanguageDefinitionId": "OpenAI.listEvals.RequestOrderBy.anonymous", "valueType": { - "$id": "1318", + "$id": "1321", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "embedding", + "values": [ + { + "$id": "1322", + "kind": "enumvalue", + "name": "created_at", + "value": "created_at", + "valueType": { + "$ref": "1321" + }, + "enumType": { + "$ref": "1320" + }, + "decorators": [] + }, + { + "$id": "1323", + "kind": "enumvalue", + "name": "updated_at", + "value": "updated_at", + "valueType": { + "$ref": "1321" + }, + "enumType": { + "$ref": "1320" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1319", - "kind": "constant", - "name": "CreateEmbeddingResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1324", + "kind": "enum", + "name": "GetEvalRunsRequestOrder", + "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestOrder.anonymous", "valueType": { - "$id": "1320", + "$id": "1325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1326", + "kind": "enumvalue", + "name": "asc", + "value": "asc", + "valueType": { + "$ref": "1325" + }, + "enumType": { + "$ref": "1324" + }, + "decorators": [] + }, + { + "$id": "1327", + "kind": "enumvalue", + "name": "desc", + "value": "desc", + "valueType": { + "$ref": "1325" + }, + "enumType": { + "$ref": "1324" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1321", - "kind": "constant", - "name": "ListFilesResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1328", + "kind": "enum", + "name": "GetEvalRunsRequestStatus", + "crossLanguageDefinitionId": "OpenAI.getEvalRuns.RequestStatus.anonymous", "valueType": { - "$id": "1322", + "$id": "1329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1330", + "kind": "enumvalue", + "name": "queued", + "value": "queued", + "valueType": { + "$ref": "1329" + }, + "enumType": { + "$ref": "1328" + }, + "decorators": [] + }, + { + "$id": "1331", + "kind": "enumvalue", + "name": "in_progress", + "value": "in_progress", + "valueType": { + "$ref": "1329" + }, + "enumType": { + "$ref": "1328" + }, + "decorators": [] + }, + { + "$id": "1332", + "kind": "enumvalue", + "name": "completed", + "value": "completed", + "valueType": { + "$ref": "1329" + }, + "enumType": { + "$ref": "1328" + }, + "decorators": [] + }, + { + "$id": "1333", + "kind": "enumvalue", + "name": "canceled", + "value": "canceled", + "valueType": { + "$ref": "1329" + }, + "enumType": { + "$ref": "1328" + }, + "decorators": [] + }, + { + "$id": "1334", + "kind": "enumvalue", + "name": "failed", + "value": "failed", + "valueType": { + "$ref": "1329" + }, + "enumType": { + "$ref": "1328" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1323", - "kind": "constant", - "name": "OpenAIFileObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1335", + "kind": "enum", + "name": "GetEvalRunOutputItemsRequestStatus", + "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestStatus.anonymous", "valueType": { - "$id": "1324", + "$id": "1336", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "file", + "values": [ + { + "$id": "1337", + "kind": "enumvalue", + "name": "fail", + "value": "fail", + "valueType": { + "$ref": "1336" + }, + "enumType": { + "$ref": "1335" + }, + "decorators": [] + }, + { + "$id": "1338", + "kind": "enumvalue", + "name": "pass", + "value": "pass", + "valueType": { + "$ref": "1336" + }, + "enumType": { + "$ref": "1335" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1325", - "kind": "constant", - "name": "DeleteFileResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1339", + "kind": "enum", + "name": "GetEvalRunOutputItemsRequestOrder", + "crossLanguageDefinitionId": "OpenAI.getEvalRunOutputItems.RequestOrder.anonymous", "valueType": { - "$id": "1326", + "$id": "1340", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "file", + "values": [ + { + "$id": "1341", + "kind": "enumvalue", + "name": "asc", + "value": "asc", + "valueType": { + "$ref": "1340" + }, + "enumType": { + "$ref": "1339" + }, + "decorators": [] + }, + { + "$id": "1342", + "kind": "enumvalue", + "name": "desc", + "value": "desc", + "valueType": { + "$ref": "1340" + }, + "enumType": { + "$ref": "1339" + }, + "decorators": [] + } + ], + "namespace": "", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1327", - "kind": "constant", - "name": "FineTuningCheckpointPermissionObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1343", + "kind": "enum", + "name": "IncludedRunStepProperty", + "crossLanguageDefinitionId": "OpenAI.IncludedRunStepProperty", "valueType": { - "$id": "1328", + "$id": "1344", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "checkpoint.permission", + "values": [ + { + "$id": "1345", + "kind": "enumvalue", + "name": "file_search_result_content", + "value": "step_details.tool_calls[*].file_search.results[*].content", + "valueType": { + "$ref": "1344" + }, + "enumType": { + "$ref": "1343" + }, + "decorators": [] + } + ], + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1329", - "kind": "constant", - "name": "ListFineTuningCheckpointPermissionResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1346", + "kind": "enum", + "name": "ListVectorStoreFilesFilter", + "crossLanguageDefinitionId": "OpenAI.ListVectorStoreFilesFilter", "valueType": { - "$id": "1330", + "$id": "1347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "values": [ + { + "$id": "1348", + "kind": "enumvalue", + "name": "in_progress", + "value": "in_progress", + "valueType": { + "$ref": "1347" + }, + "enumType": { + "$ref": "1346" + }, + "decorators": [] + }, + { + "$id": "1349", + "kind": "enumvalue", + "name": "completed", + "value": "completed", + "valueType": { + "$ref": "1347" + }, + "enumType": { + "$ref": "1346" + }, + "decorators": [] + }, + { + "$id": "1350", + "kind": "enumvalue", + "name": "failed", + "value": "failed", + "valueType": { + "$ref": "1347" + }, + "enumType": { + "$ref": "1346" + }, + "decorators": [] + }, + { + "$id": "1351", + "kind": "enumvalue", + "name": "cancelled", + "value": "cancelled", + "valueType": { + "$ref": "1347" + }, + "enumType": { + "$ref": "1346" + }, + "decorators": [] + } + ], + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1331", - "kind": "constant", - "name": "DeleteFineTuningCheckpointPermissionResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "$id": "1352", + "kind": "enum", + "name": "CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", + "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBatchSizeChoiceEnum", "valueType": { - "$id": "1332", + "$id": "1353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "checkpoint.permission", + "values": [ + { + "$id": "1354", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1353" + }, + "enumType": { + "$ref": "1352" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1333", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker2", - "namespace": "", - "usage": "None", + "$id": "1355", + "kind": "enum", + "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", + "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersLearningRateMultiplierChoiceEnum", "valueType": { - "$id": "1334", + "$id": "1356", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1357", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1356" + }, + "enumType": { + "$ref": "1355" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1335", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker3", - "namespace": "", - "usage": "None", + "$id": "1358", + "kind": "enum", + "name": "CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", + "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersNEpochsChoiceEnum", "valueType": { - "$id": "1336", + "$id": "1359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1360", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1359" + }, + "enumType": { + "$ref": "1358" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1337", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker4", - "namespace": "", - "usage": "None", + "$id": "1361", + "kind": "enum", + "name": "CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", + "crossLanguageDefinitionId": "OpenAI.CreateFineTuningJobRequestHyperparametersBetaChoiceEnum", "valueType": { - "$id": "1338", + "$id": "1362", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1363", + "kind": "enumvalue", + "name": "auto", + "value": "auto", + "valueType": { + "$ref": "1362" + }, + "enumType": { + "$ref": "1361" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input", "decorators": [] }, { - "$id": "1339", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker5", - "namespace": "", - "usage": "None", + "$id": "1364", + "kind": "enum", + "name": "DotNetResponseReasoningEffortLevel", + "crossLanguageDefinitionId": "OpenAI.DotNetResponseReasoningEffortLevel", "valueType": { - "$id": "1340", + "$id": "1365", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", - "decorators": [] - }, - { - "$id": "1341", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker6", - "namespace": "", - "usage": "None", - "valueType": { - "$id": "1342", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "value": "auto", + "values": [ + { + "$id": "1366", + "kind": "enumvalue", + "name": "low", + "value": "low", + "valueType": { + "$ref": "1365" + }, + "enumType": { + "$ref": "1364" + }, + "decorators": [] + }, + { + "$id": "1367", + "kind": "enumvalue", + "name": "medium", + "value": "medium", + "valueType": { + "$ref": "1365" + }, + "enumType": { + "$ref": "1364" + }, + "decorators": [] + }, + { + "$id": "1368", + "kind": "enumvalue", + "name": "high", + "value": "high", + "valueType": { + "$ref": "1365" + }, + "enumType": { + "$ref": "1364" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output", "decorators": [] }, { - "$id": "1343", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker7", - "namespace": "", - "usage": "None", + "$id": "1369", + "kind": "enum", + "name": "DotNetResponseWebSearchContextSize", + "crossLanguageDefinitionId": "OpenAI.DotNetResponseWebSearchContextSize", "valueType": { - "$id": "1344", + "$id": "1370", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1371", + "kind": "enumvalue", + "name": "low", + "value": "low", + "valueType": { + "$ref": "1370" + }, + "enumType": { + "$ref": "1369" + }, + "decorators": [] + }, + { + "$id": "1372", + "kind": "enumvalue", + "name": "medium", + "value": "medium", + "valueType": { + "$ref": "1370" + }, + "enumType": { + "$ref": "1369" + }, + "decorators": [] + }, + { + "$id": "1373", + "kind": "enumvalue", + "name": "high", + "value": "high", + "valueType": { + "$ref": "1370" + }, + "enumType": { + "$ref": "1369" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": true, + "isFlags": false, + "usage": "Input,Output", "decorators": [] }, { - "$id": "1345", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker8", - "namespace": "", - "usage": "None", + "$id": "1374", + "kind": "enum", + "name": "DotNetAudioVoiceIds", + "crossLanguageDefinitionId": "OpenAI.DotNetAudioVoiceIds", "valueType": { - "$id": "1346", + "$id": "1375", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1376", + "kind": "enumvalue", + "name": "alloy", + "value": "alloy", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1377", + "kind": "enumvalue", + "name": "ash", + "value": "ash", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1378", + "kind": "enumvalue", + "name": "ballad", + "value": "ballad", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1379", + "kind": "enumvalue", + "name": "coral", + "value": "coral", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1380", + "kind": "enumvalue", + "name": "echo", + "value": "echo", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1381", + "kind": "enumvalue", + "name": "fable", + "value": "fable", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1382", + "kind": "enumvalue", + "name": "onyx", + "value": "onyx", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1383", + "kind": "enumvalue", + "name": "nova", + "value": "nova", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1384", + "kind": "enumvalue", + "name": "sage", + "value": "sage", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1385", + "kind": "enumvalue", + "name": "shimmer", + "value": "shimmer", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + }, + { + "$id": "1386", + "kind": "enumvalue", + "name": "verse", + "value": "verse", + "valueType": { + "$ref": "1375" + }, + "enumType": { + "$ref": "1374" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input,Output", "decorators": [] }, { - "$id": "1347", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker9", - "namespace": "", - "usage": "None", + "$id": "1387", + "kind": "enum", + "name": "DotNetChatVoiceIds", + "crossLanguageDefinitionId": "OpenAI.DotNetChatVoiceIds", "valueType": { - "$id": "1348", + "$id": "1388", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1389", + "kind": "enumvalue", + "name": "alloy", + "value": "alloy", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1390", + "kind": "enumvalue", + "name": "ash", + "value": "ash", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1391", + "kind": "enumvalue", + "name": "ballad", + "value": "ballad", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1392", + "kind": "enumvalue", + "name": "coral", + "value": "coral", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1393", + "kind": "enumvalue", + "name": "echo", + "value": "echo", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1394", + "kind": "enumvalue", + "name": "fable", + "value": "fable", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1395", + "kind": "enumvalue", + "name": "onyx", + "value": "onyx", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1396", + "kind": "enumvalue", + "name": "nova", + "value": "nova", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1397", + "kind": "enumvalue", + "name": "sage", + "value": "sage", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1398", + "kind": "enumvalue", + "name": "shimmer", + "value": "shimmer", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + }, + { + "$id": "1399", + "kind": "enumvalue", + "name": "verse", + "value": "verse", + "valueType": { + "$ref": "1388" + }, + "enumType": { + "$ref": "1387" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input,Output", "decorators": [] }, { - "$id": "1349", - "kind": "constant", - "name": "FileSearchRankingOptionsRanker10", - "namespace": "", - "usage": "None", + "$id": "1400", + "kind": "enum", + "name": "DotNetRealtimeVoiceIds", + "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeVoiceIds", "valueType": { - "$id": "1350", + "$id": "1401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "values": [ + { + "$id": "1402", + "kind": "enumvalue", + "name": "alloy", + "value": "alloy", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1403", + "kind": "enumvalue", + "name": "ash", + "value": "ash", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1404", + "kind": "enumvalue", + "name": "ballad", + "value": "ballad", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1405", + "kind": "enumvalue", + "name": "coral", + "value": "coral", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1406", + "kind": "enumvalue", + "name": "echo", + "value": "echo", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1407", + "kind": "enumvalue", + "name": "fable", + "value": "fable", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1408", + "kind": "enumvalue", + "name": "onyx", + "value": "onyx", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1409", + "kind": "enumvalue", + "name": "nova", + "value": "nova", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1410", + "kind": "enumvalue", + "name": "sage", + "value": "sage", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1411", + "kind": "enumvalue", + "name": "shimmer", + "value": "shimmer", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + }, + { + "$id": "1412", + "kind": "enumvalue", + "name": "verse", + "value": "verse", + "valueType": { + "$ref": "1401" + }, + "enumType": { + "$ref": "1400" + }, + "decorators": [] + } + ], + "access": "public", + "namespace": "OpenAI", + "isFixed": false, + "isFlags": false, + "usage": "Input,Output", "decorators": [] - }, + } + ], + "constants": [ { - "$id": "1351", + "$id": "1413", "kind": "constant", - "name": "FileSearchRankingOptionsRanker11", - "namespace": "", - "usage": "None", + "name": "ListAssistantsResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1352", + "$id": "1414", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "list", "decorators": [] }, { - "$id": "1353", + "$id": "1415", "kind": "constant", - "name": "EvalItemType", + "name": "AssistantObjectObject", "namespace": "OpenAI", - "usage": "Input,Output,Json", + "usage": "Output,Json", "valueType": { - "$id": "1354", + "$id": "1416", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "message", + "value": "assistant", "decorators": [] }, { - "$id": "1355", + "$id": "1417", "kind": "constant", - "name": "FileSearchRankingOptionsRanker12", + "name": "FileSearchRankingOptionsRanker", "namespace": "", "usage": "None", "valueType": { - "$id": "1356", + "$id": "1418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16113,285 +17182,302 @@ "decorators": [] }, { - "$id": "1357", + "$id": "1419", "kind": "constant", - "name": "FileSearchRankingOptionsRanker13", - "namespace": "", - "usage": "None", + "name": "DeleteAssistantResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1358", + "$id": "1420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "assistant.deleted", "decorators": [] }, { - "$id": "1359", + "$id": "1421", "kind": "constant", - "name": "FileSearchRankingOptionsRanker14", - "namespace": "", - "usage": "None", + "name": "VadConfigType", + "namespace": "OpenAI", + "usage": "Input", "valueType": { - "$id": "1360", + "$id": "1422", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "server_vad", "decorators": [] }, { - "$id": "1361", + "$id": "1423", "kind": "constant", - "name": "FileSearchRankingOptionsRanker15", - "namespace": "", - "usage": "None", + "name": "CreateTranscriptionResponseVerboseJsonTask", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1362", + "$id": "1424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "transcribe", "decorators": [] }, { - "$id": "1363", + "$id": "1425", "kind": "constant", - "name": "FileSearchRankingOptionsRanker16", - "namespace": "", - "usage": "None", + "name": "CreateTranslationResponseVerboseJsonTask", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1364", + "$id": "1426", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "translate", "decorators": [] }, { - "$id": "1365", + "$id": "1427", "kind": "constant", - "name": "FileSearchRankingOptionsRanker17", + "name": "CreateBatchRequestCompletion_window", "namespace": "", - "usage": "None", + "usage": "Spread,Json", "valueType": { - "$id": "1366", + "$id": "1428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "24h", "decorators": [] }, { - "$id": "1367", + "$id": "1429", "kind": "constant", - "name": "FileSearchRankingOptionsRanker18", - "namespace": "", - "usage": "None", + "name": "BatchObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1368", + "$id": "1430", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "batch", "decorators": [] }, { - "$id": "1369", + "$id": "1431", "kind": "constant", - "name": "FileSearchRankingOptionsRanker19", - "namespace": "", - "usage": "None", + "name": "BatchErrorsObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1370", + "$id": "1432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "list", "decorators": [] }, { - "$id": "1371", + "$id": "1433", "kind": "constant", - "name": "FileSearchRankingOptionsRanker20", - "namespace": "", - "usage": "None", + "name": "ListBatchesResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1372", + "$id": "1434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "list", "decorators": [] }, { - "$id": "1373", + "$id": "1435", "kind": "constant", - "name": "FineTuningJobObject", + "name": "ChatCompletionListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1374", + "$id": "1436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "fine_tuning.job", + "value": "list", "decorators": [] }, { - "$id": "1375", + "$id": "1437", "kind": "constant", - "name": "ListPaginatedFineTuningJobsResponseObject", + "name": "ChatCompletionResponseMessageAnnotationType", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1376", + "$id": "1438", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "url_citation", "decorators": [] }, { - "$id": "1377", + "$id": "1439", "kind": "constant", - "name": "FineTuningJobCheckpointObject", + "name": "CreateChatCompletionResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1378", + "$id": "1440", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "fine_tuning.job.checkpoint", + "value": "chat.completion", "decorators": [] }, { - "$id": "1379", + "$id": "1441", "kind": "constant", - "name": "ListFineTuningJobCheckpointsResponseObject", + "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1Type", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Json", "valueType": { - "$id": "1380", + "$id": "1442", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "approximate", "decorators": [] }, { - "$id": "1381", + "$id": "1443", "kind": "constant", - "name": "FineTuningJobEventObject", + "name": "ChatCompletionNamedToolChoiceType", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Json", "valueType": { - "$id": "1382", + "$id": "1444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "fine_tuning.job.event", + "value": "function", "decorators": [] }, { - "$id": "1383", + "$id": "1445", "kind": "constant", - "name": "ListFineTuningJobEventsResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "CreateChatCompletionRequestToolChoice1", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1384", + "$id": "1446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "none", "decorators": [] }, { - "$id": "1385", + "$id": "1447", "kind": "constant", - "name": "EvalListObject", + "name": "FileSearchRankingOptionsRanker1", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "1448", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "auto", + "decorators": [] + }, + { + "$id": "1449", + "kind": "constant", + "name": "ChatCompletionMessageToolCallChunkType", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Output", "valueType": { - "$id": "1386", + "$id": "1450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "function", "decorators": [] }, { - "$id": "1387", + "$id": "1451", "kind": "constant", - "name": "EvalObject", + "name": "CreateChatCompletionStreamResponseObject", "namespace": "OpenAI", - "usage": "Output,Json", + "access": "public", + "usage": "Output", "valueType": { - "$id": "1388", + "$id": "1452", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "eval", + "value": "chat.completion.chunk", "decorators": [] }, { - "$id": "1389", + "$id": "1453", "kind": "constant", - "name": "DeleteEvalResponseObject", + "name": "ChatCompletionDeletedObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1390", + "$id": "1454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "eval.deleted", + "value": "chat.completion.deleted", "decorators": [] }, { - "$id": "1391", + "$id": "1455", "kind": "constant", - "name": "EvalRunListObject", + "name": "ChatCompletionMessageListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1392", + "$id": "1456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16401,477 +17487,477 @@ "decorators": [] }, { - "$id": "1393", + "$id": "1457", "kind": "constant", - "name": "EvalRunObject", + "name": "EmbeddingObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1394", + "$id": "1458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "eval.run", + "value": "embedding", "decorators": [] }, { - "$id": "1395", + "$id": "1459", "kind": "constant", - "name": "EvalCompletionsRunDataSourceParamsInputMessages1Type", + "name": "CreateEmbeddingResponseObject", "namespace": "OpenAI", - "usage": "Input,Json", + "usage": "Output,Json", "valueType": { - "$id": "1396", + "$id": "1460", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "template", + "value": "list", "decorators": [] }, { - "$id": "1397", + "$id": "1461", "kind": "constant", - "name": "EvalCompletionsRunDataSourceParamsInputMessages2Type", + "name": "ListFilesResponseObject", "namespace": "OpenAI", - "usage": "Input,Json", + "usage": "Output,Json", "valueType": { - "$id": "1398", + "$id": "1462", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "item_reference", + "value": "list", "decorators": [] }, { - "$id": "1399", + "$id": "1463", "kind": "constant", - "name": "EvalResponsesRunDataSourceParamsInputMessages1Type", + "name": "OpenAIFileObject", "namespace": "OpenAI", - "usage": "Input,Json", + "usage": "Output,Json", "valueType": { - "$id": "1400", + "$id": "1464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "template", + "value": "file", "decorators": [] }, { - "$id": "1401", + "$id": "1465", "kind": "constant", - "name": "EvalResponsesRunDataSourceParamsInputMessages2Type", + "name": "DeleteFileResponseObject", "namespace": "OpenAI", - "usage": "Input,Json", + "usage": "Output,Json", "valueType": { - "$id": "1402", + "$id": "1466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "item_reference", + "value": "file", "decorators": [] }, { - "$id": "1403", + "$id": "1467", "kind": "constant", - "name": "CodeInterpreterToolAutoType", + "name": "FineTuningCheckpointPermissionObject", "namespace": "OpenAI", - "usage": "Input,Output,Json", + "usage": "Output,Json", "valueType": { - "$id": "1404", + "$id": "1468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "checkpoint.permission", "decorators": [] }, { - "$id": "1405", + "$id": "1469", "kind": "constant", - "name": "ImageGenToolModel", + "name": "ListFineTuningCheckpointPermissionResponseObject", "namespace": "OpenAI", - "usage": "Input,Output,Json", + "usage": "Output,Json", "valueType": { - "$id": "1406", + "$id": "1470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "gpt-image-1", + "value": "list", "decorators": [] }, { - "$id": "1407", + "$id": "1471", "kind": "constant", - "name": "MCPToolRequireApproval2", - "namespace": "", - "usage": "None", + "name": "DeleteFineTuningCheckpointPermissionResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1408", + "$id": "1472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "always", + "value": "checkpoint.permission", "decorators": [] }, { - "$id": "1409", + "$id": "1473", "kind": "constant", - "name": "MCPToolRequireApproval3", + "name": "FileSearchRankingOptionsRanker2", "namespace": "", "usage": "None", "valueType": { - "$id": "1410", + "$id": "1474", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "never", + "value": "auto", "decorators": [] }, { - "$id": "1411", + "$id": "1475", "kind": "constant", - "name": "DeleteEvalRunResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker3", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1412", + "$id": "1476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "eval_run.deleted", + "value": "auto", "decorators": [] }, { - "$id": "1413", + "$id": "1477", "kind": "constant", - "name": "EvalRunOutputItemListObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker4", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1414", + "$id": "1478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "auto", "decorators": [] }, { - "$id": "1415", + "$id": "1479", "kind": "constant", - "name": "EvalRunOutputItemObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker5", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1416", + "$id": "1480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "eval.run.output_item", + "value": "auto", "decorators": [] }, { - "$id": "1417", + "$id": "1481", "kind": "constant", - "name": "CodeInterpreterTextOutputType", - "namespace": "OpenAI", - "usage": "Input,Output,Json", + "name": "FileSearchRankingOptionsRanker6", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1418", + "$id": "1482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "logs", + "value": "auto", "decorators": [] }, { - "$id": "1419", + "$id": "1483", "kind": "constant", - "name": "CodeInterpreterFileOutputType", - "namespace": "OpenAI", - "usage": "Input,Output,Json", + "name": "FileSearchRankingOptionsRanker7", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1420", + "$id": "1484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "files", + "value": "auto", "decorators": [] }, { - "$id": "1421", + "$id": "1485", "kind": "constant", - "name": "LocalShellExecActionType", - "namespace": "OpenAI", - "usage": "Input,Output,Json", + "name": "FileSearchRankingOptionsRanker8", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1422", + "$id": "1486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "exec", + "value": "auto", "decorators": [] }, { - "$id": "1423", + "$id": "1487", "kind": "constant", - "name": "ResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker9", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1424", + "$id": "1488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "response", + "value": "auto", "decorators": [] }, { - "$id": "1425", + "$id": "1489", "kind": "constant", - "name": "DeleteResponseResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker10", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1426", + "$id": "1490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "response", + "value": "auto", "decorators": [] }, { - "$id": "1427", + "$id": "1491", "kind": "constant", - "name": "DeleteResponseResponseDeleted", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker11", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1428", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", + "$id": "1492", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": true, + "value": "auto", "decorators": [] }, { - "$id": "1429", + "$id": "1493", "kind": "constant", - "name": "ResponseItemListObject", + "name": "EvalItemType", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Output,Json", "valueType": { - "$id": "1430", + "$id": "1494", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "message", "decorators": [] }, { - "$id": "1431", + "$id": "1495", "kind": "constant", - "name": "AssistantToolsFileSearchTypeOnlyType", - "namespace": "OpenAI", - "usage": "Input,Output,Json", + "name": "FileSearchRankingOptionsRanker12", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1432", + "$id": "1496", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "file_search", + "value": "auto", "decorators": [] }, { - "$id": "1433", + "$id": "1497", "kind": "constant", - "name": "MessageObjectObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker13", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1434", + "$id": "1498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread.message", + "value": "auto", "decorators": [] }, { - "$id": "1435", + "$id": "1499", "kind": "constant", - "name": "ListMessagesResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker14", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1436", + "$id": "1500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "auto", "decorators": [] }, { - "$id": "1437", + "$id": "1501", "kind": "constant", - "name": "DeleteMessageResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker15", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1438", + "$id": "1502", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread.message.deleted", + "value": "auto", "decorators": [] }, { - "$id": "1439", + "$id": "1503", "kind": "constant", - "name": "CreateModerationRequestInput2Type", - "namespace": "OpenAI", - "usage": "Input,Json", + "name": "FileSearchRankingOptionsRanker16", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1440", + "$id": "1504", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "image_url", + "value": "auto", "decorators": [] }, { - "$id": "1441", + "$id": "1505", "kind": "constant", - "name": "CreateModerationRequestInput3Type", - "namespace": "OpenAI", - "usage": "Input,Json", + "name": "FileSearchRankingOptionsRanker17", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1442", + "$id": "1506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text", + "value": "auto", "decorators": [] }, { - "$id": "1443", + "$id": "1507", "kind": "constant", - "name": "RunObjectObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker18", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1444", + "$id": "1508", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread.run", + "value": "auto", "decorators": [] }, { - "$id": "1445", + "$id": "1509", "kind": "constant", - "name": "RunObjectRequiredAction1Type", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker19", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1446", + "$id": "1510", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "submit_tool_outputs", + "value": "auto", "decorators": [] }, { - "$id": "1447", + "$id": "1511", "kind": "constant", - "name": "RunToolCallObjectType", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "FileSearchRankingOptionsRanker20", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1448", + "$id": "1512", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "function", + "value": "auto", "decorators": [] }, { - "$id": "1449", + "$id": "1513", "kind": "constant", - "name": "ListRunsResponseObject", + "name": "FineTuningJobObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1450", + "$id": "1514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "fine_tuning.job", "decorators": [] }, { - "$id": "1451", + "$id": "1515", "kind": "constant", - "name": "ListRunStepsResponseObject", + "name": "ListPaginatedFineTuningJobsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1452", + "$id": "1516", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16881,61 +17967,61 @@ "decorators": [] }, { - "$id": "1453", + "$id": "1517", "kind": "constant", - "name": "RunStepObjectObject", + "name": "FineTuningJobCheckpointObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1454", + "$id": "1518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread.run.step", + "value": "fine_tuning.job.checkpoint", "decorators": [] }, { - "$id": "1455", + "$id": "1519", "kind": "constant", - "name": "ThreadObjectObject", + "name": "ListFineTuningJobCheckpointsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1456", + "$id": "1520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread", + "value": "list", "decorators": [] }, { - "$id": "1457", + "$id": "1521", "kind": "constant", - "name": "DeleteThreadResponseObject", + "name": "FineTuningJobEventObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1458", + "$id": "1522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread.deleted", + "value": "fine_tuning.job.event", "decorators": [] }, { - "$id": "1459", + "$id": "1523", "kind": "constant", - "name": "ListVectorStoresResponseObject", + "name": "ListFineTuningJobEventsResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1460", + "$id": "1524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -16945,61 +18031,61 @@ "decorators": [] }, { - "$id": "1461", + "$id": "1525", "kind": "constant", - "name": "VectorStoreObjectObject", + "name": "EvalListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1462", + "$id": "1526", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "vector_store", + "value": "list", "decorators": [] }, { - "$id": "1463", + "$id": "1527", "kind": "constant", - "name": "DeleteVectorStoreResponseObject", + "name": "EvalObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1464", + "$id": "1528", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "vector_store.deleted", + "value": "eval", "decorators": [] }, { - "$id": "1465", + "$id": "1529", "kind": "constant", - "name": "VectorStoreFileBatchObjectObject", + "name": "DeleteEvalResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1466", + "$id": "1530", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "vector_store.files_batch", + "value": "eval.deleted", "decorators": [] }, { - "$id": "1467", + "$id": "1531", "kind": "constant", - "name": "ListVectorStoreFilesResponseObject", + "name": "EvalRunListObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1468", + "$id": "1532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -17009,1105 +18095,1105 @@ "decorators": [] }, { - "$id": "1469", + "$id": "1533", "kind": "constant", - "name": "VectorStoreFileObjectObject", + "name": "EvalRunObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1470", + "$id": "1534", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "vector_store.file", + "value": "eval.run", "decorators": [] }, { - "$id": "1471", + "$id": "1535", "kind": "constant", - "name": "DeleteVectorStoreFileResponseObject", + "name": "EvalCompletionsRunDataSourceParamsInputMessages1Type", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Json", "valueType": { - "$id": "1472", + "$id": "1536", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "vector_store.file.deleted", + "value": "template", "decorators": [] }, { - "$id": "1473", + "$id": "1537", "kind": "constant", - "name": "VectorStoreFileContentResponseObject", + "name": "EvalCompletionsRunDataSourceParamsInputMessages2Type", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Json", "valueType": { - "$id": "1474", + "$id": "1538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "vector_store.file_content.page", + "value": "item_reference", "decorators": [] }, { - "$id": "1475", + "$id": "1539", "kind": "constant", - "name": "VectorStoreSearchResultsPageObject", + "name": "EvalResponsesRunDataSourceParamsInputMessages1Type", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Json", "valueType": { - "$id": "1476", + "$id": "1540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "vector_store.search_results.page", + "value": "template", "decorators": [] }, { - "$id": "1477", + "$id": "1541", "kind": "constant", - "name": "VectorStoreSearchResultContentObjectType", + "name": "EvalResponsesRunDataSourceParamsInputMessages2Type", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Json", "valueType": { - "$id": "1478", + "$id": "1542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text", + "value": "item_reference", "decorators": [] }, { - "$id": "1479", + "$id": "1543", "kind": "constant", - "name": "CreateCompletionResponseObject", + "name": "CodeInterpreterToolAutoType", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Output,Json", "valueType": { - "$id": "1480", + "$id": "1544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text_completion", + "value": "auto", "decorators": [] }, { - "$id": "1481", + "$id": "1545", "kind": "constant", - "name": "ListModelsResponseObject", + "name": "ImageGenToolModel", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Output,Json", "valueType": { - "$id": "1482", + "$id": "1546", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "gpt-image-1", "decorators": [] }, { - "$id": "1483", + "$id": "1547", "kind": "constant", - "name": "ModelObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "MCPToolRequireApproval2", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1484", + "$id": "1548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "model", + "value": "always", "decorators": [] }, { - "$id": "1485", + "$id": "1549", "kind": "constant", - "name": "DeleteModelResponseObject", - "namespace": "OpenAI", - "usage": "Output,Json", + "name": "MCPToolRequireApproval3", + "namespace": "", + "usage": "None", "valueType": { - "$id": "1486", + "$id": "1550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "model", + "value": "never", "decorators": [] }, { - "$id": "1487", + "$id": "1551", "kind": "constant", - "name": "RealtimeRequestSessionMaxResponseOutputTokens1", - "namespace": "", - "usage": "None", + "name": "DeleteEvalRunResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1488", + "$id": "1552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "inf", + "value": "eval_run.deleted", "decorators": [] }, { - "$id": "1489", + "$id": "1553", "kind": "constant", - "name": "RealtimeRequestSessionMaxResponseOutputTokens11", - "namespace": "", - "usage": "None", + "name": "EvalRunOutputItemListObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1490", + "$id": "1554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "inf", + "value": "list", "decorators": [] }, { - "$id": "1491", + "$id": "1555", "kind": "constant", - "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAtAnchor", + "name": "EvalRunOutputItemObject", "namespace": "OpenAI", - "usage": "Input,Json", + "usage": "Output,Json", "valueType": { - "$id": "1492", + "$id": "1556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "created_at", + "value": "eval.run.output_item", "decorators": [] }, { - "$id": "1493", + "$id": "1557", "kind": "constant", - "name": "RealtimeResponseSessionObject", + "name": "CodeInterpreterTextOutputType", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Output,Json", "valueType": { - "$id": "1494", + "$id": "1558", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "realtime.session", + "value": "logs", "decorators": [] }, { - "$id": "1495", + "$id": "1559", "kind": "constant", - "name": "RealtimeRequestSessionMaxResponseOutputTokens12", - "namespace": "", - "usage": "None", + "name": "CodeInterpreterFileOutputType", + "namespace": "OpenAI", + "usage": "Input,Output,Json", "valueType": { - "$id": "1496", + "$id": "1560", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "inf", + "value": "files", "decorators": [] }, { - "$id": "1497", + "$id": "1561", "kind": "constant", - "name": "RealtimeConversationResponseItemObject", + "name": "LocalShellExecActionType", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Output,Json", "valueType": { - "$id": "1498", + "$id": "1562", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "realtime.item", + "value": "exec", "decorators": [] }, { - "$id": "1499", + "$id": "1563", "kind": "constant", - "name": "RealtimeResponseObject", + "name": "ResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1500", + "$id": "1564", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "realtime.response", + "value": "response", "decorators": [] }, { - "$id": "1501", + "$id": "1565", "kind": "constant", - "name": "RealtimeRequestSessionMaxResponseOutputTokens13", - "namespace": "", - "usage": "None", + "name": "DeleteResponseResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1502", + "$id": "1566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "inf", + "value": "response", "decorators": [] }, { - "$id": "1503", + "$id": "1567", "kind": "constant", - "name": "FileSearchRankingOptionsRanker21", - "namespace": "", - "usage": "None", + "name": "DeleteResponseResponseDeleted", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1504", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", + "$id": "1568", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", "decorators": [] }, - "value": "auto", + "value": true, "decorators": [] }, { - "$id": "1505", + "$id": "1569", "kind": "constant", - "name": "RealtimeRequestSessionMaxResponseOutputTokens14", - "namespace": "", - "usage": "None", + "name": "ResponseItemListObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1506", + "$id": "1570", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "inf", + "value": "list", "decorators": [] }, { - "$id": "1507", + "$id": "1571", "kind": "constant", - "name": "RealtimeSessionCreateRequestClientSecretExpiresAtAnchor", + "name": "AssistantToolsFileSearchTypeOnlyType", "namespace": "OpenAI", - "usage": "Input,Json", + "usage": "Input,Output,Json", "valueType": { - "$id": "1508", + "$id": "1572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "created_at", + "value": "file_search", "decorators": [] }, { - "$id": "1509", + "$id": "1573", "kind": "constant", - "name": "FileSearchRankingOptionsRanker22", - "namespace": "", - "usage": "None", + "name": "MessageObjectObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1510", + "$id": "1574", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "auto", + "value": "thread.message", "decorators": [] }, { - "$id": "1511", + "$id": "1575", "kind": "constant", - "name": "RealtimeRequestSessionMaxResponseOutputTokens15", - "namespace": "", - "usage": "None", + "name": "ListMessagesResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1512", + "$id": "1576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "inf", + "value": "list", "decorators": [] }, { - "$id": "1513", + "$id": "1577", "kind": "constant", - "name": "UploadObject", + "name": "DeleteMessageResponseObject", "namespace": "OpenAI", "usage": "Output,Json", "valueType": { - "$id": "1514", + "$id": "1578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "upload", + "value": "thread.message.deleted", "decorators": [] }, { - "$id": "1515", + "$id": "1579", "kind": "constant", - "name": "UploadPartObject", + "name": "CreateModerationRequestInput2Type", "namespace": "OpenAI", - "usage": "Output,Json", + "usage": "Input,Json", "valueType": { - "$id": "1516", + "$id": "1580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "upload.part", + "value": "image_url", "decorators": [] }, { - "$id": "1517", + "$id": "1581", "kind": "constant", - "name": "BatchRequestInputMethod", + "name": "CreateModerationRequestInput3Type", "namespace": "OpenAI", - "access": "public", - "usage": "Input", + "usage": "Input,Json", "valueType": { - "$id": "1518", + "$id": "1582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "POST", + "value": "text", "decorators": [] }, { - "$id": "1519", + "$id": "1583", "kind": "constant", - "name": "MessageDeltaObjectObject", + "name": "RunObjectObject", "namespace": "OpenAI", - "access": "public", - "usage": "Output", + "usage": "Output,Json", "valueType": { - "$id": "1520", + "$id": "1584", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread.message.delta", + "value": "thread.run", "decorators": [] }, { - "$id": "1521", + "$id": "1585", "kind": "constant", - "name": "RunStepDeltaObjectObject", + "name": "RunObjectRequiredAction1Type", "namespace": "OpenAI", - "access": "public", - "usage": "Output", + "usage": "Output,Json", "valueType": { - "$id": "1522", + "$id": "1586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "thread.run.step.delta", + "value": "submit_tool_outputs", "decorators": [] }, { - "$id": "1523", + "$id": "1587", "kind": "constant", - "name": "DotNetCombinedJsonTranscriptionResponseTask", + "name": "RunToolCallObjectType", "namespace": "OpenAI", - "access": "public", - "usage": "Output", + "usage": "Output,Json", "valueType": { - "$id": "1524", + "$id": "1588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "transcribe", + "value": "function", "decorators": [] }, { - "$id": "1525", + "$id": "1589", "kind": "constant", - "name": "ListAssistantsRequestAccept", - "namespace": "", - "usage": "None", + "name": "ListRunsResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1526", + "$id": "1590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "list", "decorators": [] }, { - "$id": "1527", + "$id": "1591", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta", - "namespace": "", - "usage": "None", + "name": "ListRunStepsResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1528", + "$id": "1592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "list", "decorators": [] }, { - "$id": "1529", + "$id": "1593", "kind": "constant", - "name": "ListAssistantsRequestAccept1", - "namespace": "", - "usage": "None", + "name": "RunStepObjectObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1530", + "$id": "1594", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "thread.run.step", "decorators": [] }, { - "$id": "1531", + "$id": "1595", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta1", - "namespace": "", - "usage": "None", + "name": "ThreadObjectObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1532", + "$id": "1596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "thread", "decorators": [] }, { - "$id": "1533", + "$id": "1597", "kind": "constant", - "name": "ListAssistantsRequestAccept2", - "namespace": "", - "usage": "None", + "name": "DeleteThreadResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1534", + "$id": "1598", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "thread.deleted", "decorators": [] }, { - "$id": "1535", + "$id": "1599", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta2", - "namespace": "", - "usage": "None", + "name": "ListVectorStoresResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1536", + "$id": "1600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "list", "decorators": [] }, { - "$id": "1537", + "$id": "1601", "kind": "constant", - "name": "createAssistantContentType", - "namespace": "", - "usage": "None", + "name": "VectorStoreObjectObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1538", + "$id": "1602", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "vector_store", "decorators": [] }, { - "$id": "1539", + "$id": "1603", "kind": "constant", - "name": "ListAssistantsRequestAccept3", - "namespace": "", - "usage": "None", + "name": "DeleteVectorStoreResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1540", + "$id": "1604", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "vector_store.deleted", "decorators": [] }, { - "$id": "1541", + "$id": "1605", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta3", - "namespace": "", - "usage": "None", + "name": "VectorStoreFileBatchObjectObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1542", + "$id": "1606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "vector_store.files_batch", "decorators": [] }, { - "$id": "1543", + "$id": "1607", "kind": "constant", - "name": "ListAssistantsRequestAccept4", - "namespace": "", - "usage": "None", + "name": "ListVectorStoreFilesResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1544", + "$id": "1608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "list", "decorators": [] }, { - "$id": "1545", + "$id": "1609", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta4", - "namespace": "", - "usage": "None", + "name": "VectorStoreFileObjectObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1546", + "$id": "1610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "vector_store.file", "decorators": [] }, { - "$id": "1547", + "$id": "1611", "kind": "constant", - "name": "ListAssistantsRequestAccept5", - "namespace": "", - "usage": "None", + "name": "DeleteVectorStoreFileResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1548", + "$id": "1612", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "vector_store.file.deleted", "decorators": [] }, { - "$id": "1549", + "$id": "1613", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta5", - "namespace": "", - "usage": "None", + "name": "VectorStoreFileContentResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1550", + "$id": "1614", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "vector_store.file_content.page", "decorators": [] }, { - "$id": "1551", + "$id": "1615", "kind": "constant", - "name": "ListAssistantsRequestAccept6", - "namespace": "", - "usage": "None", + "name": "VectorStoreSearchResultsPageObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1552", + "$id": "1616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "vector_store.search_results.page", "decorators": [] }, { - "$id": "1553", + "$id": "1617", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta6", - "namespace": "", - "usage": "None", + "name": "VectorStoreSearchResultContentObjectType", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1554", + "$id": "1618", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "text", "decorators": [] }, { - "$id": "1555", + "$id": "1619", "kind": "constant", - "name": "modifyAssistantContentType", - "namespace": "", - "usage": "None", + "name": "CreateCompletionResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1556", + "$id": "1620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text_completion", "decorators": [] }, { - "$id": "1557", + "$id": "1621", "kind": "constant", - "name": "ListAssistantsRequestAccept7", - "namespace": "", - "usage": "None", + "name": "ListModelsResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1558", + "$id": "1622", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "list", "decorators": [] }, { - "$id": "1559", + "$id": "1623", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta7", - "namespace": "", - "usage": "None", + "name": "ModelObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1560", + "$id": "1624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "model", "decorators": [] }, { - "$id": "1561", + "$id": "1625", "kind": "constant", - "name": "ListAssistantsRequestAccept8", - "namespace": "", - "usage": "None", + "name": "DeleteModelResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1562", + "$id": "1626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "model", "decorators": [] }, { - "$id": "1563", + "$id": "1627", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta8", + "name": "RealtimeRequestSessionMaxResponseOutputTokens1", "namespace": "", "usage": "None", "valueType": { - "$id": "1564", + "$id": "1628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "inf", "decorators": [] }, { - "$id": "1565", + "$id": "1629", "kind": "constant", - "name": "ListAssistantsRequestAccept9", + "name": "RealtimeRequestSessionMaxResponseOutputTokens11", "namespace": "", "usage": "None", "valueType": { - "$id": "1566", + "$id": "1630", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "inf", "decorators": [] }, { - "$id": "1567", + "$id": "1631", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta9", - "namespace": "", - "usage": "None", + "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAtAnchor", + "namespace": "OpenAI", + "usage": "Input,Json", "valueType": { - "$id": "1568", + "$id": "1632", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "created_at", "decorators": [] }, { - "$id": "1569", + "$id": "1633", "kind": "constant", - "name": "CreateSpeechRequestAccept", - "namespace": "", - "usage": "None", + "name": "RealtimeResponseSessionObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1570", + "$id": "1634", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/octet-stream", + "value": "realtime.session", "decorators": [] }, { - "$id": "1571", + "$id": "1635", "kind": "constant", - "name": "createSpeechContentType", + "name": "RealtimeRequestSessionMaxResponseOutputTokens12", "namespace": "", "usage": "None", "valueType": { - "$id": "1572", + "$id": "1636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "inf", "decorators": [] }, { - "$id": "1573", + "$id": "1637", "kind": "constant", - "name": "CreateSpeechRequestAccept1", - "namespace": "", - "usage": "None", + "name": "RealtimeConversationResponseItemObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1574", + "$id": "1638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/octet-stream", + "value": "realtime.item", "decorators": [] }, { - "$id": "1575", + "$id": "1639", "kind": "constant", - "name": "CreateSpeechRequestAccept2", - "namespace": "", - "usage": "None", + "name": "RealtimeResponseObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1576", + "$id": "1640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/octet-stream", + "value": "realtime.response", "decorators": [] }, { - "$id": "1577", + "$id": "1641", "kind": "constant", - "name": "CreateTranscriptionRequestContentType", + "name": "RealtimeRequestSessionMaxResponseOutputTokens13", "namespace": "", "usage": "None", "valueType": { - "$id": "1578", + "$id": "1642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "inf", "decorators": [] }, { - "$id": "1579", + "$id": "1643", "kind": "constant", - "name": "CreateTranscriptionRequestAccept1", + "name": "FileSearchRankingOptionsRanker21", "namespace": "", "usage": "None", "valueType": { - "$id": "1580", + "$id": "1644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "auto", "decorators": [] }, { - "$id": "1581", + "$id": "1645", "kind": "constant", - "name": "CreateTranscriptionResponseContentType", + "name": "RealtimeRequestSessionMaxResponseOutputTokens14", "namespace": "", "usage": "None", "valueType": { - "$id": "1582", + "$id": "1646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/plain", + "value": "inf", "decorators": [] }, { - "$id": "1583", + "$id": "1647", "kind": "constant", - "name": "CreateTranscriptionRequestContentType1", - "namespace": "", - "usage": "None", + "name": "RealtimeSessionCreateRequestClientSecretExpiresAtAnchor", + "namespace": "OpenAI", + "usage": "Input,Json", "valueType": { - "$id": "1584", + "$id": "1648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "created_at", "decorators": [] }, { - "$id": "1585", + "$id": "1649", "kind": "constant", - "name": "ListAssistantsRequestAccept10", + "name": "FileSearchRankingOptionsRanker22", "namespace": "", "usage": "None", "valueType": { - "$id": "1586", + "$id": "1650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "auto", "decorators": [] }, { - "$id": "1587", + "$id": "1651", "kind": "constant", - "name": "CreateTranscriptionRequestContentType2", + "name": "RealtimeRequestSessionMaxResponseOutputTokens15", "namespace": "", "usage": "None", "valueType": { - "$id": "1588", + "$id": "1652", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "inf", "decorators": [] }, { - "$id": "1589", + "$id": "1653", "kind": "constant", - "name": "CreateTranscriptionResponseContentType1", - "namespace": "", - "usage": "None", + "name": "UploadObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1590", + "$id": "1654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/plain", + "value": "upload", "decorators": [] }, { - "$id": "1591", + "$id": "1655", "kind": "constant", - "name": "ListAssistantsRequestAccept11", - "namespace": "", - "usage": "None", + "name": "UploadPartObject", + "namespace": "OpenAI", + "usage": "Output,Json", "valueType": { - "$id": "1592", + "$id": "1656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "upload.part", "decorators": [] }, { - "$id": "1593", + "$id": "1657", "kind": "constant", - "name": "CreateTranscriptionRequestContentType3", - "namespace": "", - "usage": "None", + "name": "BatchRequestInputMethod", + "namespace": "OpenAI", + "access": "public", + "usage": "Input", "valueType": { - "$id": "1594", + "$id": "1658", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "POST", "decorators": [] }, { - "$id": "1595", + "$id": "1659", "kind": "constant", - "name": "ListAssistantsRequestAccept12", - "namespace": "", - "usage": "None", + "name": "MessageDeltaObjectObject", + "namespace": "OpenAI", + "access": "public", + "usage": "Output", "valueType": { - "$id": "1596", + "$id": "1660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "thread.message.delta", "decorators": [] }, { - "$id": "1597", + "$id": "1661", "kind": "constant", - "name": "createBatchContentType", - "namespace": "", - "usage": "None", + "name": "RunStepDeltaObjectObject", + "namespace": "OpenAI", + "access": "public", + "usage": "Output", "valueType": { - "$id": "1598", + "$id": "1662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "thread.run.step.delta", "decorators": [] }, { - "$id": "1599", + "$id": "1663", "kind": "constant", - "name": "ListAssistantsRequestAccept13", - "namespace": "", - "usage": "None", + "name": "DotNetCombinedJsonTranscriptionResponseTask", + "namespace": "OpenAI", + "access": "public", + "usage": "Output", "valueType": { - "$id": "1600", + "$id": "1664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "transcribe", "decorators": [] }, { - "$id": "1601", + "$id": "1665", "kind": "constant", - "name": "CreateBatchRequestCompletionWindow", + "name": "ListAssistantsRequestAccept", "namespace": "", "usage": "None", "valueType": { - "$id": "1602", + "$id": "1666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "24h", + "value": "application/json", "decorators": [] }, { - "$id": "1603", + "$id": "1667", "kind": "constant", - "name": "ListAssistantsRequestAccept14", + "name": "ListAssistantsRequestOpenAiBeta", "namespace": "", "usage": "None", "valueType": { - "$id": "1604", + "$id": "1668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1605", + "$id": "1669", "kind": "constant", - "name": "ListAssistantsRequestAccept15", + "name": "ListAssistantsRequestAccept1", "namespace": "", "usage": "None", "valueType": { - "$id": "1606", + "$id": "1670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18117,29 +19203,29 @@ "decorators": [] }, { - "$id": "1607", + "$id": "1671", "kind": "constant", - "name": "ListAssistantsRequestAccept16", + "name": "ListAssistantsRequestOpenAiBeta1", "namespace": "", "usage": "None", "valueType": { - "$id": "1608", + "$id": "1672", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1609", + "$id": "1673", "kind": "constant", - "name": "ListAssistantsRequestAccept17", + "name": "ListAssistantsRequestAccept2", "namespace": "", "usage": "None", "valueType": { - "$id": "1610", + "$id": "1674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18149,29 +19235,29 @@ "decorators": [] }, { - "$id": "1611", + "$id": "1675", "kind": "constant", - "name": "ListAssistantsRequestAccept18", + "name": "ListAssistantsRequestOpenAiBeta2", "namespace": "", "usage": "None", "valueType": { - "$id": "1612", + "$id": "1676", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1613", + "$id": "1677", "kind": "constant", - "name": "ListAssistantsRequestAccept19", + "name": "createAssistantContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1614", + "$id": "1678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18181,13 +19267,13 @@ "decorators": [] }, { - "$id": "1615", + "$id": "1679", "kind": "constant", - "name": "listChatCompletionsContentType", + "name": "ListAssistantsRequestAccept3", "namespace": "", "usage": "None", "valueType": { - "$id": "1616", + "$id": "1680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18197,29 +19283,29 @@ "decorators": [] }, { - "$id": "1617", + "$id": "1681", "kind": "constant", - "name": "ListAssistantsRequestAccept20", + "name": "ListAssistantsRequestOpenAiBeta3", "namespace": "", "usage": "None", "valueType": { - "$id": "1618", + "$id": "1682", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1619", + "$id": "1683", "kind": "constant", - "name": "createChatCompletionContentType", + "name": "ListAssistantsRequestAccept4", "namespace": "", "usage": "None", "valueType": { - "$id": "1620", + "$id": "1684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18229,29 +19315,29 @@ "decorators": [] }, { - "$id": "1621", + "$id": "1685", "kind": "constant", - "name": "CreateTranscriptionRequestAccept11", + "name": "ListAssistantsRequestOpenAiBeta4", "namespace": "", "usage": "None", "valueType": { - "$id": "1622", + "$id": "1686", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1623", + "$id": "1687", "kind": "constant", - "name": "ListAssistantsRequestAccept21", + "name": "ListAssistantsRequestAccept5", "namespace": "", "usage": "None", "valueType": { - "$id": "1624", + "$id": "1688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18261,29 +19347,29 @@ "decorators": [] }, { - "$id": "1625", + "$id": "1689", "kind": "constant", - "name": "getChatCompletionContentType", + "name": "ListAssistantsRequestOpenAiBeta5", "namespace": "", "usage": "None", "valueType": { - "$id": "1626", + "$id": "1690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1627", + "$id": "1691", "kind": "constant", - "name": "updateChatCompletionContentType", + "name": "ListAssistantsRequestAccept6", "namespace": "", "usage": "None", "valueType": { - "$id": "1628", + "$id": "1692", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18293,29 +19379,29 @@ "decorators": [] }, { - "$id": "1629", + "$id": "1693", "kind": "constant", - "name": "updateChatCompletionContentType1", + "name": "ListAssistantsRequestOpenAiBeta6", "namespace": "", "usage": "None", "valueType": { - "$id": "1630", + "$id": "1694", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1631", + "$id": "1695", "kind": "constant", - "name": "deleteChatCompletionContentType", + "name": "modifyAssistantContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1632", + "$id": "1696", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18325,13 +19411,13 @@ "decorators": [] }, { - "$id": "1633", + "$id": "1697", "kind": "constant", - "name": "getChatCompletionMessagesContentType", + "name": "ListAssistantsRequestAccept7", "namespace": "", "usage": "None", "valueType": { - "$id": "1634", + "$id": "1698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18341,61 +19427,61 @@ "decorators": [] }, { - "$id": "1635", + "$id": "1699", "kind": "constant", - "name": "listContainersContentType", + "name": "ListAssistantsRequestOpenAiBeta7", "namespace": "", "usage": "None", "valueType": { - "$id": "1636", + "$id": "1700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1637", + "$id": "1701", "kind": "constant", - "name": "ListAssistantsResponseObject1", + "name": "ListAssistantsRequestAccept8", "namespace": "", "usage": "None", "valueType": { - "$id": "1638", + "$id": "1702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "application/json", "decorators": [] }, { - "$id": "1639", + "$id": "1703", "kind": "constant", - "name": "ContainerResourceExpiresAfterAnchor", + "name": "ListAssistantsRequestOpenAiBeta8", "namespace": "", "usage": "None", "valueType": { - "$id": "1640", + "$id": "1704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "last_active_at", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1641", + "$id": "1705", "kind": "constant", - "name": "createContainerContentType", + "name": "ListAssistantsRequestAccept9", "namespace": "", "usage": "None", "valueType": { - "$id": "1642", + "$id": "1706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18405,45 +19491,45 @@ "decorators": [] }, { - "$id": "1643", + "$id": "1707", "kind": "constant", - "name": "createContainerContentType1", + "name": "ListAssistantsRequestOpenAiBeta9", "namespace": "", "usage": "None", "valueType": { - "$id": "1644", + "$id": "1708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1645", + "$id": "1709", "kind": "constant", - "name": "ContainerResourceExpiresAfterAnchor1", + "name": "CreateSpeechRequestAccept", "namespace": "", "usage": "None", "valueType": { - "$id": "1646", + "$id": "1710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "last_active_at", + "value": "application/octet-stream", "decorators": [] }, { - "$id": "1647", + "$id": "1711", "kind": "constant", - "name": "retrieveContainerContentType", + "name": "createSpeechContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1648", + "$id": "1712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18453,93 +19539,93 @@ "decorators": [] }, { - "$id": "1649", + "$id": "1713", "kind": "constant", - "name": "deleteContainerContentType", + "name": "CreateSpeechRequestAccept1", "namespace": "", "usage": "None", "valueType": { - "$id": "1650", + "$id": "1714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "application/octet-stream", "decorators": [] }, { - "$id": "1651", + "$id": "1715", "kind": "constant", - "name": "DeleteContainerResponseObject", + "name": "CreateSpeechRequestAccept2", "namespace": "", "usage": "None", "valueType": { - "$id": "1652", + "$id": "1716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "container.deleted", + "value": "application/octet-stream", "decorators": [] }, { - "$id": "1653", + "$id": "1717", "kind": "constant", - "name": "DeleteContainerResponseDeleted", + "name": "CreateTranscriptionRequestContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1654", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", + "$id": "1718", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": true, + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1655", + "$id": "1719", "kind": "constant", - "name": "CreateTranscriptionRequestContentType4", + "name": "CreateTranscriptionRequestAccept1", "namespace": "", "usage": "None", "valueType": { - "$id": "1656", + "$id": "1720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "text/event-stream", "decorators": [] }, { - "$id": "1657", + "$id": "1721", "kind": "constant", - "name": "createContainerFileContentType", + "name": "CreateTranscriptionResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1658", + "$id": "1722", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/plain", "decorators": [] }, { - "$id": "1659", + "$id": "1723", "kind": "constant", - "name": "CreateTranscriptionRequestContentType5", + "name": "CreateTranscriptionRequestContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1660", + "$id": "1724", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18549,13 +19635,13 @@ "decorators": [] }, { - "$id": "1661", + "$id": "1725", "kind": "constant", - "name": "listContainerFilesContentType", + "name": "ListAssistantsRequestAccept10", "namespace": "", "usage": "None", "valueType": { - "$id": "1662", + "$id": "1726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18565,45 +19651,45 @@ "decorators": [] }, { - "$id": "1663", + "$id": "1727", "kind": "constant", - "name": "ListAssistantsResponseObject2", + "name": "CreateTranscriptionRequestContentType2", "namespace": "", "usage": "None", "valueType": { - "$id": "1664", + "$id": "1728", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "list", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1665", + "$id": "1729", "kind": "constant", - "name": "retrieveContainerFileContentType", + "name": "CreateTranscriptionResponseContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1666", + "$id": "1730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/plain", "decorators": [] }, { - "$id": "1667", + "$id": "1731", "kind": "constant", - "name": "deleteContainerFileContentType", + "name": "ListAssistantsRequestAccept11", "namespace": "", "usage": "None", "valueType": { - "$id": "1668", + "$id": "1732", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18613,61 +19699,61 @@ "decorators": [] }, { - "$id": "1669", + "$id": "1733", "kind": "constant", - "name": "DeleteContainerFileResponseObject", + "name": "CreateTranscriptionRequestContentType3", "namespace": "", "usage": "None", "valueType": { - "$id": "1670", + "$id": "1734", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "container.file.deleted", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1671", + "$id": "1735", "kind": "constant", - "name": "DeleteContainerResponseDeleted1", + "name": "ListAssistantsRequestAccept12", "namespace": "", "usage": "None", "valueType": { - "$id": "1672", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", + "$id": "1736", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": true, + "value": "application/json", "decorators": [] }, { - "$id": "1673", + "$id": "1737", "kind": "constant", - "name": "retrieveContainerFileContentContentType", + "name": "createBatchContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1674", + "$id": "1738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/octet-stream", + "value": "application/json", "decorators": [] }, { - "$id": "1675", + "$id": "1739", "kind": "constant", - "name": "ListAssistantsRequestAccept22", + "name": "ListAssistantsRequestAccept13", "namespace": "", "usage": "None", "valueType": { - "$id": "1676", + "$id": "1740", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18677,29 +19763,29 @@ "decorators": [] }, { - "$id": "1677", + "$id": "1741", "kind": "constant", - "name": "createEmbeddingContentType", + "name": "CreateBatchRequestCompletionWindow", "namespace": "", "usage": "None", "valueType": { - "$id": "1678", + "$id": "1742", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "24h", "decorators": [] }, { - "$id": "1679", + "$id": "1743", "kind": "constant", - "name": "ListAssistantsRequestAccept23", + "name": "ListAssistantsRequestAccept14", "namespace": "", "usage": "None", "valueType": { - "$id": "1680", + "$id": "1744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18709,13 +19795,13 @@ "decorators": [] }, { - "$id": "1681", + "$id": "1745", "kind": "constant", - "name": "ListAssistantsRequestAccept24", + "name": "ListAssistantsRequestAccept15", "namespace": "", "usage": "None", "valueType": { - "$id": "1682", + "$id": "1746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18725,13 +19811,13 @@ "decorators": [] }, { - "$id": "1683", + "$id": "1747", "kind": "constant", - "name": "ListAssistantsRequestAccept25", + "name": "ListAssistantsRequestAccept16", "namespace": "", "usage": "None", "valueType": { - "$id": "1684", + "$id": "1748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18741,13 +19827,13 @@ "decorators": [] }, { - "$id": "1685", + "$id": "1749", "kind": "constant", - "name": "ListAssistantsRequestAccept26", + "name": "ListAssistantsRequestAccept17", "namespace": "", "usage": "None", "valueType": { - "$id": "1686", + "$id": "1750", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18757,29 +19843,29 @@ "decorators": [] }, { - "$id": "1687", + "$id": "1751", "kind": "constant", - "name": "CreateTranscriptionRequestContentType6", + "name": "ListAssistantsRequestAccept18", "namespace": "", "usage": "None", "valueType": { - "$id": "1688", + "$id": "1752", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "1689", + "$id": "1753", "kind": "constant", - "name": "ListAssistantsRequestAccept27", + "name": "ListAssistantsRequestAccept19", "namespace": "", "usage": "None", "valueType": { - "$id": "1690", + "$id": "1754", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18789,29 +19875,29 @@ "decorators": [] }, { - "$id": "1691", + "$id": "1755", "kind": "constant", - "name": "CreateTranscriptionRequestContentType7", + "name": "listChatCompletionsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1692", + "$id": "1756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "1693", + "$id": "1757", "kind": "constant", - "name": "ListAssistantsRequestAccept28", + "name": "ListAssistantsRequestAccept20", "namespace": "", "usage": "None", "valueType": { - "$id": "1694", + "$id": "1758", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18821,13 +19907,13 @@ "decorators": [] }, { - "$id": "1695", + "$id": "1759", "kind": "constant", - "name": "ListAssistantsRequestAccept29", + "name": "createChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1696", + "$id": "1760", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18837,29 +19923,29 @@ "decorators": [] }, { - "$id": "1697", + "$id": "1761", "kind": "constant", - "name": "ListAssistantsRequestAccept30", + "name": "CreateTranscriptionRequestAccept11", "namespace": "", "usage": "None", "valueType": { - "$id": "1698", + "$id": "1762", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/event-stream", "decorators": [] }, { - "$id": "1699", + "$id": "1763", "kind": "constant", - "name": "ListAssistantsRequestAccept31", + "name": "ListAssistantsRequestAccept21", "namespace": "", "usage": "None", "valueType": { - "$id": "1700", + "$id": "1764", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18869,13 +19955,13 @@ "decorators": [] }, { - "$id": "1701", + "$id": "1765", "kind": "constant", - "name": "ListAssistantsRequestAccept32", + "name": "getChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1702", + "$id": "1766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18885,13 +19971,13 @@ "decorators": [] }, { - "$id": "1703", + "$id": "1767", "kind": "constant", - "name": "ListAssistantsRequestAccept33", + "name": "updateChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1704", + "$id": "1768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18901,13 +19987,13 @@ "decorators": [] }, { - "$id": "1705", + "$id": "1769", "kind": "constant", - "name": "listFineTuningCheckpointPermissionsContentType", + "name": "updateChatCompletionContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1706", + "$id": "1770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18917,13 +20003,13 @@ "decorators": [] }, { - "$id": "1707", + "$id": "1771", "kind": "constant", - "name": "createFineTuningCheckpointPermissionContentType", + "name": "deleteChatCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1708", + "$id": "1772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18933,13 +20019,13 @@ "decorators": [] }, { - "$id": "1709", + "$id": "1773", "kind": "constant", - "name": "createFineTuningCheckpointPermissionContentType1", + "name": "getChatCompletionMessagesContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1710", + "$id": "1774", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18949,13 +20035,13 @@ "decorators": [] }, { - "$id": "1711", + "$id": "1775", "kind": "constant", - "name": "deleteFineTuningCheckpointPermissionContentType", + "name": "listContainersContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1712", + "$id": "1776", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -18965,45 +20051,45 @@ "decorators": [] }, { - "$id": "1713", + "$id": "1777", "kind": "constant", - "name": "ListAssistantsRequestAccept34", - "namespace": "", + "name": "ContainerListResourceObject", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1714", + "$id": "1778", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "list", "decorators": [] }, { - "$id": "1715", + "$id": "1779", "kind": "constant", - "name": "createFineTuningJobContentType", - "namespace": "", + "name": "ContainerResourceExpiresAfterAnchor", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1716", + "$id": "1780", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "last_active_at", "decorators": [] }, { - "$id": "1717", + "$id": "1781", "kind": "constant", - "name": "ListAssistantsRequestAccept35", + "name": "createContainerContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1718", + "$id": "1782", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19013,13 +20099,13 @@ "decorators": [] }, { - "$id": "1719", + "$id": "1783", "kind": "constant", - "name": "ListAssistantsRequestAccept36", + "name": "createContainerContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1720", + "$id": "1784", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19029,29 +20115,29 @@ "decorators": [] }, { - "$id": "1721", + "$id": "1785", "kind": "constant", - "name": "ListAssistantsRequestAccept37", - "namespace": "", + "name": "CreateContainerBodyExpiresAfterAnchor", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1722", + "$id": "1786", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "last_active_at", "decorators": [] }, { - "$id": "1723", + "$id": "1787", "kind": "constant", - "name": "ListAssistantsRequestAccept38", + "name": "retrieveContainerContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1724", + "$id": "1788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19061,13 +20147,13 @@ "decorators": [] }, { - "$id": "1725", + "$id": "1789", "kind": "constant", - "name": "ListAssistantsRequestAccept39", + "name": "deleteContainerContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1726", + "$id": "1790", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19077,61 +20163,61 @@ "decorators": [] }, { - "$id": "1727", + "$id": "1791", "kind": "constant", - "name": "ListAssistantsRequestAccept40", - "namespace": "", + "name": "DeleteContainerResponseObject", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1728", + "$id": "1792", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "container.deleted", "decorators": [] }, { - "$id": "1729", + "$id": "1793", "kind": "constant", - "name": "ListAssistantsRequestAccept41", - "namespace": "", + "name": "DeleteContainerResponseDeleted", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1730", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", + "$id": "1794", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", "decorators": [] }, - "value": "application/json", + "value": true, "decorators": [] }, { - "$id": "1731", + "$id": "1795", "kind": "constant", - "name": "ListAssistantsRequestAccept42", + "name": "CreateTranscriptionRequestContentType4", "namespace": "", "usage": "None", "valueType": { - "$id": "1732", + "$id": "1796", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1733", + "$id": "1797", "kind": "constant", - "name": "ListAssistantsRequestAccept43", + "name": "createContainerFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1734", + "$id": "1798", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19141,29 +20227,29 @@ "decorators": [] }, { - "$id": "1735", + "$id": "1799", "kind": "constant", - "name": "ListAssistantsRequestAccept44", + "name": "CreateTranscriptionRequestContentType5", "namespace": "", "usage": "None", "valueType": { - "$id": "1736", + "$id": "1800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1737", + "$id": "1801", "kind": "constant", - "name": "ListAssistantsRequestAccept45", + "name": "listContainerFilesContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1738", + "$id": "1802", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19173,29 +20259,29 @@ "decorators": [] }, { - "$id": "1739", + "$id": "1803", "kind": "constant", - "name": "pauseFineTuningJobContentType", - "namespace": "", + "name": "ContainerFileListResourceObject", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1740", + "$id": "1804", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "list", "decorators": [] }, { - "$id": "1741", + "$id": "1805", "kind": "constant", - "name": "resumeFineTuningJobContentType", + "name": "retrieveContainerFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1742", + "$id": "1806", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19205,13 +20291,13 @@ "decorators": [] }, { - "$id": "1743", + "$id": "1807", "kind": "constant", - "name": "runGraderContentType", + "name": "deleteContainerFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1744", + "$id": "1808", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19221,61 +20307,61 @@ "decorators": [] }, { - "$id": "1745", + "$id": "1809", "kind": "constant", - "name": "runGraderContentType1", - "namespace": "", + "name": "DeleteContainerFileResponseObject", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1746", + "$id": "1810", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "container.file.deleted", "decorators": [] }, { - "$id": "1747", + "$id": "1811", "kind": "constant", - "name": "validateGraderContentType", - "namespace": "", + "name": "DeleteContainerFileResponseDeleted", + "namespace": "OpenAI", "usage": "None", "valueType": { - "$id": "1748", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", + "$id": "1812", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", "decorators": [] }, - "value": "application/json", + "value": true, "decorators": [] }, { - "$id": "1749", + "$id": "1813", "kind": "constant", - "name": "validateGraderContentType1", + "name": "retrieveContainerFileContentContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1750", + "$id": "1814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "application/octet-stream", "decorators": [] }, { - "$id": "1751", + "$id": "1815", "kind": "constant", - "name": "listEvalsContentType", + "name": "ListAssistantsRequestAccept22", "namespace": "", "usage": "None", "valueType": { - "$id": "1752", + "$id": "1816", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19285,13 +20371,13 @@ "decorators": [] }, { - "$id": "1753", + "$id": "1817", "kind": "constant", - "name": "createEvalContentType", + "name": "createEmbeddingContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1754", + "$id": "1818", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19301,13 +20387,13 @@ "decorators": [] }, { - "$id": "1755", + "$id": "1819", "kind": "constant", - "name": "createEvalContentType1", + "name": "ListAssistantsRequestAccept23", "namespace": "", "usage": "None", "valueType": { - "$id": "1756", + "$id": "1820", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19317,13 +20403,13 @@ "decorators": [] }, { - "$id": "1757", + "$id": "1821", "kind": "constant", - "name": "getEvalContentType", + "name": "ListAssistantsRequestAccept24", "namespace": "", "usage": "None", "valueType": { - "$id": "1758", + "$id": "1822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19333,13 +20419,13 @@ "decorators": [] }, { - "$id": "1759", + "$id": "1823", "kind": "constant", - "name": "updateEvalContentType", + "name": "ListAssistantsRequestAccept25", "namespace": "", "usage": "None", "valueType": { - "$id": "1760", + "$id": "1824", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19349,13 +20435,13 @@ "decorators": [] }, { - "$id": "1761", + "$id": "1825", "kind": "constant", - "name": "updateEvalContentType1", + "name": "ListAssistantsRequestAccept26", "namespace": "", "usage": "None", "valueType": { - "$id": "1762", + "$id": "1826", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19365,29 +20451,29 @@ "decorators": [] }, { - "$id": "1763", + "$id": "1827", "kind": "constant", - "name": "deleteEvalContentType", + "name": "CreateTranscriptionRequestContentType6", "namespace": "", "usage": "None", "valueType": { - "$id": "1764", + "$id": "1828", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1765", + "$id": "1829", "kind": "constant", - "name": "getEvalRunsContentType", + "name": "ListAssistantsRequestAccept27", "namespace": "", "usage": "None", "valueType": { - "$id": "1766", + "$id": "1830", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19397,29 +20483,29 @@ "decorators": [] }, { - "$id": "1767", + "$id": "1831", "kind": "constant", - "name": "createEvalRunContentType", + "name": "CreateTranscriptionRequestContentType7", "namespace": "", "usage": "None", "valueType": { - "$id": "1768", + "$id": "1832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1769", + "$id": "1833", "kind": "constant", - "name": "createEvalRunContentType1", + "name": "ListAssistantsRequestAccept28", "namespace": "", "usage": "None", "valueType": { - "$id": "1770", + "$id": "1834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19429,13 +20515,13 @@ "decorators": [] }, { - "$id": "1771", + "$id": "1835", "kind": "constant", - "name": "getEvalRunContentType", + "name": "ListAssistantsRequestAccept29", "namespace": "", "usage": "None", "valueType": { - "$id": "1772", + "$id": "1836", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19445,13 +20531,13 @@ "decorators": [] }, { - "$id": "1773", + "$id": "1837", "kind": "constant", - "name": "cancelEvalRunContentType", + "name": "ListAssistantsRequestAccept30", "namespace": "", "usage": "None", "valueType": { - "$id": "1774", + "$id": "1838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19461,13 +20547,13 @@ "decorators": [] }, { - "$id": "1775", + "$id": "1839", "kind": "constant", - "name": "deleteEvalRunContentType", + "name": "ListAssistantsRequestAccept31", "namespace": "", "usage": "None", "valueType": { - "$id": "1776", + "$id": "1840", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19477,13 +20563,13 @@ "decorators": [] }, { - "$id": "1777", + "$id": "1841", "kind": "constant", - "name": "getEvalRunOutputItemsContentType", + "name": "ListAssistantsRequestAccept32", "namespace": "", "usage": "None", "valueType": { - "$id": "1778", + "$id": "1842", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19493,13 +20579,13 @@ "decorators": [] }, { - "$id": "1779", + "$id": "1843", "kind": "constant", - "name": "getEvalRunOutputItemContentType", + "name": "ListAssistantsRequestAccept33", "namespace": "", "usage": "None", "valueType": { - "$id": "1780", + "$id": "1844", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19509,13 +20595,13 @@ "decorators": [] }, { - "$id": "1781", + "$id": "1845", "kind": "constant", - "name": "createResponseContentType", + "name": "listFineTuningCheckpointPermissionsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1782", + "$id": "1846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19525,45 +20611,45 @@ "decorators": [] }, { - "$id": "1783", + "$id": "1847", "kind": "constant", - "name": "CreateTranscriptionRequestAccept12", + "name": "createFineTuningCheckpointPermissionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1784", + "$id": "1848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "application/json", "decorators": [] }, { - "$id": "1785", + "$id": "1849", "kind": "constant", - "name": "CreateTranscriptionRequestAccept13", + "name": "createFineTuningCheckpointPermissionContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1786", + "$id": "1850", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "text/event-stream", + "value": "application/json", "decorators": [] }, { - "$id": "1787", + "$id": "1851", "kind": "constant", - "name": "deleteResponseContentType", + "name": "deleteFineTuningCheckpointPermissionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1788", + "$id": "1852", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19573,13 +20659,13 @@ "decorators": [] }, { - "$id": "1789", + "$id": "1853", "kind": "constant", - "name": "cancelResponseContentType", + "name": "ListAssistantsRequestAccept34", "namespace": "", "usage": "None", "valueType": { - "$id": "1790", + "$id": "1854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19589,13 +20675,13 @@ "decorators": [] }, { - "$id": "1791", + "$id": "1855", "kind": "constant", - "name": "listInputItemsContentType", + "name": "createFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1792", + "$id": "1856", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19605,13 +20691,13 @@ "decorators": [] }, { - "$id": "1793", + "$id": "1857", "kind": "constant", - "name": "ListAssistantsRequestAccept46", + "name": "ListAssistantsRequestAccept35", "namespace": "", "usage": "None", "valueType": { - "$id": "1794", + "$id": "1858", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19621,13 +20707,13 @@ "decorators": [] }, { - "$id": "1795", + "$id": "1859", "kind": "constant", - "name": "createImageContentType", + "name": "ListAssistantsRequestAccept36", "namespace": "", "usage": "None", "valueType": { - "$id": "1796", + "$id": "1860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19637,13 +20723,13 @@ "decorators": [] }, { - "$id": "1797", + "$id": "1861", "kind": "constant", - "name": "ListAssistantsRequestAccept47", + "name": "ListAssistantsRequestAccept37", "namespace": "", "usage": "None", "valueType": { - "$id": "1798", + "$id": "1862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19653,13 +20739,13 @@ "decorators": [] }, { - "$id": "1799", + "$id": "1863", "kind": "constant", - "name": "ListAssistantsRequestAccept48", + "name": "ListAssistantsRequestAccept38", "namespace": "", "usage": "None", "valueType": { - "$id": "1800", + "$id": "1864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19669,29 +20755,29 @@ "decorators": [] }, { - "$id": "1801", + "$id": "1865", "kind": "constant", - "name": "CreateTranscriptionRequestContentType8", + "name": "ListAssistantsRequestAccept39", "namespace": "", "usage": "None", "valueType": { - "$id": "1802", + "$id": "1866", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "1803", + "$id": "1867", "kind": "constant", - "name": "ListAssistantsRequestAccept49", + "name": "ListAssistantsRequestAccept40", "namespace": "", "usage": "None", "valueType": { - "$id": "1804", + "$id": "1868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19701,29 +20787,29 @@ "decorators": [] }, { - "$id": "1805", + "$id": "1869", "kind": "constant", - "name": "CreateTranscriptionRequestContentType9", + "name": "ListAssistantsRequestAccept41", "namespace": "", "usage": "None", "valueType": { - "$id": "1806", + "$id": "1870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "1807", + "$id": "1871", "kind": "constant", - "name": "ListAssistantsRequestAccept50", + "name": "ListAssistantsRequestAccept42", "namespace": "", "usage": "None", "valueType": { - "$id": "1808", + "$id": "1872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19733,29 +20819,29 @@ "decorators": [] }, { - "$id": "1809", + "$id": "1873", "kind": "constant", - "name": "CreateTranscriptionRequestContentType10", + "name": "ListAssistantsRequestAccept43", "namespace": "", "usage": "None", "valueType": { - "$id": "1810", + "$id": "1874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "1811", + "$id": "1875", "kind": "constant", - "name": "ListAssistantsRequestAccept51", + "name": "ListAssistantsRequestAccept44", "namespace": "", "usage": "None", "valueType": { - "$id": "1812", + "$id": "1876", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19765,29 +20851,29 @@ "decorators": [] }, { - "$id": "1813", + "$id": "1877", "kind": "constant", - "name": "CreateTranscriptionRequestContentType11", + "name": "ListAssistantsRequestAccept45", "namespace": "", "usage": "None", "valueType": { - "$id": "1814", + "$id": "1878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "1815", + "$id": "1879", "kind": "constant", - "name": "ListAssistantsRequestAccept52", + "name": "pauseFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1816", + "$id": "1880", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19797,29 +20883,29 @@ "decorators": [] }, { - "$id": "1817", + "$id": "1881", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta10", + "name": "resumeFineTuningJobContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1818", + "$id": "1882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1819", + "$id": "1883", "kind": "constant", - "name": "createMessageContentType", + "name": "runGraderContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1820", + "$id": "1884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19829,13 +20915,13 @@ "decorators": [] }, { - "$id": "1821", + "$id": "1885", "kind": "constant", - "name": "ListAssistantsRequestAccept53", + "name": "runGraderContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1822", + "$id": "1886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19845,29 +20931,29 @@ "decorators": [] }, { - "$id": "1823", + "$id": "1887", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta11", + "name": "validateGraderContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1824", + "$id": "1888", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1825", + "$id": "1889", "kind": "constant", - "name": "ListAssistantsRequestAccept54", + "name": "validateGraderContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1826", + "$id": "1890", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19877,29 +20963,29 @@ "decorators": [] }, { - "$id": "1827", + "$id": "1891", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta12", + "name": "listEvalsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1828", + "$id": "1892", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1829", + "$id": "1893", "kind": "constant", - "name": "ListAssistantsRequestAccept55", + "name": "createEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1830", + "$id": "1894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19909,29 +20995,29 @@ "decorators": [] }, { - "$id": "1831", + "$id": "1895", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta13", + "name": "createEvalContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1832", + "$id": "1896", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1833", + "$id": "1897", "kind": "constant", - "name": "ListAssistantsRequestAccept56", + "name": "getEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1834", + "$id": "1898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19941,29 +21027,29 @@ "decorators": [] }, { - "$id": "1835", + "$id": "1899", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta14", + "name": "updateEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1836", + "$id": "1900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1837", + "$id": "1901", "kind": "constant", - "name": "ListAssistantsRequestAccept57", + "name": "updateEvalContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1838", + "$id": "1902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -19973,29 +21059,29 @@ "decorators": [] }, { - "$id": "1839", + "$id": "1903", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta15", + "name": "deleteEvalContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1840", + "$id": "1904", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1841", + "$id": "1905", "kind": "constant", - "name": "ListAssistantsRequestAccept58", + "name": "getEvalRunsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1842", + "$id": "1906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20005,29 +21091,29 @@ "decorators": [] }, { - "$id": "1843", + "$id": "1907", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta16", + "name": "createEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1844", + "$id": "1908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1845", + "$id": "1909", "kind": "constant", - "name": "modifyMessageContentType", + "name": "createEvalRunContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "1846", + "$id": "1910", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20037,13 +21123,13 @@ "decorators": [] }, { - "$id": "1847", + "$id": "1911", "kind": "constant", - "name": "ListAssistantsRequestAccept59", + "name": "getEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1848", + "$id": "1912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20053,29 +21139,29 @@ "decorators": [] }, { - "$id": "1849", + "$id": "1913", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta17", + "name": "cancelEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1850", + "$id": "1914", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1851", + "$id": "1915", "kind": "constant", - "name": "ListAssistantsRequestAccept60", + "name": "deleteEvalRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1852", + "$id": "1916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20085,29 +21171,29 @@ "decorators": [] }, { - "$id": "1853", + "$id": "1917", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta18", + "name": "getEvalRunOutputItemsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1854", + "$id": "1918", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1855", + "$id": "1919", "kind": "constant", - "name": "ListAssistantsRequestAccept61", + "name": "getEvalRunOutputItemContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1856", + "$id": "1920", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20117,45 +21203,61 @@ "decorators": [] }, { - "$id": "1857", + "$id": "1921", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta19", + "name": "createResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1858", + "$id": "1922", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1859", + "$id": "1923", "kind": "constant", - "name": "ListAssistantsRequestAccept62", + "name": "CreateTranscriptionRequestAccept12", "namespace": "", "usage": "None", "valueType": { - "$id": "1860", + "$id": "1924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "text/event-stream", "decorators": [] }, { - "$id": "1861", + "$id": "1925", "kind": "constant", - "name": "createModerationContentType", + "name": "CreateTranscriptionRequestAccept13", "namespace": "", "usage": "None", "valueType": { - "$id": "1862", + "$id": "1926", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "text/event-stream", + "decorators": [] + }, + { + "$id": "1927", + "kind": "constant", + "name": "deleteResponseContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "1928", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20165,13 +21267,13 @@ "decorators": [] }, { - "$id": "1863", + "$id": "1929", "kind": "constant", - "name": "ListAssistantsRequestAccept63", + "name": "cancelResponseContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1864", + "$id": "1930", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20181,29 +21283,29 @@ "decorators": [] }, { - "$id": "1865", + "$id": "1931", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta20", + "name": "listInputItemsContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1866", + "$id": "1932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1867", + "$id": "1933", "kind": "constant", - "name": "createThreadAndRunContentType", + "name": "ListAssistantsRequestAccept46", "namespace": "", "usage": "None", "valueType": { - "$id": "1868", + "$id": "1934", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20213,45 +21315,45 @@ "decorators": [] }, { - "$id": "1869", + "$id": "1935", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta21", + "name": "createImageContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1870", + "$id": "1936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1871", + "$id": "1937", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta22", + "name": "ListAssistantsRequestAccept47", "namespace": "", "usage": "None", "valueType": { - "$id": "1872", + "$id": "1938", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1873", + "$id": "1939", "kind": "constant", - "name": "createRunContentType", + "name": "ListAssistantsRequestAccept48", "namespace": "", "usage": "None", "valueType": { - "$id": "1874", + "$id": "1940", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20261,29 +21363,29 @@ "decorators": [] }, { - "$id": "1875", + "$id": "1941", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta23", + "name": "CreateTranscriptionRequestContentType8", "namespace": "", "usage": "None", "valueType": { - "$id": "1876", + "$id": "1942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1877", + "$id": "1943", "kind": "constant", - "name": "ListAssistantsRequestAccept64", + "name": "ListAssistantsRequestAccept49", "namespace": "", "usage": "None", "valueType": { - "$id": "1878", + "$id": "1944", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20293,29 +21395,29 @@ "decorators": [] }, { - "$id": "1879", + "$id": "1945", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta24", + "name": "CreateTranscriptionRequestContentType9", "namespace": "", "usage": "None", "valueType": { - "$id": "1880", + "$id": "1946", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1881", + "$id": "1947", "kind": "constant", - "name": "ListAssistantsRequestAccept65", + "name": "ListAssistantsRequestAccept50", "namespace": "", "usage": "None", "valueType": { - "$id": "1882", + "$id": "1948", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20325,29 +21427,29 @@ "decorators": [] }, { - "$id": "1883", + "$id": "1949", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta25", + "name": "CreateTranscriptionRequestContentType10", "namespace": "", "usage": "None", "valueType": { - "$id": "1884", + "$id": "1950", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1885", + "$id": "1951", "kind": "constant", - "name": "ListAssistantsRequestAccept66", + "name": "ListAssistantsRequestAccept51", "namespace": "", "usage": "None", "valueType": { - "$id": "1886", + "$id": "1952", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20357,29 +21459,29 @@ "decorators": [] }, { - "$id": "1887", + "$id": "1953", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta26", + "name": "CreateTranscriptionRequestContentType11", "namespace": "", "usage": "None", "valueType": { - "$id": "1888", + "$id": "1954", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "multipart/form-data", "decorators": [] }, { - "$id": "1889", + "$id": "1955", "kind": "constant", - "name": "ListAssistantsRequestAccept67", + "name": "ListAssistantsRequestAccept52", "namespace": "", "usage": "None", "valueType": { - "$id": "1890", + "$id": "1956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20389,13 +21491,13 @@ "decorators": [] }, { - "$id": "1891", + "$id": "1957", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta27", + "name": "ListAssistantsRequestOpenAiBeta10", "namespace": "", "usage": "None", "valueType": { - "$id": "1892", + "$id": "1958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20405,13 +21507,13 @@ "decorators": [] }, { - "$id": "1893", + "$id": "1959", "kind": "constant", - "name": "ListAssistantsRequestAccept68", + "name": "createMessageContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1894", + "$id": "1960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20421,45 +21523,45 @@ "decorators": [] }, { - "$id": "1895", + "$id": "1961", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta28", + "name": "ListAssistantsRequestAccept53", "namespace": "", "usage": "None", "valueType": { - "$id": "1896", + "$id": "1962", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1897", + "$id": "1963", "kind": "constant", - "name": "modifyRunContentType", + "name": "ListAssistantsRequestOpenAiBeta11", "namespace": "", "usage": "None", "valueType": { - "$id": "1898", + "$id": "1964", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1899", + "$id": "1965", "kind": "constant", - "name": "ListAssistantsRequestAccept69", + "name": "ListAssistantsRequestAccept54", "namespace": "", "usage": "None", "valueType": { - "$id": "1900", + "$id": "1966", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20469,13 +21571,13 @@ "decorators": [] }, { - "$id": "1901", + "$id": "1967", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta29", + "name": "ListAssistantsRequestOpenAiBeta12", "namespace": "", "usage": "None", "valueType": { - "$id": "1902", + "$id": "1968", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20485,13 +21587,13 @@ "decorators": [] }, { - "$id": "1903", + "$id": "1969", "kind": "constant", - "name": "ListAssistantsRequestAccept70", + "name": "ListAssistantsRequestAccept55", "namespace": "", "usage": "None", "valueType": { - "$id": "1904", + "$id": "1970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20501,13 +21603,13 @@ "decorators": [] }, { - "$id": "1905", + "$id": "1971", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta30", + "name": "ListAssistantsRequestOpenAiBeta13", "namespace": "", "usage": "None", "valueType": { - "$id": "1906", + "$id": "1972", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20517,13 +21619,13 @@ "decorators": [] }, { - "$id": "1907", + "$id": "1973", "kind": "constant", - "name": "ListAssistantsRequestAccept71", + "name": "ListAssistantsRequestAccept56", "namespace": "", "usage": "None", "valueType": { - "$id": "1908", + "$id": "1974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20533,13 +21635,13 @@ "decorators": [] }, { - "$id": "1909", + "$id": "1975", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta31", + "name": "ListAssistantsRequestOpenAiBeta14", "namespace": "", "usage": "None", "valueType": { - "$id": "1910", + "$id": "1976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20549,93 +21651,93 @@ "decorators": [] }, { - "$id": "1911", + "$id": "1977", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta32", + "name": "ListAssistantsRequestAccept57", "namespace": "", "usage": "None", "valueType": { - "$id": "1912", + "$id": "1978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1913", + "$id": "1979", "kind": "constant", - "name": "submitToolOutputsToRunContentType", + "name": "ListAssistantsRequestOpenAiBeta15", "namespace": "", "usage": "None", "valueType": { - "$id": "1914", + "$id": "1980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1915", + "$id": "1981", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta33", + "name": "ListAssistantsRequestAccept58", "namespace": "", "usage": "None", "valueType": { - "$id": "1916", + "$id": "1982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1917", + "$id": "1983", "kind": "constant", - "name": "ListAssistantsRequestAccept72", + "name": "ListAssistantsRequestOpenAiBeta16", "namespace": "", "usage": "None", "valueType": { - "$id": "1918", + "$id": "1984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1919", + "$id": "1985", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta34", + "name": "modifyMessageContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1920", + "$id": "1986", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1921", + "$id": "1987", "kind": "constant", - "name": "ListAssistantsRequestAccept73", + "name": "ListAssistantsRequestAccept59", "namespace": "", "usage": "None", "valueType": { - "$id": "1922", + "$id": "1988", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20645,13 +21747,13 @@ "decorators": [] }, { - "$id": "1923", + "$id": "1989", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta35", + "name": "ListAssistantsRequestOpenAiBeta17", "namespace": "", "usage": "None", "valueType": { - "$id": "1924", + "$id": "1990", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20661,13 +21763,13 @@ "decorators": [] }, { - "$id": "1925", + "$id": "1991", "kind": "constant", - "name": "ListAssistantsRequestAccept74", + "name": "ListAssistantsRequestAccept60", "namespace": "", "usage": "None", "valueType": { - "$id": "1926", + "$id": "1992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20677,13 +21779,13 @@ "decorators": [] }, { - "$id": "1927", + "$id": "1993", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta36", + "name": "ListAssistantsRequestOpenAiBeta18", "namespace": "", "usage": "None", "valueType": { - "$id": "1928", + "$id": "1994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20693,13 +21795,13 @@ "decorators": [] }, { - "$id": "1929", + "$id": "1995", "kind": "constant", - "name": "ListAssistantsRequestAccept75", + "name": "ListAssistantsRequestAccept61", "namespace": "", "usage": "None", "valueType": { - "$id": "1930", + "$id": "1996", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20709,13 +21811,13 @@ "decorators": [] }, { - "$id": "1931", + "$id": "1997", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta37", + "name": "ListAssistantsRequestOpenAiBeta19", "namespace": "", "usage": "None", "valueType": { - "$id": "1932", + "$id": "1998", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20725,13 +21827,13 @@ "decorators": [] }, { - "$id": "1933", + "$id": "1999", "kind": "constant", - "name": "ListAssistantsRequestAccept76", + "name": "ListAssistantsRequestAccept62", "namespace": "", "usage": "None", "valueType": { - "$id": "1934", + "$id": "2000", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20741,29 +21843,29 @@ "decorators": [] }, { - "$id": "1935", + "$id": "2001", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta38", + "name": "createModerationContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1936", + "$id": "2002", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1937", + "$id": "2003", "kind": "constant", - "name": "createThreadContentType", + "name": "ListAssistantsRequestAccept63", "namespace": "", "usage": "None", "valueType": { - "$id": "1938", + "$id": "2004", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20773,61 +21875,61 @@ "decorators": [] }, { - "$id": "1939", + "$id": "2005", "kind": "constant", - "name": "ListAssistantsRequestAccept77", + "name": "ListAssistantsRequestOpenAiBeta20", "namespace": "", "usage": "None", "valueType": { - "$id": "1940", + "$id": "2006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1941", + "$id": "2007", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta39", + "name": "createThreadAndRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1942", + "$id": "2008", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1943", + "$id": "2009", "kind": "constant", - "name": "ListAssistantsRequestAccept78", + "name": "ListAssistantsRequestOpenAiBeta21", "namespace": "", "usage": "None", "valueType": { - "$id": "1944", + "$id": "2010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1945", + "$id": "2011", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta40", + "name": "ListAssistantsRequestOpenAiBeta22", "namespace": "", "usage": "None", "valueType": { - "$id": "1946", + "$id": "2012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20837,13 +21939,13 @@ "decorators": [] }, { - "$id": "1947", + "$id": "2013", "kind": "constant", - "name": "ListAssistantsRequestAccept79", + "name": "createRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1948", + "$id": "2014", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20853,13 +21955,13 @@ "decorators": [] }, { - "$id": "1949", + "$id": "2015", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta41", + "name": "ListAssistantsRequestOpenAiBeta23", "namespace": "", "usage": "None", "valueType": { - "$id": "1950", + "$id": "2016", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20869,13 +21971,13 @@ "decorators": [] }, { - "$id": "1951", + "$id": "2017", "kind": "constant", - "name": "ListAssistantsRequestAccept80", + "name": "ListAssistantsRequestAccept64", "namespace": "", "usage": "None", "valueType": { - "$id": "1952", + "$id": "2018", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20885,13 +21987,13 @@ "decorators": [] }, { - "$id": "1953", + "$id": "2019", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta42", + "name": "ListAssistantsRequestOpenAiBeta24", "namespace": "", "usage": "None", "valueType": { - "$id": "1954", + "$id": "2020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20901,13 +22003,13 @@ "decorators": [] }, { - "$id": "1955", + "$id": "2021", "kind": "constant", - "name": "modifyThreadContentType", + "name": "ListAssistantsRequestAccept65", "namespace": "", "usage": "None", "valueType": { - "$id": "1956", + "$id": "2022", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20917,45 +22019,61 @@ "decorators": [] }, { - "$id": "1957", + "$id": "2023", "kind": "constant", - "name": "ListAssistantsRequestAccept81", + "name": "ListAssistantsRequestOpenAiBeta25", "namespace": "", "usage": "None", "valueType": { - "$id": "1958", + "$id": "2024", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1959", + "$id": "2025", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta43", + "name": "ListAssistantsRequestAccept66", "namespace": "", "usage": "None", "valueType": { - "$id": "1960", + "$id": "2026", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "assistants=v2", + "value": "application/json", "decorators": [] }, { - "$id": "1961", + "$id": "2027", "kind": "constant", - "name": "ListAssistantsRequestAccept82", + "name": "ListAssistantsRequestOpenAiBeta26", "namespace": "", "usage": "None", "valueType": { - "$id": "1962", + "$id": "2028", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2029", + "kind": "constant", + "name": "ListAssistantsRequestAccept67", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20965,13 +22083,13 @@ "decorators": [] }, { - "$id": "1963", + "$id": "2031", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta44", + "name": "ListAssistantsRequestOpenAiBeta27", "namespace": "", "usage": "None", "valueType": { - "$id": "1964", + "$id": "2032", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20981,13 +22099,13 @@ "decorators": [] }, { - "$id": "1965", + "$id": "2033", "kind": "constant", - "name": "ListAssistantsRequestAccept83", + "name": "ListAssistantsRequestAccept68", "namespace": "", "usage": "None", "valueType": { - "$id": "1966", + "$id": "2034", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -20997,13 +22115,13 @@ "decorators": [] }, { - "$id": "1967", + "$id": "2035", "kind": "constant", - "name": "ListAssistantsRequestOpenAiBeta45", + "name": "ListAssistantsRequestOpenAiBeta28", "namespace": "", "usage": "None", "valueType": { - "$id": "1968", + "$id": "2036", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21013,13 +22131,13 @@ "decorators": [] }, { - "$id": "1969", + "$id": "2037", "kind": "constant", - "name": "ListAssistantsRequestAccept84", + "name": "modifyRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1970", + "$id": "2038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21029,13 +22147,13 @@ "decorators": [] }, { - "$id": "1971", + "$id": "2039", "kind": "constant", - "name": "ListAssistantsRequestAccept85", + "name": "ListAssistantsRequestAccept69", "namespace": "", "usage": "None", "valueType": { - "$id": "1972", + "$id": "2040", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21045,29 +22163,29 @@ "decorators": [] }, { - "$id": "1973", + "$id": "2041", "kind": "constant", - "name": "ListAssistantsRequestAccept86", + "name": "ListAssistantsRequestOpenAiBeta29", "namespace": "", "usage": "None", "valueType": { - "$id": "1974", + "$id": "2042", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1975", + "$id": "2043", "kind": "constant", - "name": "createVectorStoreContentType", + "name": "ListAssistantsRequestAccept70", "namespace": "", "usage": "None", "valueType": { - "$id": "1976", + "$id": "2044", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21077,29 +22195,29 @@ "decorators": [] }, { - "$id": "1977", + "$id": "2045", "kind": "constant", - "name": "ListAssistantsRequestAccept87", + "name": "ListAssistantsRequestOpenAiBeta30", "namespace": "", "usage": "None", "valueType": { - "$id": "1978", + "$id": "2046", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1979", + "$id": "2047", "kind": "constant", - "name": "ListAssistantsRequestAccept88", + "name": "ListAssistantsRequestAccept71", "namespace": "", "usage": "None", "valueType": { - "$id": "1980", + "$id": "2048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21109,45 +22227,45 @@ "decorators": [] }, { - "$id": "1981", + "$id": "2049", "kind": "constant", - "name": "ListAssistantsRequestAccept89", + "name": "ListAssistantsRequestOpenAiBeta31", "namespace": "", "usage": "None", "valueType": { - "$id": "1982", + "$id": "2050", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1983", + "$id": "2051", "kind": "constant", - "name": "ListAssistantsRequestAccept90", + "name": "ListAssistantsRequestOpenAiBeta32", "namespace": "", "usage": "None", "valueType": { - "$id": "1984", + "$id": "2052", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1985", + "$id": "2053", "kind": "constant", - "name": "modifyVectorStoreContentType", + "name": "submitToolOutputsToRunContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "1986", + "$id": "2054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21157,29 +22275,29 @@ "decorators": [] }, { - "$id": "1987", + "$id": "2055", "kind": "constant", - "name": "ListAssistantsRequestAccept91", + "name": "ListAssistantsRequestOpenAiBeta33", "namespace": "", "usage": "None", "valueType": { - "$id": "1988", + "$id": "2056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1989", + "$id": "2057", "kind": "constant", - "name": "ListAssistantsRequestAccept92", + "name": "ListAssistantsRequestAccept72", "namespace": "", "usage": "None", "valueType": { - "$id": "1990", + "$id": "2058", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21189,29 +22307,29 @@ "decorators": [] }, { - "$id": "1991", + "$id": "2059", "kind": "constant", - "name": "ListAssistantsRequestAccept93", + "name": "ListAssistantsRequestOpenAiBeta34", "namespace": "", "usage": "None", "valueType": { - "$id": "1992", + "$id": "2060", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1993", + "$id": "2061", "kind": "constant", - "name": "ListAssistantsRequestAccept94", + "name": "ListAssistantsRequestAccept73", "namespace": "", "usage": "None", "valueType": { - "$id": "1994", + "$id": "2062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21221,29 +22339,29 @@ "decorators": [] }, { - "$id": "1995", + "$id": "2063", "kind": "constant", - "name": "createVectorStoreFileBatchContentType", + "name": "ListAssistantsRequestOpenAiBeta35", "namespace": "", "usage": "None", "valueType": { - "$id": "1996", + "$id": "2064", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "1997", + "$id": "2065", "kind": "constant", - "name": "ListAssistantsRequestAccept95", + "name": "ListAssistantsRequestAccept74", "namespace": "", "usage": "None", "valueType": { - "$id": "1998", + "$id": "2066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21253,29 +22371,29 @@ "decorators": [] }, { - "$id": "1999", + "$id": "2067", "kind": "constant", - "name": "ListAssistantsRequestAccept96", + "name": "ListAssistantsRequestOpenAiBeta36", "namespace": "", "usage": "None", "valueType": { - "$id": "2000", + "$id": "2068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "application/json", + "value": "assistants=v2", "decorators": [] }, { - "$id": "2001", + "$id": "2069", "kind": "constant", - "name": "ListAssistantsRequestAccept97", + "name": "ListAssistantsRequestAccept75", "namespace": "", "usage": "None", "valueType": { - "$id": "2002", + "$id": "2070", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21285,13 +22403,29 @@ "decorators": [] }, { - "$id": "2003", + "$id": "2071", "kind": "constant", - "name": "ListAssistantsRequestAccept98", + "name": "ListAssistantsRequestOpenAiBeta37", "namespace": "", "usage": "None", "valueType": { - "$id": "2004", + "$id": "2072", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2073", + "kind": "constant", + "name": "ListAssistantsRequestAccept76", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2074", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21301,13 +22435,29 @@ "decorators": [] }, { - "$id": "2005", + "$id": "2075", "kind": "constant", - "name": "ListAssistantsRequestAccept99", + "name": "ListAssistantsRequestOpenAiBeta38", "namespace": "", "usage": "None", "valueType": { - "$id": "2006", + "$id": "2076", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2077", + "kind": "constant", + "name": "createThreadContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2078", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21317,13 +22467,13 @@ "decorators": [] }, { - "$id": "2007", + "$id": "2079", "kind": "constant", - "name": "ListAssistantsRequestAccept100", + "name": "ListAssistantsRequestAccept77", "namespace": "", "usage": "None", "valueType": { - "$id": "2008", + "$id": "2080", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21333,13 +22483,29 @@ "decorators": [] }, { - "$id": "2009", + "$id": "2081", "kind": "constant", - "name": "ListAssistantsRequestAccept101", + "name": "ListAssistantsRequestOpenAiBeta39", "namespace": "", "usage": "None", "valueType": { - "$id": "2010", + "$id": "2082", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2083", + "kind": "constant", + "name": "ListAssistantsRequestAccept78", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2084", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21349,13 +22515,29 @@ "decorators": [] }, { - "$id": "2011", + "$id": "2085", "kind": "constant", - "name": "ListAssistantsRequestAccept102", + "name": "ListAssistantsRequestOpenAiBeta40", "namespace": "", "usage": "None", "valueType": { - "$id": "2012", + "$id": "2086", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2087", + "kind": "constant", + "name": "ListAssistantsRequestAccept79", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2088", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21365,13 +22547,29 @@ "decorators": [] }, { - "$id": "2013", + "$id": "2089", "kind": "constant", - "name": "ListAssistantsRequestAccept103", + "name": "ListAssistantsRequestOpenAiBeta41", "namespace": "", "usage": "None", "valueType": { - "$id": "2014", + "$id": "2090", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2091", + "kind": "constant", + "name": "ListAssistantsRequestAccept80", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2092", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21381,13 +22579,29 @@ "decorators": [] }, { - "$id": "2015", + "$id": "2093", "kind": "constant", - "name": "ListAssistantsRequestAccept104", + "name": "ListAssistantsRequestOpenAiBeta42", "namespace": "", "usage": "None", "valueType": { - "$id": "2016", + "$id": "2094", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2095", + "kind": "constant", + "name": "modifyThreadContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2096", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21397,13 +22611,13 @@ "decorators": [] }, { - "$id": "2017", + "$id": "2097", "kind": "constant", - "name": "createVectorStoreFileContentType", + "name": "ListAssistantsRequestAccept81", "namespace": "", "usage": "None", "valueType": { - "$id": "2018", + "$id": "2098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21413,13 +22627,29 @@ "decorators": [] }, { - "$id": "2019", + "$id": "2099", "kind": "constant", - "name": "ListAssistantsRequestAccept105", + "name": "ListAssistantsRequestOpenAiBeta43", "namespace": "", "usage": "None", "valueType": { - "$id": "2020", + "$id": "2100", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2101", + "kind": "constant", + "name": "ListAssistantsRequestAccept82", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2102", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21429,13 +22659,29 @@ "decorators": [] }, { - "$id": "2021", + "$id": "2103", "kind": "constant", - "name": "ListAssistantsRequestAccept106", + "name": "ListAssistantsRequestOpenAiBeta44", "namespace": "", "usage": "None", "valueType": { - "$id": "2022", + "$id": "2104", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2105", + "kind": "constant", + "name": "ListAssistantsRequestAccept83", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21445,13 +22691,29 @@ "decorators": [] }, { - "$id": "2023", + "$id": "2107", "kind": "constant", - "name": "ListAssistantsRequestAccept107", + "name": "ListAssistantsRequestOpenAiBeta45", "namespace": "", "usage": "None", "valueType": { - "$id": "2024", + "$id": "2108", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "assistants=v2", + "decorators": [] + }, + { + "$id": "2109", + "kind": "constant", + "name": "ListAssistantsRequestAccept84", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21461,13 +22723,13 @@ "decorators": [] }, { - "$id": "2025", + "$id": "2111", "kind": "constant", - "name": "ListAssistantsRequestAccept108", + "name": "ListAssistantsRequestAccept85", "namespace": "", "usage": "None", "valueType": { - "$id": "2026", + "$id": "2112", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21477,13 +22739,13 @@ "decorators": [] }, { - "$id": "2027", + "$id": "2113", "kind": "constant", - "name": "ListAssistantsRequestAccept109", + "name": "ListAssistantsRequestAccept86", "namespace": "", "usage": "None", "valueType": { - "$id": "2028", + "$id": "2114", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21493,13 +22755,13 @@ "decorators": [] }, { - "$id": "2029", + "$id": "2115", "kind": "constant", - "name": "updateVectorStoreFileAttributesContentType", + "name": "createVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2030", + "$id": "2116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21509,13 +22771,13 @@ "decorators": [] }, { - "$id": "2031", + "$id": "2117", "kind": "constant", - "name": "updateVectorStoreFileAttributesContentType1", + "name": "ListAssistantsRequestAccept87", "namespace": "", "usage": "None", "valueType": { - "$id": "2032", + "$id": "2118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21525,13 +22787,13 @@ "decorators": [] }, { - "$id": "2033", + "$id": "2119", "kind": "constant", - "name": "retrieveVectorStoreFileContentContentType", + "name": "ListAssistantsRequestAccept88", "namespace": "", "usage": "None", "valueType": { - "$id": "2034", + "$id": "2120", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21541,13 +22803,13 @@ "decorators": [] }, { - "$id": "2035", + "$id": "2121", "kind": "constant", - "name": "searchVectorStoreContentType", + "name": "ListAssistantsRequestAccept89", "namespace": "", "usage": "None", "valueType": { - "$id": "2036", + "$id": "2122", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21557,13 +22819,13 @@ "decorators": [] }, { - "$id": "2037", + "$id": "2123", "kind": "constant", - "name": "searchVectorStoreContentType1", + "name": "ListAssistantsRequestAccept90", "namespace": "", "usage": "None", "valueType": { - "$id": "2038", + "$id": "2124", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21573,13 +22835,13 @@ "decorators": [] }, { - "$id": "2039", + "$id": "2125", "kind": "constant", - "name": "ListAssistantsRequestAccept110", + "name": "modifyVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2040", + "$id": "2126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21589,13 +22851,13 @@ "decorators": [] }, { - "$id": "2041", + "$id": "2127", "kind": "constant", - "name": "createCompletionContentType", + "name": "ListAssistantsRequestAccept91", "namespace": "", "usage": "None", "valueType": { - "$id": "2042", + "$id": "2128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21605,13 +22867,13 @@ "decorators": [] }, { - "$id": "2043", + "$id": "2129", "kind": "constant", - "name": "ListAssistantsRequestAccept111", + "name": "ListAssistantsRequestAccept92", "namespace": "", "usage": "None", "valueType": { - "$id": "2044", + "$id": "2130", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21621,13 +22883,13 @@ "decorators": [] }, { - "$id": "2045", + "$id": "2131", "kind": "constant", - "name": "ListAssistantsRequestAccept112", + "name": "ListAssistantsRequestAccept93", "namespace": "", "usage": "None", "valueType": { - "$id": "2046", + "$id": "2132", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21637,13 +22899,13 @@ "decorators": [] }, { - "$id": "2047", + "$id": "2133", "kind": "constant", - "name": "ListAssistantsRequestAccept113", + "name": "ListAssistantsRequestAccept94", "namespace": "", "usage": "None", "valueType": { - "$id": "2048", + "$id": "2134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21653,13 +22915,13 @@ "decorators": [] }, { - "$id": "2049", + "$id": "2135", "kind": "constant", - "name": "ListAssistantsRequestAccept114", + "name": "createVectorStoreFileBatchContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2050", + "$id": "2136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21669,13 +22931,13 @@ "decorators": [] }, { - "$id": "2051", + "$id": "2137", "kind": "constant", - "name": "ListAssistantsRequestAccept115", + "name": "ListAssistantsRequestAccept95", "namespace": "", "usage": "None", "valueType": { - "$id": "2052", + "$id": "2138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21685,13 +22947,13 @@ "decorators": [] }, { - "$id": "2053", + "$id": "2139", "kind": "constant", - "name": "ListAssistantsRequestAccept116", + "name": "ListAssistantsRequestAccept96", "namespace": "", "usage": "None", "valueType": { - "$id": "2054", + "$id": "2140", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21701,13 +22963,13 @@ "decorators": [] }, { - "$id": "2055", + "$id": "2141", "kind": "constant", - "name": "ListAssistantsRequestAccept117", + "name": "ListAssistantsRequestAccept97", "namespace": "", "usage": "None", "valueType": { - "$id": "2056", + "$id": "2142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21717,29 +22979,29 @@ "decorators": [] }, { - "$id": "2057", + "$id": "2143", "kind": "constant", - "name": "StartRealtimeSessionRequestOpenAiBeta", + "name": "ListAssistantsRequestAccept98", "namespace": "", "usage": "None", "valueType": { - "$id": "2058", + "$id": "2144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "realtime=v1", + "value": "application/json", "decorators": [] }, { - "$id": "2059", + "$id": "2145", "kind": "constant", - "name": "startRealtimeSessionContentType", + "name": "ListAssistantsRequestAccept99", "namespace": "", "usage": "None", "valueType": { - "$id": "2060", + "$id": "2146", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21749,13 +23011,13 @@ "decorators": [] }, { - "$id": "2061", + "$id": "2147", "kind": "constant", - "name": "startRealtimeSessionContentType1", + "name": "ListAssistantsRequestAccept100", "namespace": "", "usage": "None", "valueType": { - "$id": "2062", + "$id": "2148", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21765,29 +23027,29 @@ "decorators": [] }, { - "$id": "2063", + "$id": "2149", "kind": "constant", - "name": "StartRealtimeSessionRequestOpenAiBeta1", + "name": "ListAssistantsRequestAccept101", "namespace": "", "usage": "None", "valueType": { - "$id": "2064", + "$id": "2150", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "realtime=v1", + "value": "application/json", "decorators": [] }, { - "$id": "2065", + "$id": "2151", "kind": "constant", - "name": "createEphemeralTokenContentType", + "name": "ListAssistantsRequestAccept102", "namespace": "", "usage": "None", "valueType": { - "$id": "2066", + "$id": "2152", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21797,13 +23059,13 @@ "decorators": [] }, { - "$id": "2067", + "$id": "2153", "kind": "constant", - "name": "createEphemeralTokenContentType1", + "name": "ListAssistantsRequestAccept103", "namespace": "", "usage": "None", "valueType": { - "$id": "2068", + "$id": "2154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21813,13 +23075,13 @@ "decorators": [] }, { - "$id": "2069", + "$id": "2155", "kind": "constant", - "name": "createEphemeralTranscriptionTokenContentType", + "name": "ListAssistantsRequestAccept104", "namespace": "", "usage": "None", "valueType": { - "$id": "2070", + "$id": "2156", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21829,13 +23091,13 @@ "decorators": [] }, { - "$id": "2071", + "$id": "2157", "kind": "constant", - "name": "createEphemeralTranscriptionTokenContentType1", + "name": "createVectorStoreFileContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2072", + "$id": "2158", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21845,13 +23107,13 @@ "decorators": [] }, { - "$id": "2073", + "$id": "2159", "kind": "constant", - "name": "ListAssistantsRequestAccept118", + "name": "ListAssistantsRequestAccept105", "namespace": "", "usage": "None", "valueType": { - "$id": "2074", + "$id": "2160", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21861,13 +23123,13 @@ "decorators": [] }, { - "$id": "2075", + "$id": "2161", "kind": "constant", - "name": "createUploadContentType", + "name": "ListAssistantsRequestAccept106", "namespace": "", "usage": "None", "valueType": { - "$id": "2076", + "$id": "2162", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21877,13 +23139,13 @@ "decorators": [] }, { - "$id": "2077", + "$id": "2163", "kind": "constant", - "name": "ListAssistantsRequestAccept119", + "name": "ListAssistantsRequestAccept107", "namespace": "", "usage": "None", "valueType": { - "$id": "2078", + "$id": "2164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21893,13 +23155,13 @@ "decorators": [] }, { - "$id": "2079", + "$id": "2165", "kind": "constant", - "name": "ListAssistantsRequestAccept120", + "name": "ListAssistantsRequestAccept108", "namespace": "", "usage": "None", "valueType": { - "$id": "2080", + "$id": "2166", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21909,29 +23171,29 @@ "decorators": [] }, { - "$id": "2081", + "$id": "2167", "kind": "constant", - "name": "CreateTranscriptionRequestContentType12", + "name": "ListAssistantsRequestAccept109", "namespace": "", "usage": "None", "valueType": { - "$id": "2082", + "$id": "2168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "2083", + "$id": "2169", "kind": "constant", - "name": "ListAssistantsRequestAccept121", + "name": "updateVectorStoreFileAttributesContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2084", + "$id": "2170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21941,29 +23203,29 @@ "decorators": [] }, { - "$id": "2085", + "$id": "2171", "kind": "constant", - "name": "CreateTranscriptionRequestContentType13", + "name": "updateVectorStoreFileAttributesContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2086", + "$id": "2172", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, - "value": "multipart/form-data", + "value": "application/json", "decorators": [] }, { - "$id": "2087", + "$id": "2173", "kind": "constant", - "name": "ListAssistantsRequestAccept122", + "name": "retrieveVectorStoreFileContentContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2088", + "$id": "2174", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21973,13 +23235,13 @@ "decorators": [] }, { - "$id": "2089", + "$id": "2175", "kind": "constant", - "name": "completeUploadContentType", + "name": "searchVectorStoreContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2090", + "$id": "2176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -21989,13 +23251,13 @@ "decorators": [] }, { - "$id": "2091", + "$id": "2177", "kind": "constant", - "name": "ListAssistantsRequestAccept123", + "name": "searchVectorStoreContentType1", "namespace": "", "usage": "None", "valueType": { - "$id": "2092", + "$id": "2178", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22005,13 +23267,13 @@ "decorators": [] }, { - "$id": "2093", + "$id": "2179", "kind": "constant", - "name": "ListAssistantsRequestAccept124", + "name": "ListAssistantsRequestAccept110", "namespace": "", "usage": "None", "valueType": { - "$id": "2094", + "$id": "2180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22021,13 +23283,13 @@ "decorators": [] }, { - "$id": "2095", + "$id": "2181", "kind": "constant", - "name": "ListAssistantsRequestAccept125", + "name": "createCompletionContentType", "namespace": "", "usage": "None", "valueType": { - "$id": "2096", + "$id": "2182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22035,25 +23297,457 @@ }, "value": "application/json", "decorators": [] - } - ], - "models": [ + }, { - "$id": "2097", - "kind": "model", - "name": "ListAssistantsResponse", + "$id": "2183", + "kind": "constant", + "name": "ListAssistantsRequestAccept111", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2184", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2185", + "kind": "constant", + "name": "ListAssistantsRequestAccept112", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2186", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2187", + "kind": "constant", + "name": "ListAssistantsRequestAccept113", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2188", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2189", + "kind": "constant", + "name": "ListAssistantsRequestAccept114", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2190", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2191", + "kind": "constant", + "name": "ListAssistantsRequestAccept115", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2192", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2193", + "kind": "constant", + "name": "ListAssistantsRequestAccept116", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2194", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2195", + "kind": "constant", + "name": "ListAssistantsRequestAccept117", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2196", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2197", + "kind": "constant", + "name": "StartRealtimeSessionRequestOpenAiBeta", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2198", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "realtime=v1", + "decorators": [] + }, + { + "$id": "2199", + "kind": "constant", + "name": "startRealtimeSessionContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2200", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2201", + "kind": "constant", + "name": "startRealtimeSessionContentType1", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2202", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2203", + "kind": "constant", + "name": "StartRealtimeSessionRequestOpenAiBeta1", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2204", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "realtime=v1", + "decorators": [] + }, + { + "$id": "2205", + "kind": "constant", + "name": "createEphemeralTokenContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2206", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2207", + "kind": "constant", + "name": "createEphemeralTokenContentType1", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2208", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2209", + "kind": "constant", + "name": "createEphemeralTranscriptionTokenContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2210", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2211", + "kind": "constant", + "name": "createEphemeralTranscriptionTokenContentType1", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2212", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2213", + "kind": "constant", + "name": "ListAssistantsRequestAccept118", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2214", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2215", + "kind": "constant", + "name": "createUploadContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2216", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2217", + "kind": "constant", + "name": "ListAssistantsRequestAccept119", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2218", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2219", + "kind": "constant", + "name": "ListAssistantsRequestAccept120", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2220", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2221", + "kind": "constant", + "name": "CreateTranscriptionRequestContentType12", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2222", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "multipart/form-data", + "decorators": [] + }, + { + "$id": "2223", + "kind": "constant", + "name": "ListAssistantsRequestAccept121", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2224", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2225", + "kind": "constant", + "name": "CreateTranscriptionRequestContentType13", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2226", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "multipart/form-data", + "decorators": [] + }, + { + "$id": "2227", + "kind": "constant", + "name": "ListAssistantsRequestAccept122", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2228", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2229", + "kind": "constant", + "name": "completeUploadContentType", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2230", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2231", + "kind": "constant", + "name": "ListAssistantsRequestAccept123", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2232", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2233", + "kind": "constant", + "name": "ListAssistantsRequestAccept124", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2234", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + }, + { + "$id": "2235", + "kind": "constant", + "name": "ListAssistantsRequestAccept125", + "namespace": "", + "usage": "None", + "valueType": { + "$id": "2236", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "value": "application/json", + "decorators": [] + } + ], + "models": [ + { + "$id": "2237", + "kind": "model", + "name": "ListAssistantsResponse", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ListAssistantsResponse", "usage": "Output,Json", "decorators": [], "properties": [ { - "$id": "2098", + "$id": "2238", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1273" + "$ref": "1413" }, "optional": false, "readOnly": false, @@ -22068,16 +23762,16 @@ } }, { - "$id": "2099", + "$id": "2239", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2100", + "$id": "2240", "kind": "array", "name": "ArrayAssistantObject", "valueType": { - "$id": "2101", + "$id": "2241", "kind": "model", "name": "AssistantObject", "namespace": "OpenAI", @@ -22087,13 +23781,13 @@ "decorators": [], "properties": [ { - "$id": "2102", + "$id": "2242", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "2103", + "$id": "2243", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22112,13 +23806,13 @@ } }, { - "$id": "2104", + "$id": "2244", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `assistant`.", "type": { - "$ref": "1275" + "$ref": "1415" }, "optional": false, "readOnly": false, @@ -22133,18 +23827,18 @@ } }, { - "$id": "2105", + "$id": "2245", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the assistant was created.", "type": { - "$id": "2106", + "$id": "2246", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2107", + "$id": "2247", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -22166,16 +23860,16 @@ } }, { - "$id": "2108", + "$id": "2248", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2109", + "$id": "2249", "kind": "nullable", "type": { - "$id": "2110", + "$id": "2250", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22196,16 +23890,16 @@ } }, { - "$id": "2111", + "$id": "2251", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2112", + "$id": "2252", "kind": "nullable", "type": { - "$id": "2113", + "$id": "2253", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22226,13 +23920,13 @@ } }, { - "$id": "2114", + "$id": "2254", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.", "type": { - "$id": "2115", + "$id": "2255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22251,16 +23945,16 @@ } }, { - "$id": "2116", + "$id": "2256", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2117", + "$id": "2257", "kind": "nullable", "type": { - "$id": "2118", + "$id": "2258", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22281,17 +23975,17 @@ } }, { - "$id": "2119", + "$id": "2259", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`.", "type": { - "$id": "2120", + "$id": "2260", "kind": "array", "name": "ArrayAssistantToolDefinition", "valueType": { - "$id": "2121", + "$id": "2261", "kind": "model", "name": "AssistantToolDefinition", "namespace": "OpenAI", @@ -22299,12 +23993,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "2122", + "$id": "2262", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5" + "$ref": "1" }, "optional": false, "readOnly": false, @@ -22320,12 +24014,12 @@ }, "properties": [ { - "$ref": "2122" + "$ref": "2262" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "2123", + "$id": "2263", "kind": "model", "name": "AssistantToolsCode", "namespace": "OpenAI", @@ -22334,17 +24028,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "2121" + "$ref": "2261" }, "properties": [ { - "$id": "2124", + "$id": "2264", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `code_interpreter`", "type": { - "$ref": "7" + "$ref": "3" }, "optional": false, "readOnly": false, @@ -22361,7 +24055,7 @@ ] }, "file_search": { - "$id": "2125", + "$id": "2265", "kind": "model", "name": "AssistantToolsFileSearch", "namespace": "OpenAI", @@ -22370,17 +24064,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "2121" + "$ref": "2261" }, "properties": [ { - "$id": "2126", + "$id": "2266", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `file_search`", "type": { - "$ref": "8" + "$ref": "4" }, "optional": false, "readOnly": false, @@ -22395,13 +24089,13 @@ } }, { - "$id": "2127", + "$id": "2267", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "Overrides for the file search tool.", "type": { - "$id": "2128", + "$id": "2268", "kind": "model", "name": "AssistantToolsFileSearchFileSearch", "namespace": "OpenAI", @@ -22410,13 +24104,13 @@ "decorators": [], "properties": [ { - "$id": "2129", + "$id": "2269", "kind": "property", "name": "max_num_results", "serializedName": "max_num_results", "doc": "The maximum number of results the file search tool should output. The default is 20 for `gpt-4*` models and 5 for `gpt-3.5-turbo`. This number should be between 1 and 50 inclusive.\n\nNote that the file search tool may output fewer than `max_num_results` results. See the [file search tool documentation](/docs/assistants/tools/file-search#customizing-file-search-settings) for more information.", "type": { - "$id": "2130", + "$id": "2270", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -22435,12 +24129,12 @@ } }, { - "$id": "2131", + "$id": "2271", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "2132", + "$id": "2272", "kind": "model", "name": "FileSearchRankingOptions", "namespace": "OpenAI", @@ -22450,12 +24144,12 @@ "decorators": [], "properties": [ { - "$id": "2133", + "$id": "2273", "kind": "property", "name": "ranker", "serializedName": "ranker", "type": { - "$ref": "10" + "$ref": "6" }, "optional": true, "readOnly": false, @@ -22470,13 +24164,13 @@ } }, { - "$id": "2134", + "$id": "2274", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "doc": "The score threshold for the file search. All values must be a floating point number between 0 and 1.", "type": { - "$id": "2135", + "$id": "2275", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -22525,7 +24219,7 @@ ] }, "function": { - "$id": "2136", + "$id": "2276", "kind": "model", "name": "AssistantToolsFunction", "namespace": "OpenAI", @@ -22534,17 +24228,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "2121" + "$ref": "2261" }, "properties": [ { - "$id": "2137", + "$id": "2277", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `function`", "type": { - "$ref": "9" + "$ref": "5" }, "optional": false, "readOnly": false, @@ -22559,12 +24253,12 @@ } }, { - "$id": "2138", + "$id": "2278", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "2139", + "$id": "2279", "kind": "model", "name": "FunctionObject", "namespace": "OpenAI", @@ -22573,13 +24267,13 @@ "decorators": [], "properties": [ { - "$id": "2140", + "$id": "2280", "kind": "property", "name": "description", "serializedName": "description", "doc": "A description of what the function does, used by the model to choose when and how to call the function.", "type": { - "$id": "2141", + "$id": "2281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22598,13 +24292,13 @@ } }, { - "$id": "2142", + "$id": "2282", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.", "type": { - "$id": "2143", + "$id": "2283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22623,13 +24317,13 @@ } }, { - "$id": "2144", + "$id": "2284", "kind": "property", "name": "parameters", "serializedName": "parameters", "doc": "The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format.\n\nOmitting `parameters` defines a function with an empty parameter list.", "type": { - "$id": "2145", + "$id": "2285", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -22648,16 +24342,16 @@ } }, { - "$id": "2146", + "$id": "2286", "kind": "property", "name": "strict", "serializedName": "strict", "doc": "Whether to enable strict schema adherence when generating the function call. If set to true, the model will follow the exact schema defined in the `parameters` field. Only a subset of JSON Schema is supported when `strict` is `true`. Learn more about Structured Outputs in the [function calling guide](docs/guides/function-calling).", "type": { - "$id": "2147", + "$id": "2287", "kind": "nullable", "type": { - "$id": "2148", + "$id": "2288", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -22711,16 +24405,16 @@ } }, { - "$id": "2149", + "$id": "2289", "kind": "property", "name": "tool_resources", "serializedName": "tool_resources", "doc": "A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs.", "type": { - "$id": "2150", + "$id": "2290", "kind": "nullable", "type": { - "$id": "2151", + "$id": "2291", "kind": "model", "name": "AssistantObjectToolResources1", "namespace": "OpenAI", @@ -22729,12 +24423,12 @@ "decorators": [], "properties": [ { - "$id": "2152", + "$id": "2292", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2153", + "$id": "2293", "kind": "model", "name": "AssistantObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -22743,17 +24437,17 @@ "decorators": [], "properties": [ { - "$id": "2154", + "$id": "2294", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter`` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$id": "2155", + "$id": "2295", "kind": "array", "name": "Array", "valueType": { - "$id": "2156", + "$id": "2296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22789,12 +24483,12 @@ } }, { - "$id": "2157", + "$id": "2297", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "2158", + "$id": "2298", "kind": "model", "name": "ToolResourcesFileSearchIdsOnly", "namespace": "OpenAI", @@ -22803,13 +24497,13 @@ "decorators": [], "properties": [ { - "$id": "2159", + "$id": "2299", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The [vector store](/docs/api-reference/vector-stores/object) attached to this assistant.\nThere can be a maximum of 1 vector store attached to the assistant.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -22854,26 +24548,26 @@ } }, { - "$id": "2160", + "$id": "2300", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$id": "2161", + "$id": "2301", "kind": "nullable", "type": { - "$id": "2162", + "$id": "2302", "kind": "dict", "keyType": { - "$id": "2163", + "$id": "2303", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "2164", + "$id": "2304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -22896,16 +24590,16 @@ } }, { - "$id": "2165", + "$id": "2305", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.", "type": { - "$id": "2166", + "$id": "2306", "kind": "nullable", "type": { - "$id": "2167", + "$id": "2307", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -22926,16 +24620,16 @@ } }, { - "$id": "2168", + "$id": "2308", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.\n\nWe generally recommend altering this or temperature but not both.", "type": { - "$id": "2169", + "$id": "2309", "kind": "nullable", "type": { - "$id": "2170", + "$id": "2310", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -22956,23 +24650,23 @@ } }, { - "$id": "2171", + "$id": "2311", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2172", + "$id": "2312", "kind": "nullable", "type": { - "$id": "2173", + "$id": "2313", "kind": "union", "name": "AssistantsApiResponseFormatOption", "variantTypes": [ { - "$ref": "1277" + "$ref": "1417" }, { - "$id": "2174", + "$id": "2314", "kind": "model", "name": "ResponseFormatText", "namespace": "OpenAI", @@ -22982,7 +24676,7 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$id": "2175", + "$id": "2315", "kind": "model", "name": "ResponseFormat", "namespace": "OpenAI", @@ -22990,12 +24684,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "2176", + "$id": "2316", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "14" + "$ref": "10" }, "optional": false, "readOnly": false, @@ -23011,15 +24705,15 @@ }, "properties": [ { - "$ref": "2176" + "$ref": "2316" } ], "discriminatedSubtypes": { "text": { - "$ref": "2174" + "$ref": "2314" }, "json_object": { - "$id": "2177", + "$id": "2317", "kind": "model", "name": "ResponseFormatJsonObject", "namespace": "OpenAI", @@ -23029,17 +24723,17 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "2175" + "$ref": "2315" }, "properties": [ { - "$id": "2178", + "$id": "2318", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_object`.", "type": { - "$ref": "17" + "$ref": "13" }, "optional": false, "readOnly": false, @@ -23056,7 +24750,7 @@ ] }, "json_schema": { - "$id": "2179", + "$id": "2319", "kind": "model", "name": "ResponseFormatJsonSchema", "namespace": "OpenAI", @@ -23066,17 +24760,17 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "2175" + "$ref": "2315" }, "properties": [ { - "$id": "2180", + "$id": "2320", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_schema`.", "type": { - "$ref": "18" + "$ref": "14" }, "optional": false, "readOnly": false, @@ -23091,13 +24785,13 @@ } }, { - "$id": "2181", + "$id": "2321", "kind": "property", "name": "json_schema", "serializedName": "json_schema", "doc": "Structured Outputs configuration options, including a JSON Schema.", "type": { - "$id": "2182", + "$id": "2322", "kind": "model", "name": "ResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -23106,13 +24800,13 @@ "decorators": [], "properties": [ { - "$id": "2183", + "$id": "2323", "kind": "property", "name": "description", "serializedName": "description", "doc": "A description of what the response format is for, used by the model to\ndetermine how to respond in the format.", "type": { - "$id": "2184", + "$id": "2324", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23131,13 +24825,13 @@ } }, { - "$id": "2185", + "$id": "2325", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the response format. Must be a-z, A-Z, 0-9, or contain\nunderscores and dashes, with a maximum length of 64.", "type": { - "$id": "2186", + "$id": "2326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23156,12 +24850,12 @@ } }, { - "$id": "2187", + "$id": "2327", "kind": "property", "name": "schema", "serializedName": "schema", "type": { - "$id": "2188", + "$id": "2328", "kind": "model", "name": "ResponseFormatJsonSchemaSchema", "namespace": "OpenAI", @@ -23170,7 +24864,7 @@ "doc": "The schema for the response format, described as a JSON Schema object.\nLearn how to build JSON schemas [here](https://json-schema.org/).", "decorators": [], "additionalProperties": { - "$id": "2189", + "$id": "2329", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -23191,16 +24885,16 @@ } }, { - "$id": "2190", + "$id": "2330", "kind": "property", "name": "strict", "serializedName": "strict", "doc": "Whether to enable strict schema adherence when generating the output.\nIf set to true, the model will always follow the exact schema defined\nin the `schema` field. Only a subset of JSON Schema is supported when\n`strict` is `true`. To learn more, read the [Structured Outputs\nguide](/docs/guides/structured-outputs).", "type": { - "$id": "2191", + "$id": "2331", "kind": "nullable", "type": { - "$id": "2192", + "$id": "2332", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -23240,21 +24934,21 @@ }, "properties": [ { - "$id": "2193", + "$id": "2333", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$id": "2194", + "$id": "2334", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "15" + "$ref": "11" }, "enumType": { - "$ref": "14" + "$ref": "10" }, "decorators": [] }, @@ -23273,10 +24967,10 @@ ] }, { - "$ref": "2177" + "$ref": "2317" }, { - "$ref": "2179" + "$ref": "2319" } ], "namespace": "OpenAI", @@ -23314,12 +25008,12 @@ } }, { - "$id": "2195", + "$id": "2335", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "2196", + "$id": "2336", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23338,12 +25032,12 @@ } }, { - "$id": "2197", + "$id": "2337", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "2198", + "$id": "2338", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23362,12 +25056,12 @@ } }, { - "$id": "2199", + "$id": "2339", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "2200", + "$id": "2340", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -23388,58 +25082,58 @@ ] }, { - "$ref": "2101" + "$ref": "2241" }, { - "$ref": "2121" + "$ref": "2261" }, { - "$ref": "2123" + "$ref": "2263" }, { - "$ref": "2125" + "$ref": "2265" }, { - "$ref": "2128" + "$ref": "2268" }, { - "$ref": "2132" + "$ref": "2272" }, { - "$ref": "2136" + "$ref": "2276" }, { - "$ref": "2139" + "$ref": "2279" }, { - "$ref": "2151" + "$ref": "2291" }, { - "$ref": "2153" + "$ref": "2293" }, { - "$ref": "2158" + "$ref": "2298" }, { - "$ref": "2174" + "$ref": "2314" }, { - "$ref": "2175" + "$ref": "2315" }, { - "$ref": "2177" + "$ref": "2317" }, { - "$ref": "2179" + "$ref": "2319" }, { - "$ref": "2182" + "$ref": "2322" }, { - "$ref": "2188" + "$ref": "2328" }, { - "$id": "2201", + "$id": "2341", "kind": "model", "name": "ErrorResponse", "namespace": "OpenAI", @@ -23448,12 +25142,12 @@ "decorators": [], "properties": [ { - "$id": "2202", + "$id": "2342", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "2203", + "$id": "2343", "kind": "model", "name": "Error", "namespace": "OpenAI", @@ -23462,15 +25156,15 @@ "decorators": [], "properties": [ { - "$id": "2204", + "$id": "2344", "kind": "property", "name": "code", "serializedName": "code", "type": { - "$id": "2205", + "$id": "2345", "kind": "nullable", "type": { - "$id": "2206", + "$id": "2346", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23491,12 +25185,12 @@ } }, { - "$id": "2207", + "$id": "2347", "kind": "property", "name": "message", "serializedName": "message", "type": { - "$id": "2208", + "$id": "2348", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23515,15 +25209,15 @@ } }, { - "$id": "2209", + "$id": "2349", "kind": "property", "name": "param", "serializedName": "param", "type": { - "$id": "2210", + "$id": "2350", "kind": "nullable", "type": { - "$id": "2211", + "$id": "2351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23544,12 +25238,12 @@ } }, { - "$id": "2212", + "$id": "2352", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "2213", + "$id": "2353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23584,10 +25278,10 @@ ] }, { - "$ref": "2203" + "$ref": "2343" }, { - "$id": "2214", + "$id": "2354", "kind": "model", "name": "CreateAssistantRequest", "namespace": "OpenAI", @@ -23596,13 +25290,13 @@ "decorators": [], "properties": [ { - "$id": "2215", + "$id": "2355", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.", "type": { - "$ref": "19" + "$ref": "15" }, "optional": false, "readOnly": false, @@ -23617,16 +25311,16 @@ } }, { - "$id": "2216", + "$id": "2356", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2217", + "$id": "2357", "kind": "nullable", "type": { - "$id": "2218", + "$id": "2358", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23647,16 +25341,16 @@ } }, { - "$id": "2219", + "$id": "2359", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2220", + "$id": "2360", "kind": "nullable", "type": { - "$id": "2221", + "$id": "2361", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23677,16 +25371,16 @@ } }, { - "$id": "2222", + "$id": "2362", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2223", + "$id": "2363", "kind": "nullable", "type": { - "$id": "2224", + "$id": "2364", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -23707,15 +25401,15 @@ } }, { - "$id": "2225", + "$id": "2365", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2226", + "$id": "2366", "kind": "nullable", "type": { - "$ref": "57" + "$ref": "53" }, "namespace": "" }, @@ -23732,13 +25426,13 @@ } }, { - "$id": "2227", + "$id": "2367", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`.", "type": { - "$ref": "2120" + "$ref": "2260" }, "optional": true, "readOnly": false, @@ -23753,16 +25447,16 @@ } }, { - "$id": "2228", + "$id": "2368", "kind": "property", "name": "tool_resources", "serializedName": "tool_resources", "doc": "A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs.", "type": { - "$id": "2229", + "$id": "2369", "kind": "nullable", "type": { - "$id": "2230", + "$id": "2370", "kind": "model", "name": "CreateAssistantRequestToolResources1", "namespace": "OpenAI", @@ -23771,12 +25465,12 @@ "decorators": [], "properties": [ { - "$id": "2231", + "$id": "2371", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2232", + "$id": "2372", "kind": "model", "name": "CreateAssistantRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -23785,13 +25479,13 @@ "decorators": [], "properties": [ { - "$id": "2233", + "$id": "2373", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -23820,12 +25514,12 @@ } }, { - "$id": "2234", + "$id": "2374", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "2235", + "$id": "2375", "kind": "model", "name": "ToolResourcesFileSearch", "namespace": "OpenAI", @@ -23834,13 +25528,13 @@ "decorators": [], "properties": [ { - "$id": "2236", + "$id": "2376", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The [vector store](/docs/api-reference/vector-stores/object) attached to this assistant.\nThere can be a maximum of 1 vector store attached to the assistant.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -23855,17 +25549,17 @@ } }, { - "$id": "2237", + "$id": "2377", "kind": "property", "name": "vector_stores", "serializedName": "vector_stores", "doc": "A helper to create a [vector store](/docs/api-reference/vector-stores/object) with\nfile_ids and attach it to this assistant. There can be a maximum of 1 vector store\nattached to the assistant.", "type": { - "$id": "2238", + "$id": "2378", "kind": "array", "name": "Array1", "valueType": { - "$id": "2239", + "$id": "2379", "kind": "model", "name": "ToolResourcesFileSearchVectorStore", "namespace": "OpenAI", @@ -23874,13 +25568,13 @@ "decorators": [], "properties": [ { - "$id": "2240", + "$id": "2380", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs to add to the vector store. There can be\na maximum of 10000 files in a vector store.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -23895,13 +25589,13 @@ } }, { - "$id": "2241", + "$id": "2381", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy. Only applicable if `file_ids` is non-empty.", "type": { - "$id": "2242", + "$id": "2382", "kind": "model", "name": "ChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -23910,13 +25604,13 @@ "doc": "The chunking strategy used to chunk the file(s). If not set, will use the `auto` strategy.", "decorators": [], "discriminatorProperty": { - "$id": "2243", + "$id": "2383", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of chunking strategy.", "type": { - "$ref": "62" + "$ref": "58" }, "optional": false, "readOnly": false, @@ -23932,12 +25626,12 @@ }, "properties": [ { - "$ref": "2243" + "$ref": "2383" } ], "discriminatedSubtypes": { "auto": { - "$id": "2244", + "$id": "2384", "kind": "model", "name": "AutoChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -23947,17 +25641,17 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "2242" + "$ref": "2382" }, "properties": [ { - "$id": "2245", + "$id": "2385", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `auto`.", "type": { - "$ref": "64" + "$ref": "60" }, "optional": false, "readOnly": false, @@ -23974,7 +25668,7 @@ ] }, "static": { - "$id": "2246", + "$id": "2386", "kind": "model", "name": "StaticChunkingStrategyRequestParam", "namespace": "OpenAI", @@ -23984,17 +25678,17 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "2242" + "$ref": "2382" }, "properties": [ { - "$id": "2247", + "$id": "2387", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$ref": "65" + "$ref": "61" }, "optional": false, "readOnly": false, @@ -24009,12 +25703,12 @@ } }, { - "$id": "2248", + "$id": "2388", "kind": "property", "name": "static", "serializedName": "static", "type": { - "$id": "2249", + "$id": "2389", "kind": "model", "name": "StaticChunkingStrategy", "namespace": "OpenAI", @@ -24023,13 +25717,13 @@ "decorators": [], "properties": [ { - "$id": "2250", + "$id": "2390", "kind": "property", "name": "max_chunk_size_tokens", "serializedName": "max_chunk_size_tokens", "doc": "The maximum number of tokens in each chunk. The default value is `800`. The minimum value is `100` and the maximum value is `4096`.", "type": { - "$id": "2251", + "$id": "2391", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -24048,13 +25742,13 @@ } }, { - "$id": "2252", + "$id": "2392", "kind": "property", "name": "chunk_overlap_tokens", "serializedName": "chunk_overlap_tokens", "doc": "The number of tokens that overlap between chunks. The default value is `400`.\n\nNote that the overlap must not exceed half of `max_chunk_size_tokens`.", "type": { - "$id": "2253", + "$id": "2393", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -24103,13 +25797,13 @@ } }, { - "$id": "2254", + "$id": "2394", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -24171,13 +25865,13 @@ } }, { - "$id": "2255", + "$id": "2395", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -24192,16 +25886,16 @@ } }, { - "$id": "2256", + "$id": "2396", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.", "type": { - "$id": "2257", + "$id": "2397", "kind": "nullable", "type": { - "$id": "2258", + "$id": "2398", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -24222,16 +25916,16 @@ } }, { - "$id": "2259", + "$id": "2399", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.\n\nWe generally recommend altering this or temperature but not both.", "type": { - "$id": "2260", + "$id": "2400", "kind": "nullable", "type": { - "$id": "2261", + "$id": "2401", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -24252,15 +25946,15 @@ } }, { - "$id": "2262", + "$id": "2402", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2263", + "$id": "2403", "kind": "nullable", "type": { - "$ref": "2173" + "$ref": "2313" }, "namespace": "" }, @@ -24279,31 +25973,31 @@ ] }, { - "$ref": "2230" + "$ref": "2370" }, { - "$ref": "2232" + "$ref": "2372" }, { - "$ref": "2235" + "$ref": "2375" }, { - "$ref": "2239" + "$ref": "2379" }, { - "$ref": "2242" + "$ref": "2382" }, { - "$ref": "2244" + "$ref": "2384" }, { - "$ref": "2246" + "$ref": "2386" }, { - "$ref": "2249" + "$ref": "2389" }, { - "$id": "2264", + "$id": "2404", "kind": "model", "name": "ModifyAssistantRequest", "namespace": "OpenAI", @@ -24312,13 +26006,13 @@ "decorators": [], "properties": [ { - "$id": "2265", + "$id": "2405", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.", "type": { - "$ref": "19" + "$ref": "15" }, "optional": true, "readOnly": false, @@ -24333,15 +26027,15 @@ } }, { - "$id": "2266", + "$id": "2406", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2267", + "$id": "2407", "kind": "nullable", "type": { - "$ref": "57" + "$ref": "53" }, "namespace": "" }, @@ -24358,16 +26052,16 @@ } }, { - "$id": "2268", + "$id": "2408", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the assistant. The maximum length is 256 characters.", "type": { - "$id": "2269", + "$id": "2409", "kind": "nullable", "type": { - "$id": "2270", + "$id": "2410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24388,16 +26082,16 @@ } }, { - "$id": "2271", + "$id": "2411", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the assistant. The maximum length is 512 characters.", "type": { - "$id": "2272", + "$id": "2412", "kind": "nullable", "type": { - "$id": "2273", + "$id": "2413", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24418,16 +26112,16 @@ } }, { - "$id": "2274", + "$id": "2414", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The system instructions that the assistant uses. The maximum length is 256,000 characters.", "type": { - "$id": "2275", + "$id": "2415", "kind": "nullable", "type": { - "$id": "2276", + "$id": "2416", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24448,13 +26142,13 @@ } }, { - "$id": "2277", + "$id": "2417", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tool enabled on the assistant. There can be a maximum of 128 tools per assistant. Tools can be of types `code_interpreter`, `file_search`, or `function`.", "type": { - "$ref": "2120" + "$ref": "2260" }, "optional": true, "readOnly": false, @@ -24469,16 +26163,16 @@ } }, { - "$id": "2278", + "$id": "2418", "kind": "property", "name": "tool_resources", "serializedName": "tool_resources", "doc": "A set of resources that are used by the assistant's tools. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs.", "type": { - "$id": "2279", + "$id": "2419", "kind": "nullable", "type": { - "$id": "2280", + "$id": "2420", "kind": "model", "name": "ModifyAssistantRequestToolResources1", "namespace": "OpenAI", @@ -24487,12 +26181,12 @@ "decorators": [], "properties": [ { - "$id": "2281", + "$id": "2421", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "2282", + "$id": "2422", "kind": "model", "name": "ModifyAssistantRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -24501,13 +26195,13 @@ "decorators": [], "properties": [ { - "$id": "2283", + "$id": "2423", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "Overrides the list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -24536,12 +26230,12 @@ } }, { - "$id": "2284", + "$id": "2424", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2158" + "$ref": "2298" }, "optional": true, "readOnly": false, @@ -24572,13 +26266,13 @@ } }, { - "$id": "2285", + "$id": "2425", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -24593,16 +26287,16 @@ } }, { - "$id": "2286", + "$id": "2426", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.", "type": { - "$id": "2287", + "$id": "2427", "kind": "nullable", "type": { - "$id": "2288", + "$id": "2428", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -24623,16 +26317,16 @@ } }, { - "$id": "2289", + "$id": "2429", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered.\n\nWe generally recommend altering this or temperature but not both.", "type": { - "$id": "2290", + "$id": "2430", "kind": "nullable", "type": { - "$id": "2291", + "$id": "2431", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -24653,15 +26347,15 @@ } }, { - "$id": "2292", + "$id": "2432", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "2293", + "$id": "2433", "kind": "nullable", "type": { - "$ref": "2173" + "$ref": "2313" }, "namespace": "" }, @@ -24680,13 +26374,13 @@ ] }, { - "$ref": "2280" + "$ref": "2420" }, { - "$ref": "2282" + "$ref": "2422" }, { - "$id": "2294", + "$id": "2434", "kind": "model", "name": "DeleteAssistantResponse", "namespace": "OpenAI", @@ -24695,12 +26389,12 @@ "decorators": [], "properties": [ { - "$id": "2295", + "$id": "2435", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "2296", + "$id": "2436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24719,12 +26413,12 @@ } }, { - "$id": "2297", + "$id": "2437", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "2298", + "$id": "2438", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -24743,12 +26437,12 @@ } }, { - "$id": "2299", + "$id": "2439", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1279" + "$ref": "1419" }, "optional": false, "readOnly": false, @@ -24765,7 +26459,7 @@ ] }, { - "$id": "2300", + "$id": "2440", "kind": "model", "name": "CreateSpeechRequest", "namespace": "OpenAI", @@ -24774,13 +26468,13 @@ "decorators": [], "properties": [ { - "$id": "2301", + "$id": "2441", "kind": "property", "name": "model", "serializedName": "model", "doc": "One of the available [TTS models](/docs/models#tts): `tts-1`, `tts-1-hd` or `gpt-4o-mini-tts`.", "type": { - "$ref": "66" + "$ref": "62" }, "optional": false, "readOnly": false, @@ -24795,13 +26489,13 @@ } }, { - "$id": "2302", + "$id": "2442", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text to generate audio for. The maximum length is 4096 characters.", "type": { - "$id": "2303", + "$id": "2443", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24820,13 +26514,13 @@ } }, { - "$id": "2304", + "$id": "2444", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "Control the voice of your generated audio with additional instructions. Does not work with `tts-1` or `tts-1-hd`.", "type": { - "$id": "2305", + "$id": "2445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -24845,13 +26539,13 @@ } }, { - "$id": "2306", + "$id": "2446", "kind": "property", "name": "voice", "serializedName": "voice", "doc": "The voice to use when generating the audio. Supported voices are `alloy`, `ash`, `ballad`, `coral`, `echo`, `fable`, `onyx`, `nova`, `sage`, `shimmer`, and `verse`. Previews of the voices are available in the [Text to speech guide](/docs/guides/text-to-speech#voice-options).", "type": { - "$ref": "71" + "$ref": "67" }, "optional": false, "readOnly": false, @@ -24866,13 +26560,13 @@ } }, { - "$id": "2307", + "$id": "2447", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "The format to audio in. Supported formats are `mp3`, `opus`, `aac`, `flac`, `wav`, and `pcm`.", "type": { - "$ref": "84" + "$ref": "80" }, "optional": true, "readOnly": false, @@ -24887,13 +26581,13 @@ } }, { - "$id": "2308", + "$id": "2448", "kind": "property", "name": "speed", "serializedName": "speed", "doc": "The speed of the generated audio. Select a value from `0.25` to `4.0`. `1.0` is the default. Does not work with `gpt-4o-mini-tts`.", "type": { - "$id": "2309", + "$id": "2449", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -24914,7 +26608,7 @@ ] }, { - "$id": "2310", + "$id": "2450", "kind": "model", "name": "CreateTranscriptionRequest", "namespace": "OpenAI", @@ -24923,13 +26617,13 @@ "decorators": [], "properties": [ { - "$id": "2311", + "$id": "2451", "kind": "property", "name": "file", "serializedName": "file", "doc": "The audio file object (not file name) to transcribe, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.", "type": { - "$id": "2312", + "$id": "2452", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -24949,19 +26643,18 @@ "defaultContentTypes": [ "application/octet-stream" ], - "name": "file", - "headers": [] + "name": "file" } } }, { - "$id": "2313", + "$id": "2453", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. The options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, and `whisper-1` (which is powered by our open source Whisper V2 model).", "type": { - "$ref": "96" + "$ref": "88" }, "optional": false, "readOnly": false, @@ -24976,19 +26669,18 @@ "defaultContentTypes": [ "text/plain" ], - "name": "model", - "headers": [] + "name": "model" } } }, { - "$id": "2314", + "$id": "2454", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio. Supplying the input language in [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format will improve accuracy and latency.", "type": { - "$id": "2315", + "$id": "2455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25007,19 +26699,18 @@ "defaultContentTypes": [ "text/plain" ], - "name": "language", - "headers": [] + "name": "language" } } }, { - "$id": "2316", + "$id": "2456", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should match the audio language.", "type": { - "$id": "2317", + "$id": "2457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25038,18 +26729,17 @@ "defaultContentTypes": [ "text/plain" ], - "name": "prompt", - "headers": [] + "name": "prompt" } } }, { - "$id": "2318", + "$id": "2458", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$ref": "101" + "$ref": "93" }, "optional": true, "readOnly": false, @@ -25064,24 +26754,23 @@ "defaultContentTypes": [ "text/plain" ], - "name": "response_format", - "headers": [] + "name": "response_format" } } }, { - "$id": "2319", + "$id": "2459", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit.", "type": { - "$id": "2320", + "$id": "2460", "kind": "float32", "name": "ZeroOrOneFloat", "crossLanguageDefinitionId": "OpenAI.ZeroOrOneFloat", "baseType": { - "$id": "2321", + "$id": "2461", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25102,23 +26791,22 @@ "defaultContentTypes": [ "text/plain" ], - "name": "temperature", - "headers": [] + "name": "temperature" } } }, { - "$id": "2322", + "$id": "2462", "kind": "property", "name": "include[]", "serializedName": "include[]", "doc": "Additional information to include in the transcription response.\n`logprobs` will return the log probabilities of the tokens in the\nresponse to understand the model's confidence in the transcription.\n`logprobs` only works with response_format set to `json` and only with\nthe models `gpt-4o-transcribe` and `gpt-4o-mini-transcribe`.", "type": { - "$id": "2323", + "$id": "2463", "kind": "array", "name": "ArrayTranscriptionInclude", "valueType": { - "$ref": "108" + "$ref": "100" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -25136,23 +26824,22 @@ "defaultContentTypes": [ "application/json" ], - "name": "include[]", - "headers": [] + "name": "include[]" } } }, { - "$id": "2324", + "$id": "2464", "kind": "property", "name": "timestamp_granularities[]", "serializedName": "timestamp_granularities[]", "doc": "The timestamp granularities to populate for this transcription. `response_format` must be set `verbose_json` to use timestamp granularities. Either or both of these options are supported: `word`, or `segment`. Note: There is no additional latency for segment timestamps, but generating word timestamps incurs additional latency.", "type": { - "$id": "2325", + "$id": "2465", "kind": "array", "name": "Array2", "valueType": { - "$ref": "111" + "$ref": "103" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -25170,22 +26857,21 @@ "defaultContentTypes": [ "application/json" ], - "name": "timestamp_granularities[]", - "headers": [] + "name": "timestamp_granularities[]" } } }, { - "$id": "2326", + "$id": "2466", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If set to true, the model response data will be streamed to the client\nas it is generated using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).\nSee the [Streaming section of the Speech-to-Text guide](/docs/guides/speech-to-text?lang=curl#streaming-transcriptions)\nfor more information.\n\nNote: Streaming is not supported for the `whisper-1` model and will be ignored.", "type": { - "$id": "2327", + "$id": "2467", "kind": "nullable", "type": { - "$id": "2328", + "$id": "2468", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -25206,22 +26892,21 @@ "defaultContentTypes": [ "application/json" ], - "name": "stream", - "headers": [] + "name": "stream" } } }, { - "$id": "2329", + "$id": "2469", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "Controls how the audio is cut into chunks. When set to `\"auto\"`, the server first normalizes loudness and then uses voice activity detection (VAD) to choose boundaries. `server_vad` object can be provided to tweak VAD detection parameters manually. If unset, the audio is transcribed as a single block.", "type": { - "$id": "2330", + "$id": "2470", "kind": "nullable", "type": { - "$id": "2331", + "$id": "2471", "kind": "model", "name": "VadConfig", "namespace": "OpenAI", @@ -25230,13 +26915,13 @@ "decorators": [], "properties": [ { - "$id": "2332", + "$id": "2472", "kind": "property", "name": "type", "serializedName": "type", "doc": "Must be set to `server_vad` to enable manual chunking using server side VAD.", "type": { - "$ref": "1281" + "$ref": "1421" }, "optional": false, "readOnly": false, @@ -25247,13 +26932,13 @@ "serializationOptions": {} }, { - "$id": "2333", + "$id": "2473", "kind": "property", "name": "prefix_padding_ms", "serializedName": "prefix_padding_ms", "doc": "Amount of audio to include before the VAD detected speech (in\nmilliseconds).", "type": { - "$id": "2334", + "$id": "2474", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -25268,13 +26953,13 @@ "serializationOptions": {} }, { - "$id": "2335", + "$id": "2475", "kind": "property", "name": "silence_duration_ms", "serializedName": "silence_duration_ms", "doc": "Duration of silence to detect speech stop (in milliseconds).\nWith shorter values the model will respond more quickly,\nbut may jump in on short pauses from the user.", "type": { - "$id": "2336", + "$id": "2476", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -25289,13 +26974,13 @@ "serializationOptions": {} }, { - "$id": "2337", + "$id": "2477", "kind": "property", "name": "threshold", "serializedName": "threshold", "doc": "Sensitivity threshold (0.0 to 1.0) for voice activity detection. A\nhigher threshold will require louder audio to activate the model, and\nthus might perform better in noisy environments.", "type": { - "$id": "2338", + "$id": "2478", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25326,18 +27011,17 @@ "defaultContentTypes": [ "application/json" ], - "name": "chunking_strategy", - "headers": [] + "name": "chunking_strategy" } } } ] }, { - "$ref": "2331" + "$ref": "2471" }, { - "$id": "2339", + "$id": "2479", "kind": "model", "name": "CreateTranscriptionResponseVerboseJson", "namespace": "OpenAI", @@ -25347,13 +27031,13 @@ "decorators": [], "properties": [ { - "$id": "2340", + "$id": "2480", "kind": "property", "name": "task", "serializedName": "task", "doc": "The task label.", "type": { - "$ref": "1283" + "$ref": "1423" }, "optional": false, "readOnly": false, @@ -25368,13 +27052,13 @@ } }, { - "$id": "2341", + "$id": "2481", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio.", "type": { - "$id": "2342", + "$id": "2482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25393,18 +27077,18 @@ } }, { - "$id": "2343", + "$id": "2483", "kind": "property", "name": "duration", "serializedName": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "2344", + "$id": "2484", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2345", + "$id": "2485", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25426,13 +27110,13 @@ } }, { - "$id": "2346", + "$id": "2486", "kind": "property", "name": "text", "serializedName": "text", "doc": "The transcribed text.", "type": { - "$id": "2347", + "$id": "2487", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25451,17 +27135,17 @@ } }, { - "$id": "2348", + "$id": "2488", "kind": "property", "name": "words", "serializedName": "words", "doc": "Extracted words and their corresponding timestamps.", "type": { - "$id": "2349", + "$id": "2489", "kind": "array", "name": "ArrayTranscriptionWord", "valueType": { - "$id": "2350", + "$id": "2490", "kind": "model", "name": "TranscriptionWord", "namespace": "OpenAI", @@ -25470,13 +27154,13 @@ "decorators": [], "properties": [ { - "$id": "2351", + "$id": "2491", "kind": "property", "name": "word", "serializedName": "word", "doc": "The text content of the word.", "type": { - "$id": "2352", + "$id": "2492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25495,18 +27179,18 @@ } }, { - "$id": "2353", + "$id": "2493", "kind": "property", "name": "start", "serializedName": "start", "doc": "Start time of the word in seconds.", "type": { - "$id": "2354", + "$id": "2494", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2355", + "$id": "2495", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25528,18 +27212,18 @@ } }, { - "$id": "2356", + "$id": "2496", "kind": "property", "name": "end", "serializedName": "end", "doc": "End time of the word in seconds.", "type": { - "$id": "2357", + "$id": "2497", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2358", + "$id": "2498", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25578,17 +27262,17 @@ } }, { - "$id": "2359", + "$id": "2499", "kind": "property", "name": "segments", "serializedName": "segments", "doc": "Segments of the transcribed text and their corresponding details.", "type": { - "$id": "2360", + "$id": "2500", "kind": "array", "name": "ArrayTranscriptionSegment", "valueType": { - "$id": "2361", + "$id": "2501", "kind": "model", "name": "TranscriptionSegment", "namespace": "OpenAI", @@ -25597,13 +27281,13 @@ "decorators": [], "properties": [ { - "$id": "2362", + "$id": "2502", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier of the segment.", "type": { - "$id": "2363", + "$id": "2503", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -25622,13 +27306,13 @@ } }, { - "$id": "2364", + "$id": "2504", "kind": "property", "name": "seek", "serializedName": "seek", "doc": "Seek offset of the segment.", "type": { - "$id": "2365", + "$id": "2505", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -25647,18 +27331,18 @@ } }, { - "$id": "2366", + "$id": "2506", "kind": "property", "name": "start", "serializedName": "start", "doc": "Start time of the segment in seconds.", "type": { - "$id": "2367", + "$id": "2507", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2368", + "$id": "2508", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25680,18 +27364,18 @@ } }, { - "$id": "2369", + "$id": "2509", "kind": "property", "name": "end", "serializedName": "end", "doc": "End time of the segment in seconds.", "type": { - "$id": "2370", + "$id": "2510", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2371", + "$id": "2511", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25713,13 +27397,13 @@ } }, { - "$id": "2372", + "$id": "2512", "kind": "property", "name": "text", "serializedName": "text", "doc": "Text content of the segment.", "type": { - "$id": "2373", + "$id": "2513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25738,17 +27422,17 @@ } }, { - "$id": "2374", + "$id": "2514", "kind": "property", "name": "tokens", "serializedName": "tokens", "doc": "Array of token IDs for the text content.", "type": { - "$id": "2375", + "$id": "2515", "kind": "array", "name": "Array3", "valueType": { - "$id": "2376", + "$id": "2516", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -25770,13 +27454,13 @@ } }, { - "$id": "2377", + "$id": "2517", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Temperature parameter used for generating the segment.", "type": { - "$id": "2378", + "$id": "2518", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25795,13 +27479,13 @@ } }, { - "$id": "2379", + "$id": "2519", "kind": "property", "name": "avg_logprob", "serializedName": "avg_logprob", "doc": "Average logprob of the segment. If the value is lower than -1, consider the logprobs failed.", "type": { - "$id": "2380", + "$id": "2520", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25820,13 +27504,13 @@ } }, { - "$id": "2381", + "$id": "2521", "kind": "property", "name": "compression_ratio", "serializedName": "compression_ratio", "doc": "Compression ratio of the segment. If the value is greater than 2.4, consider the compression failed.", "type": { - "$id": "2382", + "$id": "2522", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25845,13 +27529,13 @@ } }, { - "$id": "2383", + "$id": "2523", "kind": "property", "name": "no_speech_prob", "serializedName": "no_speech_prob", "doc": "Probability of no speech in the segment. If the value is higher than 1.0 and the `avg_logprob` is below -1, consider this segment silent.", "type": { - "$id": "2384", + "$id": "2524", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25889,13 +27573,13 @@ ] }, { - "$ref": "2350" + "$ref": "2490" }, { - "$ref": "2361" + "$ref": "2501" }, { - "$id": "2385", + "$id": "2525", "kind": "model", "name": "CreateTranscriptionResponseJson", "namespace": "OpenAI", @@ -25905,13 +27589,13 @@ "decorators": [], "properties": [ { - "$id": "2386", + "$id": "2526", "kind": "property", "name": "text", "serializedName": "text", "doc": "The transcribed text.", "type": { - "$id": "2387", + "$id": "2527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25930,17 +27614,17 @@ } }, { - "$id": "2388", + "$id": "2528", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the tokens in the transcription. Only returned with the models `gpt-4o-transcribe` and `gpt-4o-mini-transcribe` if `logprobs` is added to the `include` array.", "type": { - "$id": "2389", + "$id": "2529", "kind": "array", "name": "Array4", "valueType": { - "$id": "2390", + "$id": "2530", "kind": "model", "name": "CreateTranscriptionResponseJsonLogprob", "namespace": "OpenAI", @@ -25949,13 +27633,13 @@ "decorators": [], "properties": [ { - "$id": "2391", + "$id": "2531", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token in the transcription.", "type": { - "$id": "2392", + "$id": "2532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -25974,13 +27658,13 @@ } }, { - "$id": "2393", + "$id": "2533", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2394", + "$id": "2534", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -25999,17 +27683,17 @@ } }, { - "$id": "2395", + "$id": "2535", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The bytes of the token.", "type": { - "$id": "2396", + "$id": "2536", "kind": "array", "name": "Array5", "valueType": { - "$id": "2397", + "$id": "2537", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26050,10 +27734,10 @@ ] }, { - "$ref": "2390" + "$ref": "2530" }, { - "$id": "2398", + "$id": "2538", "kind": "model", "name": "CreateTranscriptionResponseStreamEvent", "namespace": "OpenAI", @@ -26061,12 +27745,12 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "2399", + "$id": "2539", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "115" + "$ref": "107" }, "optional": false, "readOnly": false, @@ -26078,12 +27762,12 @@ }, "properties": [ { - "$ref": "2399" + "$ref": "2539" } ], "discriminatedSubtypes": { "transcript.text.delta": { - "$id": "2400", + "$id": "2540", "kind": "model", "name": "TranscriptTextDeltaEvent", "namespace": "OpenAI", @@ -26093,17 +27777,17 @@ "discriminatorValue": "transcript.text.delta", "decorators": [], "baseModel": { - "$ref": "2398" + "$ref": "2538" }, "properties": [ { - "$id": "2401", + "$id": "2541", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `transcript.text.delta`.", "type": { - "$ref": "117" + "$ref": "109" }, "optional": false, "readOnly": false, @@ -26114,13 +27798,13 @@ "serializationOptions": {} }, { - "$id": "2402", + "$id": "2542", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was additionally transcribed.", "type": { - "$id": "2403", + "$id": "2543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26135,17 +27819,17 @@ "serializationOptions": {} }, { - "$id": "2404", + "$id": "2544", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the delta. Only included if you [create a transcription](/docs/api-reference/audio/create-transcription) with the `include[]` parameter set to `logprobs`.", "type": { - "$id": "2405", + "$id": "2545", "kind": "array", "name": "Array6", "valueType": { - "$id": "2406", + "$id": "2546", "kind": "model", "name": "TranscriptTextDeltaEventLogprob", "namespace": "OpenAI", @@ -26154,13 +27838,13 @@ "decorators": [], "properties": [ { - "$id": "2407", + "$id": "2547", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "2408", + "$id": "2548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26175,13 +27859,13 @@ "serializationOptions": {} }, { - "$id": "2409", + "$id": "2549", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2410", + "$id": "2550", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26196,13 +27880,13 @@ "serializationOptions": {} }, { - "$id": "2411", + "$id": "2551", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2375" + "$ref": "2515" }, "optional": true, "readOnly": false, @@ -26228,7 +27912,7 @@ ] }, "transcript.text.done": { - "$id": "2412", + "$id": "2552", "kind": "model", "name": "TranscriptTextDoneEvent", "namespace": "OpenAI", @@ -26238,17 +27922,17 @@ "discriminatorValue": "transcript.text.done", "decorators": [], "baseModel": { - "$ref": "2398" + "$ref": "2538" }, "properties": [ { - "$id": "2413", + "$id": "2553", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `transcript.text.done`.", "type": { - "$ref": "118" + "$ref": "110" }, "optional": false, "readOnly": false, @@ -26259,13 +27943,13 @@ "serializationOptions": {} }, { - "$id": "2414", + "$id": "2554", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text that was transcribed.", "type": { - "$id": "2415", + "$id": "2555", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26280,17 +27964,17 @@ "serializationOptions": {} }, { - "$id": "2416", + "$id": "2556", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the individual tokens in the transcription. Only included if you [create a transcription](/docs/api-reference/audio/create-transcription) with the `include[]` parameter set to `logprobs`.", "type": { - "$id": "2417", + "$id": "2557", "kind": "array", "name": "Array7", "valueType": { - "$id": "2418", + "$id": "2558", "kind": "model", "name": "TranscriptTextDoneEventLogprob", "namespace": "OpenAI", @@ -26299,13 +27983,13 @@ "decorators": [], "properties": [ { - "$id": "2419", + "$id": "2559", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "2420", + "$id": "2560", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26320,13 +28004,13 @@ "serializationOptions": {} }, { - "$id": "2421", + "$id": "2561", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "2422", + "$id": "2562", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26341,13 +28025,13 @@ "serializationOptions": {} }, { - "$id": "2423", + "$id": "2563", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2375" + "$ref": "2515" }, "optional": true, "readOnly": false, @@ -26375,19 +28059,19 @@ } }, { - "$ref": "2400" + "$ref": "2540" }, { - "$ref": "2406" + "$ref": "2546" }, { - "$ref": "2412" + "$ref": "2552" }, { - "$ref": "2418" + "$ref": "2558" }, { - "$id": "2424", + "$id": "2564", "kind": "model", "name": "CreateTranslationRequest", "namespace": "OpenAI", @@ -26396,13 +28080,13 @@ "decorators": [], "properties": [ { - "$id": "2425", + "$id": "2565", "kind": "property", "name": "file", "serializedName": "file", "doc": "The audio file object (not file name) translate, in one of these formats: flac, mp3, mp4, mpeg, mpga, m4a, ogg, wav, or webm.", "type": { - "$id": "2426", + "$id": "2566", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -26422,19 +28106,18 @@ "defaultContentTypes": [ "application/octet-stream" ], - "name": "file", - "headers": [] + "name": "file" } } }, { - "$id": "2427", + "$id": "2567", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. Only `whisper-1` (which is powered by our open source Whisper V2 model) is currently available.", "type": { - "$ref": "119" + "$ref": "111" }, "optional": false, "readOnly": false, @@ -26449,19 +28132,18 @@ "defaultContentTypes": [ "text/plain" ], - "name": "model", - "headers": [] + "name": "model" } } }, { - "$id": "2428", + "$id": "2568", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "An optional text to guide the model's style or continue a previous audio segment. The [prompt](/docs/guides/speech-to-text#prompting) should be in English.", "type": { - "$id": "2429", + "$id": "2569", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26480,19 +28162,18 @@ "defaultContentTypes": [ "text/plain" ], - "name": "prompt", - "headers": [] + "name": "prompt" } } }, { - "$id": "2430", + "$id": "2570", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "The format of the output, in one of these options: `json`, `text`, `srt`, `verbose_json`, or `vtt`.", "type": { - "$ref": "122" + "$ref": "114" }, "optional": true, "readOnly": false, @@ -26507,24 +28188,23 @@ "defaultContentTypes": [ "text/plain" ], - "name": "response_format", - "headers": [] + "name": "response_format" } } }, { - "$id": "2431", + "$id": "2571", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use [log probability](https://en.wikipedia.org/wiki/Log_probability) to automatically increase the temperature until certain thresholds are hit.", "type": { - "$id": "2432", + "$id": "2572", "kind": "float32", "name": "ZeroOrOneFloat", "crossLanguageDefinitionId": "OpenAI.ZeroOrOneFloat", "baseType": { - "$id": "2433", + "$id": "2573", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26545,15 +28225,14 @@ "defaultContentTypes": [ "text/plain" ], - "name": "temperature", - "headers": [] + "name": "temperature" } } } ] }, { - "$id": "2434", + "$id": "2574", "kind": "model", "name": "CreateTranslationResponseVerboseJson", "namespace": "OpenAI", @@ -26562,13 +28241,13 @@ "decorators": [], "properties": [ { - "$id": "2435", + "$id": "2575", "kind": "property", "name": "task", "serializedName": "task", "doc": "The task label.", "type": { - "$ref": "1285" + "$ref": "1425" }, "optional": false, "readOnly": false, @@ -26583,13 +28262,13 @@ } }, { - "$id": "2436", + "$id": "2576", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the output translation (always `english`).", "type": { - "$id": "2437", + "$id": "2577", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26608,18 +28287,18 @@ } }, { - "$id": "2438", + "$id": "2578", "kind": "property", "name": "duration", "serializedName": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "2439", + "$id": "2579", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "2440", + "$id": "2580", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -26641,13 +28320,13 @@ } }, { - "$id": "2441", + "$id": "2581", "kind": "property", "name": "text", "serializedName": "text", "doc": "The translated text.", "type": { - "$id": "2442", + "$id": "2582", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26666,13 +28345,13 @@ } }, { - "$id": "2443", + "$id": "2583", "kind": "property", "name": "segments", "serializedName": "segments", "doc": "Segments of the translated text and their corresponding details.", "type": { - "$ref": "2360" + "$ref": "2500" }, "optional": true, "readOnly": true, @@ -26689,7 +28368,7 @@ ] }, { - "$id": "2444", + "$id": "2584", "kind": "model", "name": "CreateTranslationResponseJson", "namespace": "OpenAI", @@ -26698,12 +28377,12 @@ "decorators": [], "properties": [ { - "$id": "2445", + "$id": "2585", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "2446", + "$id": "2586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26724,7 +28403,7 @@ ] }, { - "$id": "2447", + "$id": "2587", "kind": "model", "name": "CreateBatchRequest", "namespace": "", @@ -26733,13 +28412,13 @@ "decorators": [], "properties": [ { - "$id": "2448", + "$id": "2588", "kind": "property", "name": "input_file_id", "serializedName": "input_file_id", "doc": "The ID of an uploaded file that contains requests for the new batch.\n\nSee [upload file](/docs/api-reference/files/create) for how to upload a file.\n\nYour input file must be formatted as a [JSONL file](/docs/api-reference/batch/requestInput),\nand must be uploaded with the purpose `batch`.", "type": { - "$id": "2449", + "$id": "2589", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26758,13 +28437,13 @@ } }, { - "$id": "2450", + "$id": "2590", "kind": "property", "name": "endpoint", "serializedName": "endpoint", "doc": "The endpoint to be used for all requests in the batch. Currently `/v1/chat/completions` and\n`/v1/embeddings` are supported.", "type": { - "$ref": "129" + "$ref": "121" }, "optional": false, "readOnly": false, @@ -26779,13 +28458,13 @@ } }, { - "$id": "2451", + "$id": "2591", "kind": "property", "name": "completion_window", "serializedName": "completion_window", "doc": "The time frame within which the batch should be processed. Currently only `24h` is supported.", "type": { - "$ref": "1287" + "$ref": "1427" }, "optional": false, "readOnly": false, @@ -26800,13 +28479,13 @@ } }, { - "$id": "2452", + "$id": "2592", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -26823,7 +28502,7 @@ ] }, { - "$id": "2453", + "$id": "2593", "kind": "model", "name": "Batch", "namespace": "OpenAI", @@ -26832,12 +28511,12 @@ "decorators": [], "properties": [ { - "$id": "2454", + "$id": "2594", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "2455", + "$id": "2595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26856,13 +28535,13 @@ } }, { - "$id": "2456", + "$id": "2596", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `batch`.", "type": { - "$ref": "1289" + "$ref": "1429" }, "optional": false, "readOnly": false, @@ -26877,13 +28556,13 @@ } }, { - "$id": "2457", + "$id": "2597", "kind": "property", "name": "endpoint", "serializedName": "endpoint", "doc": "The OpenAI API endpoint used by the batch.", "type": { - "$id": "2458", + "$id": "2598", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26902,12 +28581,12 @@ } }, { - "$id": "2459", + "$id": "2599", "kind": "property", "name": "errors", "serializedName": "errors", "type": { - "$id": "2460", + "$id": "2600", "kind": "model", "name": "BatchErrors", "namespace": "OpenAI", @@ -26916,13 +28595,13 @@ "decorators": [], "properties": [ { - "$id": "2461", + "$id": "2601", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `list`.", "type": { - "$ref": "1291" + "$ref": "1431" }, "optional": true, "readOnly": false, @@ -26937,16 +28616,16 @@ } }, { - "$id": "2462", + "$id": "2602", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2463", + "$id": "2603", "kind": "array", "name": "Array8", "valueType": { - "$id": "2464", + "$id": "2604", "kind": "model", "name": "BatchErrorsDatum", "namespace": "OpenAI", @@ -26955,13 +28634,13 @@ "decorators": [], "properties": [ { - "$id": "2465", + "$id": "2605", "kind": "property", "name": "code", "serializedName": "code", "doc": "An error code identifying the error type.", "type": { - "$id": "2466", + "$id": "2606", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -26980,13 +28659,13 @@ } }, { - "$id": "2467", + "$id": "2607", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable message providing more details about the error.", "type": { - "$id": "2468", + "$id": "2608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27005,16 +28684,16 @@ } }, { - "$id": "2469", + "$id": "2609", "kind": "property", "name": "param", "serializedName": "param", "doc": "The name of the parameter that caused the error, if applicable.", "type": { - "$id": "2470", + "$id": "2610", "kind": "nullable", "type": { - "$id": "2471", + "$id": "2611", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27035,16 +28714,16 @@ } }, { - "$id": "2472", + "$id": "2612", "kind": "property", "name": "line", "serializedName": "line", "doc": "The line number of the input file where the error occurred, if applicable.", "type": { - "$id": "2473", + "$id": "2613", "kind": "nullable", "type": { - "$id": "2474", + "$id": "2614", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27096,13 +28775,13 @@ } }, { - "$id": "2475", + "$id": "2615", "kind": "property", "name": "input_file_id", "serializedName": "input_file_id", "doc": "The ID of the input file for the batch.", "type": { - "$id": "2476", + "$id": "2616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27121,13 +28800,13 @@ } }, { - "$id": "2477", + "$id": "2617", "kind": "property", "name": "completion_window", "serializedName": "completion_window", "doc": "The time frame within which the batch should be processed.", "type": { - "$id": "2478", + "$id": "2618", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27146,13 +28825,13 @@ } }, { - "$id": "2479", + "$id": "2619", "kind": "property", "name": "status", "serializedName": "status", "doc": "The current status of the batch.", "type": { - "$ref": "133" + "$ref": "125" }, "optional": false, "readOnly": false, @@ -27167,13 +28846,13 @@ } }, { - "$id": "2480", + "$id": "2620", "kind": "property", "name": "output_file_id", "serializedName": "output_file_id", "doc": "The ID of the file containing the outputs of successfully executed requests.", "type": { - "$id": "2481", + "$id": "2621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27192,13 +28871,13 @@ } }, { - "$id": "2482", + "$id": "2622", "kind": "property", "name": "error_file_id", "serializedName": "error_file_id", "doc": "The ID of the file containing the outputs of requests with errors.", "type": { - "$id": "2483", + "$id": "2623", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27217,18 +28896,18 @@ } }, { - "$id": "2484", + "$id": "2624", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the batch was created.", "type": { - "$id": "2485", + "$id": "2625", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2486", + "$id": "2626", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27250,18 +28929,18 @@ } }, { - "$id": "2487", + "$id": "2627", "kind": "property", "name": "in_progress_at", "serializedName": "in_progress_at", "doc": "The Unix timestamp (in seconds) for when the batch started processing.", "type": { - "$id": "2488", + "$id": "2628", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2489", + "$id": "2629", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27283,18 +28962,18 @@ } }, { - "$id": "2490", + "$id": "2630", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the batch will expire.", "type": { - "$id": "2491", + "$id": "2631", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2492", + "$id": "2632", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27316,18 +28995,18 @@ } }, { - "$id": "2493", + "$id": "2633", "kind": "property", "name": "finalizing_at", "serializedName": "finalizing_at", "doc": "The Unix timestamp (in seconds) for when the batch started finalizing.", "type": { - "$id": "2494", + "$id": "2634", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2495", + "$id": "2635", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27349,18 +29028,18 @@ } }, { - "$id": "2496", + "$id": "2636", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the batch was completed.", "type": { - "$id": "2497", + "$id": "2637", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2498", + "$id": "2638", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27382,18 +29061,18 @@ } }, { - "$id": "2499", + "$id": "2639", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the batch failed.", "type": { - "$id": "2500", + "$id": "2640", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2501", + "$id": "2641", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27415,18 +29094,18 @@ } }, { - "$id": "2502", + "$id": "2642", "kind": "property", "name": "expired_at", "serializedName": "expired_at", "doc": "The Unix timestamp (in seconds) for when the batch expired.", "type": { - "$id": "2503", + "$id": "2643", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2504", + "$id": "2644", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27448,18 +29127,18 @@ } }, { - "$id": "2505", + "$id": "2645", "kind": "property", "name": "cancelling_at", "serializedName": "cancelling_at", "doc": "The Unix timestamp (in seconds) for when the batch started cancelling.", "type": { - "$id": "2506", + "$id": "2646", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2507", + "$id": "2647", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27481,18 +29160,18 @@ } }, { - "$id": "2508", + "$id": "2648", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the batch was cancelled.", "type": { - "$id": "2509", + "$id": "2649", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2510", + "$id": "2650", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27514,13 +29193,13 @@ } }, { - "$id": "2511", + "$id": "2651", "kind": "property", "name": "request_counts", "serializedName": "request_counts", "doc": "The request counts for different statuses within the batch.", "type": { - "$id": "2512", + "$id": "2652", "kind": "model", "name": "BatchRequestCounts", "namespace": "OpenAI", @@ -27529,13 +29208,13 @@ "decorators": [], "properties": [ { - "$id": "2513", + "$id": "2653", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of requests in the batch.", "type": { - "$id": "2514", + "$id": "2654", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27554,13 +29233,13 @@ } }, { - "$id": "2515", + "$id": "2655", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "Number of requests that have been completed successfully.", "type": { - "$id": "2516", + "$id": "2656", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27579,13 +29258,13 @@ } }, { - "$id": "2517", + "$id": "2657", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of requests that have failed.", "type": { - "$id": "2518", + "$id": "2658", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27618,13 +29297,13 @@ } }, { - "$id": "2519", + "$id": "2659", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -27641,16 +29320,16 @@ ] }, { - "$ref": "2460" + "$ref": "2600" }, { - "$ref": "2464" + "$ref": "2604" }, { - "$ref": "2512" + "$ref": "2652" }, { - "$id": "2520", + "$id": "2660", "kind": "model", "name": "ListBatchesResponse", "namespace": "OpenAI", @@ -27659,16 +29338,16 @@ "decorators": [], "properties": [ { - "$id": "2521", + "$id": "2661", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2522", + "$id": "2662", "kind": "array", "name": "ArrayBatch", "valueType": { - "$ref": "2453" + "$ref": "2593" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -27686,12 +29365,12 @@ } }, { - "$id": "2523", + "$id": "2663", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "2524", + "$id": "2664", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27710,12 +29389,12 @@ } }, { - "$id": "2525", + "$id": "2665", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "2526", + "$id": "2666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27734,12 +29413,12 @@ } }, { - "$id": "2527", + "$id": "2667", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "2528", + "$id": "2668", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -27758,12 +29437,12 @@ } }, { - "$id": "2529", + "$id": "2669", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1293" + "$ref": "1433" }, "optional": false, "readOnly": false, @@ -27780,7 +29459,7 @@ ] }, { - "$id": "2530", + "$id": "2670", "kind": "model", "name": "ChatCompletionList", "namespace": "OpenAI", @@ -27790,13 +29469,13 @@ "decorators": [], "properties": [ { - "$id": "2531", + "$id": "2671", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1295" + "$ref": "1435" }, "optional": false, "readOnly": false, @@ -27811,17 +29490,17 @@ } }, { - "$id": "2532", + "$id": "2672", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of chat completion objects.", "type": { - "$id": "2533", + "$id": "2673", "kind": "array", "name": "ArrayCreateChatCompletionResponse", "valueType": { - "$id": "2534", + "$id": "2674", "kind": "model", "name": "CreateChatCompletionResponse", "namespace": "OpenAI", @@ -27831,13 +29510,13 @@ "decorators": [], "properties": [ { - "$id": "2535", + "$id": "2675", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the chat completion.", "type": { - "$id": "2536", + "$id": "2676", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27856,17 +29535,17 @@ } }, { - "$id": "2537", + "$id": "2677", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "A list of chat completion choices. Can be more than one if `n` is greater than 1.", "type": { - "$id": "2538", + "$id": "2678", "kind": "array", "name": "Array9", "valueType": { - "$id": "2539", + "$id": "2679", "kind": "model", "name": "CreateChatCompletionResponseChoice", "namespace": "OpenAI", @@ -27875,13 +29554,13 @@ "decorators": [], "properties": [ { - "$id": "2540", + "$id": "2680", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence,\n`length` if the maximum number of tokens specified in the request was reached,\n`content_filter` if content was omitted due to a flag from our content filters,\n`tool_calls` if the model called a tool, or `function_call` (deprecated) if the model called a function.", "type": { - "$ref": "143" + "$ref": "135" }, "optional": false, "readOnly": false, @@ -27896,13 +29575,13 @@ } }, { - "$id": "2541", + "$id": "2681", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the choice in the list of choices.", "type": { - "$id": "2542", + "$id": "2682", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -27921,12 +29600,12 @@ } }, { - "$id": "2543", + "$id": "2683", "kind": "property", "name": "message", "serializedName": "message", "type": { - "$id": "2544", + "$id": "2684", "kind": "model", "name": "ChatCompletionResponseMessage", "namespace": "OpenAI", @@ -27936,16 +29615,16 @@ "decorators": [], "properties": [ { - "$id": "2545", + "$id": "2685", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the message.", "type": { - "$id": "2546", + "$id": "2686", "kind": "nullable", "type": { - "$id": "2547", + "$id": "2687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27966,16 +29645,16 @@ } }, { - "$id": "2548", + "$id": "2688", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "2549", + "$id": "2689", "kind": "nullable", "type": { - "$id": "2550", + "$id": "2690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -27996,16 +29675,16 @@ } }, { - "$id": "2551", + "$id": "2691", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$id": "2552", + "$id": "2692", "kind": "array", "name": "ChatCompletionMessageToolCalls", "valueType": { - "$id": "2553", + "$id": "2693", "kind": "model", "name": "ChatCompletionMessageToolCall", "namespace": "OpenAI", @@ -28014,13 +29693,13 @@ "decorators": [], "properties": [ { - "$id": "2554", + "$id": "2694", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call.", "type": { - "$id": "2555", + "$id": "2695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28039,21 +29718,21 @@ } }, { - "$id": "2556", + "$id": "2696", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$id": "2557", + "$id": "2697", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "151" + "$ref": "143" }, "enumType": { - "$ref": "150" + "$ref": "142" }, "decorators": [] }, @@ -28070,13 +29749,13 @@ } }, { - "$id": "2558", + "$id": "2698", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function that the model called.", "type": { - "$id": "2559", + "$id": "2699", "kind": "model", "name": "ChatCompletionMessageToolCallFunction", "namespace": "OpenAI", @@ -28085,13 +29764,13 @@ "decorators": [], "properties": [ { - "$id": "2560", + "$id": "2700", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2561", + "$id": "2701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28110,13 +29789,13 @@ } }, { - "$id": "2562", + "$id": "2702", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.", "type": { - "$id": "2563", + "$id": "2703", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28166,17 +29845,17 @@ } }, { - "$id": "2564", + "$id": "2704", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Annotations for the message, when applicable, as when using the\n[web search tool](/docs/guides/tools-web-search?api-mode=chat).", "type": { - "$id": "2565", + "$id": "2705", "kind": "array", "name": "Array10", "valueType": { - "$id": "2566", + "$id": "2706", "kind": "model", "name": "ChatCompletionResponseMessageAnnotation", "namespace": "OpenAI", @@ -28185,13 +29864,13 @@ "decorators": [], "properties": [ { - "$id": "2567", + "$id": "2707", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$ref": "1297" + "$ref": "1437" }, "optional": false, "readOnly": false, @@ -28206,13 +29885,13 @@ } }, { - "$id": "2568", + "$id": "2708", "kind": "property", "name": "url_citation", "serializedName": "url_citation", "doc": "A URL citation when using web search.", "type": { - "$id": "2569", + "$id": "2709", "kind": "model", "name": "ChatCompletionResponseMessageAnnotationUrlCitation", "namespace": "OpenAI", @@ -28221,13 +29900,13 @@ "decorators": [], "properties": [ { - "$id": "2570", + "$id": "2710", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "2571", + "$id": "2711", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -28246,13 +29925,13 @@ } }, { - "$id": "2572", + "$id": "2712", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "2573", + "$id": "2713", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -28271,13 +29950,13 @@ } }, { - "$id": "2574", + "$id": "2714", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "2575", + "$id": "2715", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -28296,13 +29975,13 @@ } }, { - "$id": "2576", + "$id": "2716", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "2577", + "$id": "2717", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28352,21 +30031,21 @@ } }, { - "$id": "2578", + "$id": "2718", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$id": "2579", + "$id": "2719", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -28383,13 +30062,13 @@ } }, { - "$id": "2580", + "$id": "2720", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.", "type": { - "$id": "2581", + "$id": "2721", "kind": "model", "name": "ChatCompletionResponseMessageFunctionCall", "namespace": "OpenAI", @@ -28398,12 +30077,12 @@ "decorators": [], "properties": [ { - "$id": "2582", + "$id": "2722", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "2583", + "$id": "2723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28422,12 +30101,12 @@ } }, { - "$id": "2584", + "$id": "2724", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "2585", + "$id": "2725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28460,16 +30139,16 @@ } }, { - "$id": "2586", + "$id": "2726", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "If the audio output modality is requested, this object contains data\nabout the audio response from the model. [Learn more](/docs/guides/audio).", "type": { - "$id": "2587", + "$id": "2727", "kind": "nullable", "type": { - "$id": "2588", + "$id": "2728", "kind": "model", "name": "ChatCompletionResponseMessageAudio1", "namespace": "OpenAI", @@ -28478,13 +30157,13 @@ "decorators": [], "properties": [ { - "$id": "2589", + "$id": "2729", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this audio response.", "type": { - "$id": "2590", + "$id": "2730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28503,18 +30182,18 @@ } }, { - "$id": "2591", + "$id": "2731", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when this audio response will\nno longer be accessible on the server for use in multi-turn\nconversations.", "type": { - "$id": "2592", + "$id": "2732", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2593", + "$id": "2733", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -28536,13 +30215,13 @@ } }, { - "$id": "2594", + "$id": "2734", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64 encoded audio bytes generated by the model, in the format\nspecified in the request.", "type": { - "$id": "2595", + "$id": "2735", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -28562,13 +30241,13 @@ } }, { - "$id": "2596", + "$id": "2736", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "Transcript of the audio generated by the model.", "type": { - "$id": "2597", + "$id": "2737", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28617,16 +30296,16 @@ } }, { - "$id": "2598", + "$id": "2738", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "Log probability information for the choice.", "type": { - "$id": "2599", + "$id": "2739", "kind": "nullable", "type": { - "$id": "2600", + "$id": "2740", "kind": "model", "name": "CreateChatCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -28635,20 +30314,20 @@ "decorators": [], "properties": [ { - "$id": "2601", + "$id": "2741", "kind": "property", "name": "content", "serializedName": "content", "doc": "A list of message content tokens with log probability information.", "type": { - "$id": "2602", + "$id": "2742", "kind": "nullable", "type": { - "$id": "2603", + "$id": "2743", "kind": "array", "name": "ArrayChatCompletionTokenLogprob", "valueType": { - "$id": "2604", + "$id": "2744", "kind": "model", "name": "ChatCompletionTokenLogprob", "namespace": "OpenAI", @@ -28657,13 +30336,13 @@ "decorators": [], "properties": [ { - "$id": "2605", + "$id": "2745", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token.", "type": { - "$id": "2606", + "$id": "2746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28682,13 +30361,13 @@ } }, { - "$id": "2607", + "$id": "2747", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely.", "type": { - "$id": "2608", + "$id": "2748", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28707,16 +30386,16 @@ } }, { - "$id": "2609", + "$id": "2749", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token.", "type": { - "$id": "2610", + "$id": "2750", "kind": "nullable", "type": { - "$ref": "2375" + "$ref": "2515" }, "namespace": "" }, @@ -28733,17 +30412,17 @@ } }, { - "$id": "2611", + "$id": "2751", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "doc": "List of the most likely tokens and their log probability, at this token position. In rare cases, there may be fewer than the number of requested `top_logprobs` returned.", "type": { - "$id": "2612", + "$id": "2752", "kind": "array", "name": "Array11", "valueType": { - "$id": "2613", + "$id": "2753", "kind": "model", "name": "ChatCompletionTokenLogprobTopLogprob", "namespace": "OpenAI", @@ -28752,13 +30431,13 @@ "decorators": [], "properties": [ { - "$id": "2614", + "$id": "2754", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token.", "type": { - "$id": "2615", + "$id": "2755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28777,13 +30456,13 @@ } }, { - "$id": "2616", + "$id": "2756", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of this token, if it is within the top 20 most likely tokens. Otherwise, the value `-9999.0` is used to signify that the token is very unlikely.", "type": { - "$id": "2617", + "$id": "2757", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -28802,16 +30481,16 @@ } }, { - "$id": "2618", + "$id": "2758", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "A list of integers representing the UTF-8 bytes representation of the token. Useful in instances where characters are represented by multiple tokens and their byte representations must be combined to generate the correct text representation. Can be `null` if there is no bytes representation for the token.", "type": { - "$id": "2619", + "$id": "2759", "kind": "nullable", "type": { - "$ref": "2375" + "$ref": "2515" }, "namespace": "" }, @@ -28864,16 +30543,16 @@ } }, { - "$id": "2620", + "$id": "2760", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "A list of message refusal tokens with log probability information.", "type": { - "$id": "2621", + "$id": "2761", "kind": "nullable", "type": { - "$ref": "2603" + "$ref": "2743" }, "namespace": "" }, @@ -28923,18 +30602,18 @@ } }, { - "$id": "2622", + "$id": "2762", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the chat completion was created.", "type": { - "$id": "2623", + "$id": "2763", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2624", + "$id": "2764", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -28956,13 +30635,13 @@ } }, { - "$id": "2625", + "$id": "2765", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for the chat completion.", "type": { - "$id": "2626", + "$id": "2766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -28981,15 +30660,15 @@ } }, { - "$id": "2627", + "$id": "2767", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$id": "2628", + "$id": "2768", "kind": "nullable", "type": { - "$ref": "161" + "$ref": "153" }, "namespace": "" }, @@ -29006,13 +30685,13 @@ } }, { - "$id": "2629", + "$id": "2769", "kind": "property", "name": "system_fingerprint", "serializedName": "system_fingerprint", "doc": "This fingerprint represents the backend configuration that the model runs with.\n\nCan be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism.", "type": { - "$id": "2630", + "$id": "2770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29031,13 +30710,13 @@ } }, { - "$id": "2631", + "$id": "2771", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `chat.completion`.", "type": { - "$ref": "1299" + "$ref": "1439" }, "optional": false, "readOnly": false, @@ -29052,12 +30731,12 @@ } }, { - "$id": "2632", + "$id": "2772", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "2633", + "$id": "2773", "kind": "model", "name": "CompletionUsage", "namespace": "OpenAI", @@ -29067,13 +30746,13 @@ "decorators": [], "properties": [ { - "$id": "2634", + "$id": "2774", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of tokens in the generated completion.", "type": { - "$id": "2635", + "$id": "2775", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29092,13 +30771,13 @@ } }, { - "$id": "2636", + "$id": "2776", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of tokens in the prompt.", "type": { - "$id": "2637", + "$id": "2777", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29117,13 +30796,13 @@ } }, { - "$id": "2638", + "$id": "2778", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used in the request (prompt + completion).", "type": { - "$id": "2639", + "$id": "2779", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29142,13 +30821,13 @@ } }, { - "$id": "2640", + "$id": "2780", "kind": "property", "name": "completion_tokens_details", "serializedName": "completion_tokens_details", "doc": "Breakdown of tokens used in a completion.", "type": { - "$id": "2641", + "$id": "2781", "kind": "model", "name": "CompletionUsageCompletionTokensDetails", "namespace": "OpenAI", @@ -29157,13 +30836,13 @@ "decorators": [], "properties": [ { - "$id": "2642", + "$id": "2782", "kind": "property", "name": "accepted_prediction_tokens", "serializedName": "accepted_prediction_tokens", "doc": "When using Predicted Outputs, the number of tokens in the\nprediction that appeared in the completion.", "type": { - "$id": "2643", + "$id": "2783", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29182,13 +30861,13 @@ } }, { - "$id": "2644", + "$id": "2784", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "Audio input tokens generated by the model.", "type": { - "$id": "2645", + "$id": "2785", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29207,13 +30886,13 @@ } }, { - "$id": "2646", + "$id": "2786", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "Tokens generated by the model for reasoning.", "type": { - "$id": "2647", + "$id": "2787", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29232,13 +30911,13 @@ } }, { - "$id": "2648", + "$id": "2788", "kind": "property", "name": "rejected_prediction_tokens", "serializedName": "rejected_prediction_tokens", "doc": "When using Predicted Outputs, the number of tokens in the\nprediction that did not appear in the completion. However, like\nreasoning tokens, these tokens are still counted in the total\ncompletion tokens for purposes of billing, output, and context window\nlimits.", "type": { - "$id": "2649", + "$id": "2789", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29271,13 +30950,13 @@ } }, { - "$id": "2650", + "$id": "2790", "kind": "property", "name": "prompt_tokens_details", "serializedName": "prompt_tokens_details", "doc": "Breakdown of tokens used in the prompt.", "type": { - "$id": "2651", + "$id": "2791", "kind": "model", "name": "CompletionUsagePromptTokensDetails", "namespace": "OpenAI", @@ -29286,13 +30965,13 @@ "decorators": [], "properties": [ { - "$id": "2652", + "$id": "2792", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "Audio input tokens present in the prompt.", "type": { - "$id": "2653", + "$id": "2793", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29311,13 +30990,13 @@ } }, { - "$id": "2654", + "$id": "2794", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "Cached tokens present in the prompt.", "type": { - "$id": "2655", + "$id": "2795", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -29381,13 +31060,13 @@ } }, { - "$id": "2656", + "$id": "2796", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat completion in the data array.", "type": { - "$id": "2657", + "$id": "2797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29406,13 +31085,13 @@ } }, { - "$id": "2658", + "$id": "2798", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat completion in the data array.", "type": { - "$id": "2659", + "$id": "2799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29431,13 +31110,13 @@ } }, { - "$id": "2660", + "$id": "2800", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more Chat Completions available.", "type": { - "$id": "2661", + "$id": "2801", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -29458,52 +31137,52 @@ ] }, { - "$ref": "2534" + "$ref": "2674" }, { - "$ref": "2539" + "$ref": "2679" }, { - "$ref": "2544" + "$ref": "2684" }, { - "$ref": "2553" + "$ref": "2693" }, { - "$ref": "2559" + "$ref": "2699" }, { - "$ref": "2566" + "$ref": "2706" }, { - "$ref": "2569" + "$ref": "2709" }, { - "$ref": "2581" + "$ref": "2721" }, { - "$ref": "2588" + "$ref": "2728" }, { - "$ref": "2600" + "$ref": "2740" }, { - "$ref": "2604" + "$ref": "2744" }, { - "$ref": "2613" + "$ref": "2753" }, { - "$ref": "2633" + "$ref": "2773" }, { - "$ref": "2641" + "$ref": "2781" }, { - "$ref": "2651" + "$ref": "2791" }, { - "$id": "2662", + "$id": "2802", "kind": "model", "name": "CreateChatCompletionRequest", "namespace": "OpenAI", @@ -29512,13 +31191,13 @@ "decorators": [], "properties": [ { - "$id": "2663", + "$id": "2803", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -29533,16 +31212,16 @@ } }, { - "$id": "2664", + "$id": "2804", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.\nWe generally recommend altering this or `top_p` but not both.", "type": { - "$id": "2665", + "$id": "2805", "kind": "nullable", "type": { - "$id": "2666", + "$id": "2806", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29563,16 +31242,16 @@ } }, { - "$id": "2667", + "$id": "2807", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to sampling with temperature, called nucleus sampling,\nwhere the model considers the results of the tokens with top_p probability\nmass. So 0.1 means only the tokens comprising the top 10% probability mass\nare considered.\n\nWe generally recommend altering this or `temperature` but not both.", "type": { - "$id": "2668", + "$id": "2808", "kind": "nullable", "type": { - "$id": "2669", + "$id": "2809", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -29593,13 +31272,13 @@ } }, { - "$id": "2670", + "$id": "2810", "kind": "property", "name": "user", "serializedName": "user", "doc": "A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices#end-user-ids).", "type": { - "$id": "2671", + "$id": "2811", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29618,12 +31297,12 @@ } }, { - "$id": "2672", + "$id": "2812", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$ref": "161" + "$ref": "153" }, "optional": true, "readOnly": false, @@ -29638,17 +31317,17 @@ } }, { - "$id": "2673", + "$id": "2813", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of messages comprising the conversation so far. Depending on the\n[model](/docs/models) you use, different message types (modalities) are\nsupported, like [text](/docs/guides/text-generation),\n[images](/docs/guides/vision), and [audio](/docs/guides/audio).", "type": { - "$id": "2674", + "$id": "2814", "kind": "array", "name": "ArrayChatCompletionRequestMessage", "valueType": { - "$id": "2675", + "$id": "2815", "kind": "model", "name": "ChatCompletionRequestMessage", "namespace": "OpenAI", @@ -29656,13 +31335,13 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "2676", + "$id": "2816", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$ref": "153" + "$ref": "145" }, "optional": false, "readOnly": false, @@ -29678,35 +31357,35 @@ }, "properties": [ { - "$ref": "2676" + "$ref": "2816" }, { - "$id": "2677", + "$id": "2817", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message. Valid content part types vary per message role.", "type": { - "$id": "2678", + "$id": "2818", "kind": "nullable", "type": { - "$id": "2679", + "$id": "2819", "kind": "union", "name": "ChatCompletionRequestMessageContent", "variantTypes": [ { - "$id": "2680", + "$id": "2820", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2681", + "$id": "2821", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPart", "valueType": { - "$id": "2682", + "$id": "2822", "kind": "model", "name": "ChatCompletionRequestMessageContentPart", "namespace": "OpenAI", @@ -29714,12 +31393,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "2683", + "$id": "2823", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "167" + "$ref": "159" }, "optional": false, "readOnly": false, @@ -29735,12 +31414,12 @@ }, "properties": [ { - "$ref": "2683" + "$ref": "2823" } ], "discriminatedSubtypes": { "text": { - "$id": "2684", + "$id": "2824", "kind": "model", "name": "ChatCompletionRequestMessageContentPartText", "namespace": "OpenAI", @@ -29750,17 +31429,17 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "2682" + "$ref": "2822" }, "properties": [ { - "$id": "2685", + "$id": "2825", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$ref": "169" + "$ref": "161" }, "optional": false, "readOnly": false, @@ -29775,13 +31454,13 @@ } }, { - "$id": "2686", + "$id": "2826", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content.", "type": { - "$id": "2687", + "$id": "2827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29802,7 +31481,7 @@ ] }, "image_url": { - "$id": "2688", + "$id": "2828", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImage", "namespace": "OpenAI", @@ -29812,17 +31491,17 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "2682" + "$ref": "2822" }, "properties": [ { - "$id": "2689", + "$id": "2829", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$ref": "172" + "$ref": "164" }, "optional": false, "readOnly": false, @@ -29837,12 +31516,12 @@ } }, { - "$id": "2690", + "$id": "2830", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "2691", + "$id": "2831", "kind": "model", "name": "ChatCompletionRequestMessageContentPartImageImageUrl", "namespace": "OpenAI", @@ -29851,13 +31530,13 @@ "decorators": [], "properties": [ { - "$id": "2692", + "$id": "2832", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "2693", + "$id": "2833", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -29876,13 +31555,13 @@ } }, { - "$id": "2694", + "$id": "2834", "kind": "property", "name": "detail", "serializedName": "detail", "doc": "Specifies the detail level of the image. Learn more in the [Vision guide](/docs/guides/vision#low-or-high-fidelity-image-understanding).", "type": { - "$ref": "174" + "$ref": "166" }, "optional": true, "readOnly": false, @@ -29913,7 +31592,7 @@ ] }, "refusal": { - "$id": "2695", + "$id": "2835", "kind": "model", "name": "ChatCompletionRequestMessageContentPartRefusal", "namespace": "OpenAI", @@ -29922,17 +31601,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "2682" + "$ref": "2822" }, "properties": [ { - "$id": "2696", + "$id": "2836", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$ref": "173" + "$ref": "165" }, "optional": false, "readOnly": false, @@ -29947,13 +31626,13 @@ } }, { - "$id": "2697", + "$id": "2837", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "2698", + "$id": "2838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -29974,7 +31653,7 @@ ] }, "file": { - "$id": "2699", + "$id": "2839", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFile", "namespace": "OpenAI", @@ -29984,17 +31663,17 @@ "discriminatorValue": "file", "decorators": [], "baseModel": { - "$ref": "2682" + "$ref": "2822" }, "properties": [ { - "$id": "2700", + "$id": "2840", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part. Always `file`.", "type": { - "$ref": "170" + "$ref": "162" }, "optional": false, "readOnly": false, @@ -30009,12 +31688,12 @@ } }, { - "$id": "2701", + "$id": "2841", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "2702", + "$id": "2842", "kind": "model", "name": "ChatCompletionRequestMessageContentPartFileFile", "namespace": "OpenAI", @@ -30023,13 +31702,13 @@ "decorators": [], "properties": [ { - "$id": "2703", + "$id": "2843", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file, used when passing the file to the model as a\nstring.", "type": { - "$id": "2704", + "$id": "2844", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30048,13 +31727,13 @@ } }, { - "$id": "2705", + "$id": "2845", "kind": "property", "name": "file_data", "serializedName": "file_data", "doc": "The base64 encoded file data, used when passing the file to the model\nas a string.", "type": { - "$id": "2706", + "$id": "2846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30073,13 +31752,13 @@ } }, { - "$id": "2707", + "$id": "2847", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of an uploaded file to use as input.", "type": { - "$id": "2708", + "$id": "2848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30114,7 +31793,7 @@ ] }, "input_audio": { - "$id": "2709", + "$id": "2849", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudio", "namespace": "OpenAI", @@ -30124,17 +31803,17 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "2682" + "$ref": "2822" }, "properties": [ { - "$id": "2710", + "$id": "2850", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part. Always `input_audio`.", "type": { - "$ref": "171" + "$ref": "163" }, "optional": false, "readOnly": false, @@ -30149,12 +31828,12 @@ } }, { - "$id": "2711", + "$id": "2851", "kind": "property", "name": "input_audio", "serializedName": "input_audio", "type": { - "$id": "2712", + "$id": "2852", "kind": "model", "name": "ChatCompletionRequestMessageContentPartAudioInputAudio", "namespace": "OpenAI", @@ -30163,13 +31842,13 @@ "decorators": [], "properties": [ { - "$id": "2713", + "$id": "2853", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64 encoded audio data.", "type": { - "$id": "2714", + "$id": "2854", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -30189,13 +31868,13 @@ } }, { - "$id": "2715", + "$id": "2855", "kind": "property", "name": "format", "serializedName": "format", "doc": "The format of the encoded audio data. Currently supports \"wav\" and \"mp3\".", "type": { - "$ref": "179" + "$ref": "171" }, "optional": false, "readOnly": false, @@ -30251,7 +31930,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "2716", + "$id": "2856", "kind": "model", "name": "ChatCompletionRequestSystemMessage", "namespace": "OpenAI", @@ -30261,38 +31940,38 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "2675" + "$ref": "2815" }, "properties": [ { - "$id": "2717", + "$id": "2857", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the system message.", "type": { - "$id": "2718", + "$id": "2858", "kind": "union", "name": "ChatCompletionRequestSystemMessageContent", "variantTypes": [ { - "$id": "2719", + "$id": "2859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2720", + "$id": "2860", "kind": "array", "name": "ArrayChatCompletionRequestSystemMessageContentPart", "valueType": { - "$id": "2721", + "$id": "2861", "kind": "union", "name": "ChatCompletionRequestSystemMessageContentPart", "variantTypes": [ { - "$ref": "2684" + "$ref": "2824" } ], "namespace": "OpenAI", @@ -30318,21 +31997,21 @@ } }, { - "$id": "2722", + "$id": "2862", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `system`.", "type": { - "$id": "2723", + "$id": "2863", "kind": "enumvalue", "name": "system", "value": "system", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -30349,13 +32028,13 @@ } }, { - "$id": "2724", + "$id": "2864", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "2725", + "$id": "2865", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30376,7 +32055,7 @@ ] }, "developer": { - "$id": "2726", + "$id": "2866", "kind": "model", "name": "ChatCompletionRequestDeveloperMessage", "namespace": "OpenAI", @@ -30386,33 +32065,33 @@ "discriminatorValue": "developer", "decorators": [], "baseModel": { - "$ref": "2675" + "$ref": "2815" }, "properties": [ { - "$id": "2727", + "$id": "2867", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the developer message.", "type": { - "$id": "2728", + "$id": "2868", "kind": "union", "name": "ChatCompletionRequestDeveloperMessageContent", "variantTypes": [ { - "$id": "2729", + "$id": "2869", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2730", + "$id": "2870", "kind": "array", "name": "ArrayChatCompletionRequestMessageContentPartText", "valueType": { - "$ref": "2684" + "$ref": "2824" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -30434,21 +32113,21 @@ } }, { - "$id": "2731", + "$id": "2871", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `developer`.", "type": { - "$id": "2732", + "$id": "2872", "kind": "enumvalue", "name": "developer", "value": "developer", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -30465,13 +32144,13 @@ } }, { - "$id": "2733", + "$id": "2873", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "2734", + "$id": "2874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30492,7 +32171,7 @@ ] }, "user": { - "$id": "2735", + "$id": "2875", "kind": "model", "name": "ChatCompletionRequestUserMessage", "namespace": "OpenAI", @@ -30502,47 +32181,47 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "2675" + "$ref": "2815" }, "properties": [ { - "$id": "2736", + "$id": "2876", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the user message.", "type": { - "$id": "2737", + "$id": "2877", "kind": "union", "name": "ChatCompletionRequestUserMessageContent", "variantTypes": [ { - "$id": "2738", + "$id": "2878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2739", + "$id": "2879", "kind": "array", "name": "ArrayChatCompletionRequestUserMessageContentPart", "valueType": { - "$id": "2740", + "$id": "2880", "kind": "union", "name": "ChatCompletionRequestUserMessageContentPart", "variantTypes": [ { - "$ref": "2684" + "$ref": "2824" }, { - "$ref": "2688" + "$ref": "2828" }, { - "$ref": "2709" + "$ref": "2849" }, { - "$ref": "2699" + "$ref": "2839" } ], "namespace": "OpenAI", @@ -30568,21 +32247,21 @@ } }, { - "$id": "2741", + "$id": "2881", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `user`.", "type": { - "$id": "2742", + "$id": "2882", "kind": "enumvalue", "name": "user", "value": "user", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -30599,13 +32278,13 @@ } }, { - "$id": "2743", + "$id": "2883", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "2744", + "$id": "2884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30626,7 +32305,7 @@ ] }, "assistant": { - "$id": "2745", + "$id": "2885", "kind": "model", "name": "ChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -30636,44 +32315,44 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "2675" + "$ref": "2815" }, "properties": [ { - "$id": "2746", + "$id": "2886", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$id": "2747", + "$id": "2887", "kind": "nullable", "type": { - "$id": "2748", + "$id": "2888", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContent", "variantTypes": [ { - "$id": "2749", + "$id": "2889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2750", + "$id": "2890", "kind": "array", "name": "ArrayChatCompletionRequestAssistantMessageContentPart", "valueType": { - "$id": "2751", + "$id": "2891", "kind": "union", "name": "ChatCompletionRequestAssistantMessageContentPart", "variantTypes": [ { - "$ref": "2684" + "$ref": "2824" }, { - "$ref": "2695" + "$ref": "2835" } ], "namespace": "OpenAI", @@ -30701,16 +32380,16 @@ } }, { - "$id": "2752", + "$id": "2892", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$id": "2753", + "$id": "2893", "kind": "nullable", "type": { - "$id": "2754", + "$id": "2894", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30731,21 +32410,21 @@ } }, { - "$id": "2755", + "$id": "2895", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "2756", + "$id": "2896", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -30762,13 +32441,13 @@ } }, { - "$id": "2757", + "$id": "2897", "kind": "property", "name": "name", "serializedName": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "2758", + "$id": "2898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30787,16 +32466,16 @@ } }, { - "$id": "2759", + "$id": "2899", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$id": "2760", + "$id": "2900", "kind": "nullable", "type": { - "$id": "2761", + "$id": "2901", "kind": "model", "name": "ChatCompletionRequestAssistantMessageAudio1", "namespace": "OpenAI", @@ -30805,13 +32484,13 @@ "decorators": [], "properties": [ { - "$id": "2762", + "$id": "2902", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for a previous audio response from the model.", "type": { - "$id": "2763", + "$id": "2903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30846,12 +32525,12 @@ } }, { - "$id": "2764", + "$id": "2904", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$ref": "2552" + "$ref": "2692" }, "optional": true, "readOnly": false, @@ -30866,16 +32545,16 @@ } }, { - "$id": "2765", + "$id": "2905", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.", "type": { - "$id": "2766", + "$id": "2906", "kind": "nullable", "type": { - "$id": "2767", + "$id": "2907", "kind": "model", "name": "ChatCompletionRequestAssistantMessageFunctionCall1", "namespace": "OpenAI", @@ -30884,12 +32563,12 @@ "decorators": [], "properties": [ { - "$id": "2768", + "$id": "2908", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "2769", + "$id": "2909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30908,12 +32587,12 @@ } }, { - "$id": "2770", + "$id": "2910", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "2771", + "$id": "2911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -30950,7 +32629,7 @@ ] }, "tool": { - "$id": "2772", + "$id": "2912", "kind": "model", "name": "ChatCompletionRequestToolMessage", "namespace": "OpenAI", @@ -30959,25 +32638,25 @@ "discriminatorValue": "tool", "decorators": [], "baseModel": { - "$ref": "2675" + "$ref": "2815" }, "properties": [ { - "$id": "2773", + "$id": "2913", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `tool`.", "type": { - "$id": "2774", + "$id": "2914", "kind": "enumvalue", "name": "tool", "value": "tool", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -30994,34 +32673,34 @@ } }, { - "$id": "2775", + "$id": "2915", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the tool message.", "type": { - "$id": "2776", + "$id": "2916", "kind": "union", "name": "ChatCompletionRequestToolMessageContent", "variantTypes": [ { - "$id": "2777", + "$id": "2917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "2778", + "$id": "2918", "kind": "array", "name": "ArrayChatCompletionRequestToolMessageContentPart", "valueType": { - "$id": "2779", + "$id": "2919", "kind": "union", "name": "ChatCompletionRequestToolMessageContentPart", "variantTypes": [ { - "$ref": "2684" + "$ref": "2824" } ], "namespace": "OpenAI", @@ -31047,13 +32726,13 @@ } }, { - "$id": "2780", + "$id": "2920", "kind": "property", "name": "tool_call_id", "serializedName": "tool_call_id", "doc": "Tool call that this message is responding to.", "type": { - "$id": "2781", + "$id": "2921", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31074,7 +32753,7 @@ ] }, "function": { - "$id": "2782", + "$id": "2922", "kind": "model", "name": "ChatCompletionRequestFunctionMessage", "namespace": "OpenAI", @@ -31084,25 +32763,25 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "2675" + "$ref": "2815" }, "properties": [ { - "$id": "2783", + "$id": "2923", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the messages author, in this case `function`.", "type": { - "$id": "2784", + "$id": "2924", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -31119,16 +32798,16 @@ } }, { - "$id": "2785", + "$id": "2925", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the function message.", "type": { - "$id": "2786", + "$id": "2926", "kind": "nullable", "type": { - "$id": "2787", + "$id": "2927", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31149,13 +32828,13 @@ } }, { - "$id": "2788", + "$id": "2928", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2789", + "$id": "2929", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31193,13 +32872,13 @@ } }, { - "$id": "2790", + "$id": "2930", "kind": "property", "name": "model", "serializedName": "model", "doc": "Model ID used to generate the response, like `gpt-4o` or `o3`. OpenAI\noffers a wide range of models with different capabilities, performance\ncharacteristics, and price points. Refer to the [model guide](/docs/models)\nto browse and compare available models.", "type": { - "$ref": "183" + "$ref": "175" }, "optional": false, "readOnly": false, @@ -31214,19 +32893,19 @@ } }, { - "$id": "2791", + "$id": "2931", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "2792", + "$id": "2932", "kind": "nullable", "type": { - "$id": "2793", + "$id": "2933", "kind": "array", "name": "ResponseModalities", "valueType": { - "$ref": "240" + "$ref": "232" }, "crossLanguageDefinitionId": "OpenAI.ResponseModalities", "decorators": [] @@ -31246,15 +32925,15 @@ } }, { - "$id": "2794", + "$id": "2934", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "2795", + "$id": "2935", "kind": "nullable", "type": { - "$ref": "57" + "$ref": "53" }, "namespace": "" }, @@ -31271,16 +32950,16 @@ } }, { - "$id": "2796", + "$id": "2936", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "An upper bound for the number of tokens that can be generated for a completion, including visible output tokens and [reasoning tokens](/docs/guides/reasoning).", "type": { - "$id": "2797", + "$id": "2937", "kind": "nullable", "type": { - "$id": "2798", + "$id": "2938", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31301,16 +32980,16 @@ } }, { - "$id": "2799", + "$id": "2939", "kind": "property", "name": "frequency_penalty", "serializedName": "frequency_penalty", "doc": "Number between -2.0 and 2.0. Positive values penalize new tokens based on\ntheir existing frequency in the text so far, decreasing the model's\nlikelihood to repeat the same line verbatim.", "type": { - "$id": "2800", + "$id": "2940", "kind": "nullable", "type": { - "$id": "2801", + "$id": "2941", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -31331,16 +33010,16 @@ } }, { - "$id": "2802", + "$id": "2942", "kind": "property", "name": "presence_penalty", "serializedName": "presence_penalty", "doc": "Number between -2.0 and 2.0. Positive values penalize new tokens based on\nwhether they appear in the text so far, increasing the model's likelihood\nto talk about new topics.", "type": { - "$id": "2803", + "$id": "2943", "kind": "nullable", "type": { - "$id": "2804", + "$id": "2944", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -31361,13 +33040,13 @@ } }, { - "$id": "2805", + "$id": "2945", "kind": "property", "name": "web_search_options", "serializedName": "web_search_options", "doc": "This tool searches the web for relevant results to use in a response.\nLearn more about the [web search tool](/docs/guides/tools-web-search?api-mode=chat).", "type": { - "$id": "2806", + "$id": "2946", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptions", "namespace": "OpenAI", @@ -31376,16 +33055,16 @@ "decorators": [], "properties": [ { - "$id": "2807", + "$id": "2947", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "Approximate location parameters for the search.", "type": { - "$id": "2808", + "$id": "2948", "kind": "nullable", "type": { - "$id": "2809", + "$id": "2949", "kind": "model", "name": "CreateChatCompletionRequestWebSearchOptionsUserLocation1", "namespace": "OpenAI", @@ -31394,13 +33073,13 @@ "decorators": [], "properties": [ { - "$id": "2810", + "$id": "2950", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of location approximation. Always `approximate`.", "type": { - "$ref": "1301" + "$ref": "1441" }, "optional": false, "readOnly": false, @@ -31415,12 +33094,12 @@ } }, { - "$id": "2811", + "$id": "2951", "kind": "property", "name": "approximate", "serializedName": "approximate", "type": { - "$id": "2812", + "$id": "2952", "kind": "model", "name": "WebSearchLocation", "namespace": "OpenAI", @@ -31430,13 +33109,13 @@ "decorators": [], "properties": [ { - "$id": "2813", + "$id": "2953", "kind": "property", "name": "country", "serializedName": "country", "doc": "The two-letter\n[ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1) of the user,\ne.g. `US`.", "type": { - "$id": "2814", + "$id": "2954", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31455,13 +33134,13 @@ } }, { - "$id": "2815", + "$id": "2955", "kind": "property", "name": "region", "serializedName": "region", "doc": "Free text input for the region of the user, e.g. `California`.", "type": { - "$id": "2816", + "$id": "2956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31480,13 +33159,13 @@ } }, { - "$id": "2817", + "$id": "2957", "kind": "property", "name": "city", "serializedName": "city", "doc": "Free text input for the city of the user, e.g. `San Francisco`.", "type": { - "$id": "2818", + "$id": "2958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31505,13 +33184,13 @@ } }, { - "$id": "2819", + "$id": "2959", "kind": "property", "name": "timezone", "serializedName": "timezone", "doc": "The [IANA timezone](https://timeapi.io/documentation/iana-timezones)\nof the user, e.g. `America/Los_Angeles`.", "type": { - "$id": "2820", + "$id": "2960", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -31560,12 +33239,12 @@ } }, { - "$id": "2821", + "$id": "2961", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", "type": { - "$ref": "244" + "$ref": "236" }, "optional": true, "readOnly": false, @@ -31594,16 +33273,16 @@ } }, { - "$id": "2822", + "$id": "2962", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "doc": "An integer between 0 and 20 specifying the number of most likely tokens to\nreturn at each token position, each with an associated log probability.\n`logprobs` must be set to `true` if this parameter is used.", "type": { - "$id": "2823", + "$id": "2963", "kind": "nullable", "type": { - "$id": "2824", + "$id": "2964", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31624,13 +33303,13 @@ } }, { - "$id": "2825", + "$id": "2965", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "An object specifying the format that the model must output.\n\nSetting to `{ \"type\": \"json_schema\", \"json_schema\": {...} }` enables\nStructured Outputs which ensures the model will match your supplied JSON\nschema. Learn more in the [Structured Outputs\nguide](/docs/guides/structured-outputs).\n\nSetting to `{ \"type\": \"json_object\" }` enables the older JSON mode, which\nensures the message the model generates is valid JSON. Using `json_schema`\nis preferred for models that support it.", "type": { - "$ref": "2175" + "$ref": "2315" }, "optional": true, "readOnly": false, @@ -31645,16 +33324,16 @@ } }, { - "$id": "2826", + "$id": "2966", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Parameters for audio output. Required when audio output is requested with\n`modalities: [\"audio\"]`. [Learn more](/docs/guides/audio).", "type": { - "$id": "2827", + "$id": "2967", "kind": "nullable", "type": { - "$id": "2828", + "$id": "2968", "kind": "model", "name": "CreateChatCompletionRequestAudio1", "namespace": "OpenAI", @@ -31663,13 +33342,13 @@ "decorators": [], "properties": [ { - "$id": "2829", + "$id": "2969", "kind": "property", "name": "voice", "serializedName": "voice", "doc": "The voice the model uses to respond. Supported voices are\n`alloy`, `ash`, `ballad`, `coral`, `echo`, `fable`, `nova`, `onyx`, `sage`, and `shimmer`.", "type": { - "$ref": "71" + "$ref": "67" }, "optional": false, "readOnly": false, @@ -31684,13 +33363,13 @@ } }, { - "$id": "2830", + "$id": "2970", "kind": "property", "name": "format", "serializedName": "format", "doc": "Specifies the output audio format. Must be one of `wav`, `mp3`, `flac`,\n`opus`, or `pcm16`.", "type": { - "$ref": "249" + "$ref": "241" }, "optional": false, "readOnly": false, @@ -31721,16 +33400,16 @@ } }, { - "$id": "2831", + "$id": "2971", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether or not to store the output of this chat completion request for\nuse in our [model distillation](/docs/guides/distillation) or\n[evals](/docs/guides/evals) products.", "type": { - "$id": "2832", + "$id": "2972", "kind": "nullable", "type": { - "$id": "2833", + "$id": "2973", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -31751,16 +33430,16 @@ } }, { - "$id": "2834", + "$id": "2974", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If set to true, the model response data will be streamed to the client\nas it is generated using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).\nSee the [Streaming section below](/docs/api-reference/chat/streaming)\nfor more information, along with the [streaming responses](/docs/guides/streaming-responses)\nguide for more information on how to handle the streaming events.", "type": { - "$id": "2835", + "$id": "2975", "kind": "nullable", "type": { - "$id": "2836", + "$id": "2976", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -31781,27 +33460,27 @@ } }, { - "$id": "2837", + "$id": "2977", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "2838", + "$id": "2978", "kind": "nullable", "type": { - "$id": "2839", + "$id": "2979", "kind": "union", "name": "StopConfiguration", "variantTypes": [ { - "$id": "2840", + "$id": "2980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2155" + "$ref": "2295" } ], "namespace": "OpenAI", @@ -31822,26 +33501,26 @@ } }, { - "$id": "2841", + "$id": "2981", "kind": "property", "name": "logit_bias", "serializedName": "logit_bias", "doc": "Modify the likelihood of specified tokens appearing in the completion.\n\nAccepts a JSON object that maps tokens (specified by their token ID in the\ntokenizer) to an associated bias value from -100 to 100. Mathematically,\nthe bias is added to the logits generated by the model prior to sampling.\nThe exact effect will vary per model, but values between -1 and 1 should\ndecrease or increase likelihood of selection; values like -100 or 100\nshould result in a ban or exclusive selection of the relevant token.", "type": { - "$id": "2842", + "$id": "2982", "kind": "nullable", "type": { - "$id": "2843", + "$id": "2983", "kind": "dict", "keyType": { - "$id": "2844", + "$id": "2984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "2845", + "$id": "2985", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31864,16 +33543,16 @@ } }, { - "$id": "2846", + "$id": "2986", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "Whether to return log probabilities of the output tokens or not. If true,\nreturns the log probabilities of each output token returned in the\n`content` of `message`.", "type": { - "$id": "2847", + "$id": "2987", "kind": "nullable", "type": { - "$id": "2848", + "$id": "2988", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -31894,16 +33573,16 @@ } }, { - "$id": "2849", + "$id": "2989", "kind": "property", "name": "max_tokens", "serializedName": "max_tokens", "doc": "The maximum number of [tokens](/tokenizer) that can be generated in the\nchat completion. This value can be used to control\n[costs](https://openai.com/api/pricing/) for text generated via API.\n\nThis value is now deprecated in favor of `max_completion_tokens`, and is\nnot compatible with [o-series models](/docs/guides/reasoning).", "type": { - "$id": "2850", + "$id": "2990", "kind": "nullable", "type": { - "$id": "2851", + "$id": "2991", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31924,16 +33603,16 @@ } }, { - "$id": "2852", + "$id": "2992", "kind": "property", "name": "n", "serializedName": "n", "doc": "How many chat completion choices to generate for each input message. Note that you will be charged based on the number of generated tokens across all of the choices. Keep `n` as `1` to minimize costs.", "type": { - "$id": "2853", + "$id": "2993", "kind": "nullable", "type": { - "$id": "2854", + "$id": "2994", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -31954,16 +33633,16 @@ } }, { - "$id": "2855", + "$id": "2995", "kind": "property", "name": "prediction", "serializedName": "prediction", "doc": "Configuration for a [Predicted Output](/docs/guides/predicted-outputs),\nwhich can greatly improve response times when large parts of the model\nresponse are known ahead of time. This is most common when you are\nregenerating a file with only minor changes to most of the content.", "type": { - "$id": "2856", + "$id": "2996", "kind": "nullable", "type": { - "$id": "2857", + "$id": "2997", "kind": "model", "name": "ChatOutputPrediction", "namespace": "OpenAI", @@ -31972,12 +33651,12 @@ "doc": "Base representation of predicted output from a model.", "decorators": [], "discriminatorProperty": { - "$id": "2858", + "$id": "2998", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "257" + "$ref": "249" }, "optional": false, "readOnly": false, @@ -31993,12 +33672,12 @@ }, "properties": [ { - "$ref": "2858" + "$ref": "2998" } ], "discriminatedSubtypes": { "content": { - "$id": "2859", + "$id": "2999", "kind": "model", "name": "ChatOutputPredictionContent", "namespace": "OpenAI", @@ -32008,17 +33687,17 @@ "discriminatorValue": "content", "decorators": [], "baseModel": { - "$ref": "2857" + "$ref": "2997" }, "properties": [ { - "$id": "2860", + "$id": "3000", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the predicted content you want to provide. This type is\ncurrently always `content`.", "type": { - "$ref": "259" + "$ref": "251" }, "optional": false, "readOnly": false, @@ -32033,25 +33712,25 @@ } }, { - "$id": "2861", + "$id": "3001", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content that should be matched when generating a model response.\nIf generated tokens would match this content, the entire model response\ncan be returned much more quickly.", "type": { - "$id": "2862", + "$id": "3002", "kind": "union", "name": "ChatOutputPredictionContentContent", "variantTypes": [ { - "$id": "2863", + "$id": "3003", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2730" + "$ref": "2870" } ], "namespace": "", @@ -32088,16 +33767,16 @@ } }, { - "$id": "2864", + "$id": "3004", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "This feature is in Beta.\nIf specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result.\nDeterminism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend.", "type": { - "$id": "2865", + "$id": "3005", "kind": "nullable", "type": { - "$id": "2866", + "$id": "3006", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -32118,15 +33797,15 @@ } }, { - "$id": "2867", + "$id": "3007", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "2868", + "$id": "3008", "kind": "nullable", "type": { - "$id": "2869", + "$id": "3009", "kind": "model", "name": "ChatCompletionStreamOptions", "namespace": "OpenAI", @@ -32136,13 +33815,13 @@ "decorators": [], "properties": [ { - "$id": "2870", + "$id": "3010", "kind": "property", "name": "include_usage", "serializedName": "include_usage", "doc": "If set, an additional chunk will be streamed before the `data: [DONE]`\nmessage. The `usage` field on this chunk shows the token usage statistics\nfor the entire request, and the `choices` field will always be an empty\narray.\n\nAll other chunks will also include a `usage` field, but with a null\nvalue. **NOTE:** If the stream is interrupted, you may not receive the\nfinal usage chunk which contains the total token usage for the request.", "type": { - "$id": "2871", + "$id": "3011", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -32177,17 +33856,17 @@ } }, { - "$id": "2872", + "$id": "3012", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported.", "type": { - "$id": "2873", + "$id": "3013", "kind": "array", "name": "ArrayChatCompletionTool", "valueType": { - "$id": "2874", + "$id": "3014", "kind": "model", "name": "ChatCompletionTool", "namespace": "OpenAI", @@ -32196,21 +33875,21 @@ "decorators": [], "properties": [ { - "$id": "2875", + "$id": "3015", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$id": "2876", + "$id": "3016", "kind": "enumvalue", "name": "function", "value": "function", "valueType": { - "$ref": "261" + "$ref": "253" }, "enumType": { - "$ref": "260" + "$ref": "252" }, "decorators": [] }, @@ -32227,12 +33906,12 @@ } }, { - "$id": "2877", + "$id": "3017", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$ref": "2139" + "$ref": "2279" }, "optional": false, "readOnly": false, @@ -32264,20 +33943,20 @@ } }, { - "$id": "2878", + "$id": "3018", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "2879", + "$id": "3019", "kind": "union", "name": "ChatCompletionToolChoiceOption", "variantTypes": [ { - "$ref": "263" + "$ref": "255" }, { - "$id": "2880", + "$id": "3020", "kind": "model", "name": "ChatCompletionNamedToolChoice", "namespace": "OpenAI", @@ -32287,13 +33966,13 @@ "decorators": [], "properties": [ { - "$id": "2881", + "$id": "3021", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$ref": "1303" + "$ref": "1443" }, "optional": false, "readOnly": false, @@ -32308,12 +33987,12 @@ } }, { - "$id": "2882", + "$id": "3022", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "2883", + "$id": "3023", "kind": "model", "name": "ChatCompletionNamedToolChoiceFunction", "namespace": "OpenAI", @@ -32322,13 +34001,13 @@ "decorators": [], "properties": [ { - "$id": "2884", + "$id": "3024", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2885", + "$id": "3025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32379,17 +34058,17 @@ } }, { - "$id": "2886", + "$id": "3026", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "2887", + "$id": "3027", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "2888", + "$id": "3028", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -32410,24 +34089,24 @@ } }, { - "$id": "2889", + "$id": "3029", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated in favor of `tool_choice`.\n\nControls which (if any) function is called by the model.\n\n`none` means the model will not call a function and instead generates a\nmessage.\n\n`auto` means the model can pick between generating a message or calling a\nfunction.\n\nSpecifying a particular function via `{\"name\": \"my_function\"}` forces the\nmodel to call that function.\n\n`none` is the default when no functions are present. `auto` is the default\nif functions are present.", "type": { - "$id": "2890", + "$id": "3030", "kind": "union", "name": "CreateChatCompletionRequestFunctionCall", "variantTypes": [ { - "$ref": "1305" + "$ref": "1445" }, { - "$ref": "1307" + "$ref": "1447" }, { - "$id": "2891", + "$id": "3031", "kind": "model", "name": "ChatCompletionFunctionCallOption", "namespace": "OpenAI", @@ -32437,13 +34116,13 @@ "decorators": [], "properties": [ { - "$id": "2892", + "$id": "3032", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2893", + "$id": "3033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32480,17 +34159,17 @@ } }, { - "$id": "2894", + "$id": "3034", "kind": "property", "name": "functions", "serializedName": "functions", "doc": "Deprecated in favor of `tools`.\n\nA list of functions the model may generate JSON inputs for.", "type": { - "$id": "2895", + "$id": "3035", "kind": "array", "name": "ArrayChatCompletionFunctions", "valueType": { - "$id": "2896", + "$id": "3036", "kind": "model", "name": "ChatCompletionFunctions", "namespace": "OpenAI", @@ -32500,13 +34179,13 @@ "decorators": [], "properties": [ { - "$id": "2897", + "$id": "3037", "kind": "property", "name": "description", "serializedName": "description", "doc": "A description of what the function does, used by the model to choose when and how to call the function.", "type": { - "$id": "2898", + "$id": "3038", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32525,13 +34204,13 @@ } }, { - "$id": "2899", + "$id": "3039", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64.", "type": { - "$id": "2900", + "$id": "3040", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32550,13 +34229,13 @@ } }, { - "$id": "2901", + "$id": "3041", "kind": "property", "name": "parameters", "serializedName": "parameters", "doc": "The parameters the functions accepts, described as a JSON Schema object. See the [guide](/docs/guides/function-calling) for examples, and the [JSON Schema reference](https://json-schema.org/understanding-json-schema/) for documentation about the format.\n\nOmitting `parameters` defines a function with an empty parameter list.", "type": { - "$id": "2902", + "$id": "3042", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -32594,97 +34273,97 @@ ] }, { - "$ref": "2675" + "$ref": "2815" }, { - "$ref": "2682" + "$ref": "2822" }, { - "$ref": "2684" + "$ref": "2824" }, { - "$ref": "2688" + "$ref": "2828" }, { - "$ref": "2691" + "$ref": "2831" }, { - "$ref": "2695" + "$ref": "2835" }, { - "$ref": "2699" + "$ref": "2839" }, { - "$ref": "2702" + "$ref": "2842" }, { - "$ref": "2709" + "$ref": "2849" }, { - "$ref": "2712" + "$ref": "2852" }, { - "$ref": "2716" + "$ref": "2856" }, { - "$ref": "2726" + "$ref": "2866" }, { - "$ref": "2735" + "$ref": "2875" }, { - "$ref": "2745" + "$ref": "2885" }, { - "$ref": "2761" + "$ref": "2901" }, { - "$ref": "2767" + "$ref": "2907" }, { - "$ref": "2772" + "$ref": "2912" }, { - "$ref": "2782" + "$ref": "2922" }, { - "$ref": "2806" + "$ref": "2946" }, { - "$ref": "2809" + "$ref": "2949" }, { - "$ref": "2812" + "$ref": "2952" }, { - "$ref": "2828" + "$ref": "2968" }, { - "$ref": "2857" + "$ref": "2997" }, { - "$ref": "2859" + "$ref": "2999" }, { - "$ref": "2869" + "$ref": "3009" }, { - "$ref": "2874" + "$ref": "3014" }, { - "$ref": "2880" + "$ref": "3020" }, { - "$ref": "2883" + "$ref": "3023" }, { - "$ref": "2891" + "$ref": "3031" }, { - "$ref": "2896" + "$ref": "3036" }, { - "$id": "2903", + "$id": "3043", "kind": "model", "name": "CreateChatCompletionStreamResponse", "namespace": "OpenAI", @@ -32695,13 +34374,13 @@ "decorators": [], "properties": [ { - "$id": "2904", + "$id": "3044", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the chat completion. Each chunk has the same ID.", "type": { - "$id": "2905", + "$id": "3045", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32716,17 +34395,17 @@ "serializationOptions": {} }, { - "$id": "2906", + "$id": "3046", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "A list of chat completion choices. Can contain more than one elements if `n` is greater than 1. Can also be empty for the\nlast chunk if you set `stream_options: {\"include_usage\": true}`.", "type": { - "$id": "2907", + "$id": "3047", "kind": "array", "name": "Array12", "valueType": { - "$id": "2908", + "$id": "3048", "kind": "model", "name": "CreateChatCompletionStreamResponseChoice", "namespace": "OpenAI", @@ -32735,12 +34414,12 @@ "decorators": [], "properties": [ { - "$id": "2909", + "$id": "3049", "kind": "property", "name": "delta", "serializedName": "delta", "type": { - "$id": "2910", + "$id": "3050", "kind": "model", "name": "ChatCompletionStreamResponseDelta", "namespace": "OpenAI", @@ -32750,13 +34429,13 @@ "decorators": [], "properties": [ { - "$id": "2911", + "$id": "3051", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Response audio associated with the streaming chat delta payload.", "type": { - "$id": "2912", + "$id": "3052", "kind": "model", "name": "ChatCompletionMessageAudioChunk", "namespace": "OpenAI", @@ -32765,12 +34444,12 @@ "decorators": [], "properties": [ { - "$id": "2913", + "$id": "3053", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "2914", + "$id": "3054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32785,12 +34464,12 @@ "serializationOptions": {} }, { - "$id": "2915", + "$id": "3055", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "2916", + "$id": "3056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32805,12 +34484,12 @@ "serializationOptions": {} }, { - "$id": "2917", + "$id": "3057", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "2918", + "$id": "3058", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -32826,17 +34505,17 @@ "serializationOptions": {} }, { - "$id": "2919", + "$id": "3059", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "type": { - "$id": "2920", + "$id": "3060", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2921", + "$id": "3061", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -32864,16 +34543,16 @@ "serializationOptions": {} }, { - "$id": "2922", + "$id": "3062", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the chunk message.", "type": { - "$id": "2923", + "$id": "3063", "kind": "nullable", "type": { - "$id": "2924", + "$id": "3064", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32890,13 +34569,13 @@ "serializationOptions": {} }, { - "$id": "2925", + "$id": "3065", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.", "type": { - "$id": "2926", + "$id": "3066", "kind": "model", "name": "ChatCompletionStreamResponseDeltaFunctionCall", "namespace": "OpenAI", @@ -32905,12 +34584,12 @@ "decorators": [], "properties": [ { - "$id": "2927", + "$id": "3067", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "2928", + "$id": "3068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32925,12 +34604,12 @@ "serializationOptions": {} }, { - "$id": "2929", + "$id": "3069", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "2930", + "$id": "3070", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -32955,16 +34634,16 @@ "serializationOptions": {} }, { - "$id": "2931", + "$id": "3071", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$id": "2932", + "$id": "3072", "kind": "array", "name": "ArrayChatCompletionMessageToolCallChunk", "valueType": { - "$id": "2933", + "$id": "3073", "kind": "model", "name": "ChatCompletionMessageToolCallChunk", "namespace": "OpenAI", @@ -32973,12 +34652,12 @@ "decorators": [], "properties": [ { - "$id": "2934", + "$id": "3074", "kind": "property", "name": "index", "serializedName": "index", "type": { - "$id": "2935", + "$id": "3075", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -32993,13 +34672,13 @@ "serializationOptions": {} }, { - "$id": "2936", + "$id": "3076", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call.", "type": { - "$id": "2937", + "$id": "3077", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33014,13 +34693,13 @@ "serializationOptions": {} }, { - "$id": "2938", + "$id": "3078", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the tool. Currently, only `function` is supported.", "type": { - "$ref": "1309" + "$ref": "1449" }, "optional": true, "readOnly": false, @@ -33031,12 +34710,12 @@ "serializationOptions": {} }, { - "$id": "2939", + "$id": "3079", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "2940", + "$id": "3080", "kind": "model", "name": "ChatCompletionMessageToolCallChunkFunction", "namespace": "OpenAI", @@ -33045,13 +34724,13 @@ "decorators": [], "properties": [ { - "$id": "2941", + "$id": "3081", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "2942", + "$id": "3082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33066,13 +34745,13 @@ "serializationOptions": {} }, { - "$id": "2943", + "$id": "3083", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments to call the function with, as generated by the model in JSON format. Note that the model does not always generate valid JSON, and may hallucinate parameters not defined by your function schema. Validate the arguments in your code before calling your function.", "type": { - "$id": "2944", + "$id": "3084", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33110,13 +34789,13 @@ "serializationOptions": {} }, { - "$id": "2945", + "$id": "3085", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$ref": "153" + "$ref": "145" }, "optional": true, "readOnly": false, @@ -33127,16 +34806,16 @@ "serializationOptions": {} }, { - "$id": "2946", + "$id": "3086", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$id": "2947", + "$id": "3087", "kind": "nullable", "type": { - "$id": "2948", + "$id": "3088", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33163,16 +34842,16 @@ "serializationOptions": {} }, { - "$id": "2949", + "$id": "3089", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "Log probability information for the choice.", "type": { - "$id": "2950", + "$id": "3090", "kind": "nullable", "type": { - "$id": "2951", + "$id": "3091", "kind": "model", "name": "CreateChatCompletionStreamResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -33181,16 +34860,16 @@ "decorators": [], "properties": [ { - "$id": "2952", + "$id": "3092", "kind": "property", "name": "content", "serializedName": "content", "doc": "A list of message content tokens with log probability information.", "type": { - "$id": "2953", + "$id": "3093", "kind": "nullable", "type": { - "$ref": "2603" + "$ref": "2743" }, "namespace": "" }, @@ -33203,16 +34882,16 @@ "serializationOptions": {} }, { - "$id": "2954", + "$id": "3094", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "A list of message refusal tokens with log probability information.", "type": { - "$id": "2955", + "$id": "3095", "kind": "nullable", "type": { - "$ref": "2603" + "$ref": "2743" }, "namespace": "" }, @@ -33237,98 +34916,16 @@ "serializationOptions": {} }, { - "$id": "2956", + "$id": "3096", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence,\n`length` if the maximum number of tokens specified in the request was reached,\n`content_filter` if content was omitted due to a flag from our content filters,\n`tool_calls` if the model called a tool, or `function_call` (deprecated) if the model called a function.", "type": { - "$id": "2957", + "$id": "3097", "kind": "nullable", "type": { - "$id": "2958", - "kind": "enum", - "name": "CreateChatCompletionStreamResponseChoiceFinishReason", - "crossLanguageDefinitionId": "OpenAI.CreateChatCompletionStreamResponse.choice.finish_reason.anonymous", - "valueType": { - "$id": "2959", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "2960", - "kind": "enumvalue", - "name": "stop", - "value": "stop", - "valueType": { - "$ref": "2959" - }, - "enumType": { - "$ref": "2958" - }, - "decorators": [] - }, - { - "$id": "2961", - "kind": "enumvalue", - "name": "length", - "value": "length", - "valueType": { - "$ref": "2959" - }, - "enumType": { - "$ref": "2958" - }, - "decorators": [] - }, - { - "$id": "2962", - "kind": "enumvalue", - "name": "tool_calls", - "value": "tool_calls", - "valueType": { - "$ref": "2959" - }, - "enumType": { - "$ref": "2958" - }, - "decorators": [] - }, - { - "$id": "2963", - "kind": "enumvalue", - "name": "content_filter", - "value": "content_filter", - "valueType": { - "$ref": "2959" - }, - "enumType": { - "$ref": "2958" - }, - "decorators": [] - }, - { - "$id": "2964", - "kind": "enumvalue", - "name": "function_call", - "value": "function_call", - "valueType": { - "$ref": "2959" - }, - "enumType": { - "$ref": "2958" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Output", - "decorators": [] + "$ref": "260" }, "namespace": "" }, @@ -33341,13 +34938,13 @@ "serializationOptions": {} }, { - "$id": "2965", + "$id": "3098", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the choice in the list of choices.", "type": { - "$id": "2966", + "$id": "3099", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33375,18 +34972,18 @@ "serializationOptions": {} }, { - "$id": "2967", + "$id": "3100", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the chat completion was created. Each chunk has the same timestamp.", "type": { - "$id": "2968", + "$id": "3101", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "2969", + "$id": "3102", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -33404,13 +35001,13 @@ "serializationOptions": {} }, { - "$id": "2970", + "$id": "3103", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to generate the completion.", "type": { - "$id": "2971", + "$id": "3104", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33425,15 +35022,15 @@ "serializationOptions": {} }, { - "$id": "2972", + "$id": "3105", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$id": "2973", + "$id": "3106", "kind": "nullable", "type": { - "$ref": "161" + "$ref": "153" }, "namespace": "" }, @@ -33446,13 +35043,13 @@ "serializationOptions": {} }, { - "$id": "2974", + "$id": "3107", "kind": "property", "name": "system_fingerprint", "serializedName": "system_fingerprint", "doc": "This fingerprint represents the backend configuration that the model runs with.\nCan be used in conjunction with the `seed` request parameter to understand when backend changes have been made that might impact determinism.", "type": { - "$id": "2975", + "$id": "3108", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33467,13 +35064,13 @@ "serializationOptions": {} }, { - "$id": "2976", + "$id": "3109", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `chat.completion.chunk`.", "type": { - "$ref": "1311" + "$ref": "1451" }, "optional": false, "readOnly": false, @@ -33484,16 +35081,16 @@ "serializationOptions": {} }, { - "$id": "2977", + "$id": "3110", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "An optional field that will only be present when you set\n`stream_options: {\"include_usage\": true}` in your request. When present, it\ncontains a null value **except for the last chunk** which contains the\ntoken usage statistics for the entire request.\n\n**NOTE:** If the stream is interrupted or cancelled, you may not\nreceive the final usage chunk which contains the total token usage for\nthe request.", "type": { - "$id": "2978", + "$id": "3111", "kind": "nullable", "type": { - "$ref": "2633" + "$ref": "2773" }, "namespace": "" }, @@ -33508,28 +35105,28 @@ ] }, { - "$ref": "2908" + "$ref": "3048" }, { - "$ref": "2910" + "$ref": "3050" }, { - "$ref": "2912" + "$ref": "3052" }, { - "$ref": "2926" + "$ref": "3066" }, { - "$ref": "2933" + "$ref": "3073" }, { - "$ref": "2940" + "$ref": "3080" }, { - "$ref": "2951" + "$ref": "3091" }, { - "$id": "2979", + "$id": "3112", "kind": "model", "name": "UpdateChatCompletionRequest", "namespace": "", @@ -33538,13 +35135,13 @@ "decorators": [], "properties": [ { - "$id": "2980", + "$id": "3113", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": false, "readOnly": false, @@ -33561,7 +35158,7 @@ ] }, { - "$id": "2981", + "$id": "3114", "kind": "model", "name": "ChatCompletionDeleted", "namespace": "OpenAI", @@ -33570,13 +35167,13 @@ "decorators": [], "properties": [ { - "$id": "2982", + "$id": "3115", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object being deleted.", "type": { - "$ref": "1313" + "$ref": "1453" }, "optional": false, "readOnly": false, @@ -33591,13 +35188,13 @@ } }, { - "$id": "2983", + "$id": "3116", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the chat completion that was deleted.", "type": { - "$id": "2984", + "$id": "3117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33616,13 +35213,13 @@ } }, { - "$id": "2985", + "$id": "3118", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the chat completion was deleted.", "type": { - "$id": "2986", + "$id": "3119", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -33643,7 +35240,7 @@ ] }, { - "$id": "2987", + "$id": "3120", "kind": "model", "name": "ChatCompletionMessageList", "namespace": "OpenAI", @@ -33653,13 +35250,13 @@ "decorators": [], "properties": [ { - "$id": "2988", + "$id": "3121", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1315" + "$ref": "1455" }, "optional": false, "readOnly": false, @@ -33674,17 +35271,17 @@ } }, { - "$id": "2989", + "$id": "3122", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of chat completion message objects.", "type": { - "$id": "2990", + "$id": "3123", "kind": "array", "name": "Array13", "valueType": { - "$id": "2991", + "$id": "3124", "kind": "model", "name": "ChatCompletionMessageListDatum", "namespace": "OpenAI", @@ -33693,13 +35290,13 @@ "decorators": [], "properties": [ { - "$id": "2992", + "$id": "3125", "kind": "property", "name": "content", "serializedName": "content", "doc": "The contents of the message.", "type": { - "$ref": "2546" + "$ref": "2686" }, "optional": false, "readOnly": false, @@ -33714,13 +35311,13 @@ } }, { - "$id": "2993", + "$id": "3126", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal message generated by the model.", "type": { - "$ref": "2549" + "$ref": "2689" }, "optional": false, "readOnly": false, @@ -33735,12 +35332,12 @@ } }, { - "$id": "2994", + "$id": "3127", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$ref": "2552" + "$ref": "2692" }, "optional": true, "readOnly": true, @@ -33755,13 +35352,13 @@ } }, { - "$id": "2995", + "$id": "3128", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Annotations for the message, when applicable, as when using the\n[web search tool](/docs/guides/tools-web-search?api-mode=chat).", "type": { - "$ref": "2565" + "$ref": "2705" }, "optional": true, "readOnly": true, @@ -33776,21 +35373,21 @@ } }, { - "$id": "2996", + "$id": "3129", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the author of this message.", "type": { - "$id": "2997", + "$id": "3130", "kind": "enumvalue", "name": "assistant", "value": "assistant", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -33807,13 +35404,13 @@ } }, { - "$id": "2998", + "$id": "3131", "kind": "property", "name": "function_call", "serializedName": "function_call", "doc": "Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.", "type": { - "$ref": "2581" + "$ref": "2721" }, "optional": true, "readOnly": false, @@ -33828,13 +35425,13 @@ } }, { - "$id": "2999", + "$id": "3132", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "If the audio output modality is requested, this object contains data\nabout the audio response from the model. [Learn more](/docs/guides/audio).", "type": { - "$ref": "2587" + "$ref": "2727" }, "optional": true, "readOnly": false, @@ -33849,13 +35446,13 @@ } }, { - "$id": "3000", + "$id": "3133", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the chat message.", "type": { - "$id": "3001", + "$id": "3134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33891,13 +35488,13 @@ } }, { - "$id": "3002", + "$id": "3135", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat message in the data array.", "type": { - "$id": "3003", + "$id": "3136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33916,13 +35513,13 @@ } }, { - "$id": "3004", + "$id": "3137", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat message in the data array.", "type": { - "$id": "3005", + "$id": "3138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -33941,13 +35538,13 @@ } }, { - "$id": "3006", + "$id": "3139", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more chat messages available.", "type": { - "$id": "3007", + "$id": "3140", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -33968,10 +35565,10 @@ ] }, { - "$ref": "2991" + "$ref": "3124" }, { - "$id": "3008", + "$id": "3141", "kind": "model", "name": "CreateEmbeddingRequest", "namespace": "OpenAI", @@ -33980,35 +35577,35 @@ "decorators": [], "properties": [ { - "$id": "3009", + "$id": "3142", "kind": "property", "name": "input", "serializedName": "input", "doc": "Input text to embed, encoded as a string or array of tokens. To embed multiple inputs in a single request, pass an array of strings or array of token arrays. The input must not exceed the max input tokens for the model (8192 tokens for all embedding models), cannot be an empty string, and any array must be 2048 dimensions or less. [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) for counting tokens. In addition to the per-input token limit, all embedding models enforce a maximum of 300,000 tokens summed across all inputs in a single request.", "type": { - "$id": "3010", + "$id": "3143", "kind": "union", "name": "CreateEmbeddingRequestInput", "variantTypes": [ { - "$id": "3011", + "$id": "3144", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2155" + "$ref": "2295" }, { - "$ref": "2375" + "$ref": "2515" }, { - "$id": "3012", + "$id": "3145", "kind": "array", "name": "ArrayArray", "valueType": { - "$ref": "2375" + "$ref": "2515" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -34030,13 +35627,13 @@ } }, { - "$id": "3013", + "$id": "3146", "kind": "property", "name": "model", "serializedName": "model", "doc": "ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.", "type": { - "$ref": "268" + "$ref": "267" }, "optional": false, "readOnly": false, @@ -34051,13 +35648,13 @@ } }, { - "$id": "3014", + "$id": "3147", "kind": "property", "name": "encoding_format", "serializedName": "encoding_format", "doc": "The format to return the embeddings in. Can be either `float` or [`base64`](https://pypi.org/project/pybase64/).", "type": { - "$ref": "273" + "$ref": "272" }, "optional": true, "readOnly": false, @@ -34072,13 +35669,13 @@ } }, { - "$id": "3015", + "$id": "3148", "kind": "property", "name": "dimensions", "serializedName": "dimensions", "doc": "The number of dimensions the resulting output embeddings should have. Only supported in `text-embedding-3` and later models.", "type": { - "$id": "3016", + "$id": "3149", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34097,13 +35694,13 @@ } }, { - "$id": "3017", + "$id": "3150", "kind": "property", "name": "user", "serializedName": "user", "doc": "A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices#end-user-ids).", "type": { - "$id": "3018", + "$id": "3151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34124,7 +35721,7 @@ ] }, { - "$id": "3019", + "$id": "3152", "kind": "model", "name": "CreateEmbeddingResponse", "namespace": "OpenAI", @@ -34133,17 +35730,17 @@ "decorators": [], "properties": [ { - "$id": "3020", + "$id": "3153", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of embeddings generated by the model.", "type": { - "$id": "3021", + "$id": "3154", "kind": "array", "name": "ArrayEmbedding", "valueType": { - "$id": "3022", + "$id": "3155", "kind": "model", "name": "Embedding", "namespace": "OpenAI", @@ -34153,13 +35750,13 @@ "decorators": [], "properties": [ { - "$id": "3023", + "$id": "3156", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the embedding in the list of embeddings.", "type": { - "$id": "3024", + "$id": "3157", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34178,22 +35775,22 @@ } }, { - "$id": "3025", + "$id": "3158", "kind": "property", "name": "embedding", "serializedName": "embedding", "doc": "The embedding vector, which is a list of floats. The length of vector depends on the model as listed in the [embedding guide](/docs/guides/embeddings).", "type": { - "$id": "3026", + "$id": "3159", "kind": "union", "name": "EmbeddingEmbedding", "variantTypes": [ { - "$id": "3027", + "$id": "3160", "kind": "array", "name": "Array14", "valueType": { - "$id": "3028", + "$id": "3161", "kind": "float", "name": "float", "crossLanguageDefinitionId": "TypeSpec.float", @@ -34203,7 +35800,7 @@ "decorators": [] }, { - "$id": "3029", + "$id": "3162", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34226,13 +35823,13 @@ } }, { - "$id": "3030", + "$id": "3163", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"embedding\".", "type": { - "$ref": "1317" + "$ref": "1457" }, "optional": false, "readOnly": false, @@ -34264,13 +35861,13 @@ } }, { - "$id": "3031", + "$id": "3164", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model used to generate the embedding.", "type": { - "$id": "3032", + "$id": "3165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34289,13 +35886,13 @@ } }, { - "$id": "3033", + "$id": "3166", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"list\".", "type": { - "$ref": "1319" + "$ref": "1459" }, "optional": false, "readOnly": false, @@ -34310,13 +35907,13 @@ } }, { - "$id": "3034", + "$id": "3167", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "The usage information for the request.", "type": { - "$id": "3035", + "$id": "3168", "kind": "model", "name": "CreateEmbeddingResponseUsage", "namespace": "OpenAI", @@ -34325,13 +35922,13 @@ "decorators": [], "properties": [ { - "$id": "3036", + "$id": "3169", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of tokens used by the prompt.", "type": { - "$id": "3037", + "$id": "3170", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34350,13 +35947,13 @@ } }, { - "$id": "3038", + "$id": "3171", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used by the request.", "type": { - "$id": "3039", + "$id": "3172", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34391,13 +35988,13 @@ ] }, { - "$ref": "3022" + "$ref": "3155" }, { - "$ref": "3035" + "$ref": "3168" }, { - "$id": "3040", + "$id": "3173", "kind": "model", "name": "ListFilesResponse", "namespace": "OpenAI", @@ -34406,12 +36003,12 @@ "decorators": [], "properties": [ { - "$id": "3041", + "$id": "3174", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1321" + "$ref": "1461" }, "optional": false, "readOnly": false, @@ -34426,16 +36023,16 @@ } }, { - "$id": "3042", + "$id": "3175", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3043", + "$id": "3176", "kind": "array", "name": "ArrayOpenAiFile", "valueType": { - "$id": "3044", + "$id": "3177", "kind": "model", "name": "OpenAIFile", "namespace": "OpenAI", @@ -34445,13 +36042,13 @@ "decorators": [], "properties": [ { - "$id": "3045", + "$id": "3178", "kind": "property", "name": "id", "serializedName": "id", "doc": "The file identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3046", + "$id": "3179", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34470,16 +36067,16 @@ } }, { - "$id": "3047", + "$id": "3180", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The size of the file, in bytes.", "type": { - "$id": "3048", + "$id": "3181", "kind": "nullable", "type": { - "$id": "3049", + "$id": "3182", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -34500,18 +36097,18 @@ } }, { - "$id": "3050", + "$id": "3183", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the file was created.", "type": { - "$id": "3051", + "$id": "3184", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3052", + "$id": "3185", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34533,18 +36130,18 @@ } }, { - "$id": "3053", + "$id": "3186", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the file will expire.", "type": { - "$id": "3054", + "$id": "3187", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3055", + "$id": "3188", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -34566,13 +36163,13 @@ } }, { - "$id": "3056", + "$id": "3189", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "3057", + "$id": "3190", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34591,13 +36188,13 @@ } }, { - "$id": "3058", + "$id": "3191", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `file`.", "type": { - "$ref": "1323" + "$ref": "1463" }, "optional": false, "readOnly": false, @@ -34612,13 +36209,13 @@ } }, { - "$id": "3059", + "$id": "3192", "kind": "property", "name": "purpose", "serializedName": "purpose", "doc": "The intended purpose of the file. Supported values are `assistants`, `assistants_output`, `batch`, `batch_output`, `fine-tune`, `fine-tune-results` and `vision`.", "type": { - "$ref": "277" + "$ref": "276" }, "optional": false, "readOnly": false, @@ -34633,13 +36230,13 @@ } }, { - "$id": "3060", + "$id": "3193", "kind": "property", "name": "status", "serializedName": "status", "doc": "Deprecated. The current status of the file, which can be either `uploaded`, `processed`, or `error`.", "type": { - "$ref": "288" + "$ref": "287" }, "optional": false, "readOnly": false, @@ -34654,13 +36251,13 @@ } }, { - "$id": "3061", + "$id": "3194", "kind": "property", "name": "status_details", "serializedName": "status_details", "doc": "Deprecated. For details on why a fine-tuning training file failed validation, see the `error` field on `fine_tuning.job`.", "type": { - "$id": "3062", + "$id": "3195", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34696,12 +36293,12 @@ } }, { - "$id": "3063", + "$id": "3196", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3064", + "$id": "3197", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34720,12 +36317,12 @@ } }, { - "$id": "3065", + "$id": "3198", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3066", + "$id": "3199", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34744,12 +36341,12 @@ } }, { - "$id": "3067", + "$id": "3200", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3068", + "$id": "3201", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -34770,10 +36367,10 @@ ] }, { - "$ref": "3044" + "$ref": "3177" }, { - "$id": "3069", + "$id": "3202", "kind": "model", "name": "CreateFileRequest", "namespace": "OpenAI", @@ -34782,13 +36379,13 @@ "decorators": [], "properties": [ { - "$id": "3070", + "$id": "3203", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3071", + "$id": "3204", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -34808,19 +36405,18 @@ "defaultContentTypes": [ "application/octet-stream" ], - "name": "file", - "headers": [] + "name": "file" } } }, { - "$id": "3072", + "$id": "3205", "kind": "property", "name": "purpose", "serializedName": "purpose", "doc": "The intended purpose of the uploaded file. One of: - `assistants`: Used in the Assistants API - `batch`: Used in the Batch API - `fine-tune`: Used for fine-tuning - `vision`: Images used for vision fine-tuning - `user_data`: Flexible file type for any purpose - `evals`: Used for eval data sets", "type": { - "$ref": "293" + "$ref": "292" }, "optional": false, "readOnly": false, @@ -34835,15 +36431,14 @@ "defaultContentTypes": [ "text/plain" ], - "name": "purpose", - "headers": [] + "name": "purpose" } } } ] }, { - "$id": "3073", + "$id": "3206", "kind": "model", "name": "DeleteFileResponse", "namespace": "OpenAI", @@ -34852,12 +36447,12 @@ "decorators": [], "properties": [ { - "$id": "3074", + "$id": "3207", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3075", + "$id": "3208", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34876,12 +36471,12 @@ } }, { - "$id": "3076", + "$id": "3209", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1325" + "$ref": "1465" }, "optional": false, "readOnly": false, @@ -34896,12 +36491,12 @@ } }, { - "$id": "3077", + "$id": "3210", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3078", + "$id": "3211", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -34922,7 +36517,7 @@ ] }, { - "$id": "3079", + "$id": "3212", "kind": "model", "name": "ListFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -34931,16 +36526,16 @@ "decorators": [], "properties": [ { - "$id": "3080", + "$id": "3213", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3081", + "$id": "3214", "kind": "array", "name": "ArrayFineTuningCheckpointPermission", "valueType": { - "$id": "3082", + "$id": "3215", "kind": "model", "name": "FineTuningCheckpointPermission", "namespace": "OpenAI", @@ -34950,13 +36545,13 @@ "decorators": [], "properties": [ { - "$id": "3083", + "$id": "3216", "kind": "property", "name": "id", "serializedName": "id", "doc": "The permission identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3084", + "$id": "3217", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -34975,18 +36570,18 @@ } }, { - "$id": "3085", + "$id": "3218", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the permission was created.", "type": { - "$id": "3086", + "$id": "3219", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3087", + "$id": "3220", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35008,13 +36603,13 @@ } }, { - "$id": "3088", + "$id": "3221", "kind": "property", "name": "project_id", "serializedName": "project_id", "doc": "The project identifier that the permission is for.", "type": { - "$id": "3089", + "$id": "3222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35033,13 +36628,13 @@ } }, { - "$id": "3090", + "$id": "3223", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"checkpoint.permission\".", "type": { - "$ref": "1327" + "$ref": "1467" }, "optional": false, "readOnly": false, @@ -35071,12 +36666,12 @@ } }, { - "$id": "3091", + "$id": "3224", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1329" + "$ref": "1469" }, "optional": false, "readOnly": false, @@ -35091,15 +36686,15 @@ } }, { - "$id": "3092", + "$id": "3225", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3093", + "$id": "3226", "kind": "nullable", "type": { - "$id": "3094", + "$id": "3227", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35120,15 +36715,15 @@ } }, { - "$id": "3095", + "$id": "3228", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3096", + "$id": "3229", "kind": "nullable", "type": { - "$id": "3097", + "$id": "3230", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35149,12 +36744,12 @@ } }, { - "$id": "3098", + "$id": "3231", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3099", + "$id": "3232", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -35175,10 +36770,10 @@ ] }, { - "$ref": "3082" + "$ref": "3215" }, { - "$id": "3100", + "$id": "3233", "kind": "model", "name": "CreateFineTuningCheckpointPermissionRequest", "namespace": "OpenAI", @@ -35187,13 +36782,13 @@ "decorators": [], "properties": [ { - "$id": "3101", + "$id": "3234", "kind": "property", "name": "project_ids", "serializedName": "project_ids", "doc": "The project identifiers to grant access to.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -35210,7 +36805,7 @@ ] }, { - "$id": "3102", + "$id": "3235", "kind": "model", "name": "DeleteFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -35219,13 +36814,13 @@ "decorators": [], "properties": [ { - "$id": "3103", + "$id": "3236", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the fine-tuned model checkpoint permission that was deleted.", "type": { - "$id": "3104", + "$id": "3237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35244,13 +36839,13 @@ } }, { - "$id": "3105", + "$id": "3238", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"checkpoint.permission\".", "type": { - "$ref": "1331" + "$ref": "1471" }, "optional": false, "readOnly": false, @@ -35265,13 +36860,13 @@ } }, { - "$id": "3106", + "$id": "3239", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the fine-tuned model checkpoint permission was successfully deleted.", "type": { - "$id": "3107", + "$id": "3240", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -35292,7 +36887,7 @@ ] }, { - "$id": "3108", + "$id": "3241", "kind": "model", "name": "CreateFineTuningJobRequest", "namespace": "OpenAI", @@ -35301,13 +36896,13 @@ "decorators": [], "properties": [ { - "$id": "3109", + "$id": "3242", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to fine-tune. You can select one of the\n[supported models](/docs/guides/fine-tuning#which-models-can-be-fine-tuned).", "type": { - "$ref": "301" + "$ref": "300" }, "optional": false, "readOnly": false, @@ -35322,13 +36917,13 @@ } }, { - "$id": "3110", + "$id": "3243", "kind": "property", "name": "training_file", "serializedName": "training_file", "doc": "The ID of an uploaded file that contains training data.\n\nSee [upload file](/docs/api-reference/files/create) for how to upload a file.\n\nYour dataset must be formatted as a JSONL file. Additionally, you must upload your file with the purpose `fine-tune`.\n\nThe contents of the file should differ depending on if the model uses the [chat](/docs/api-reference/fine-tuning/chat-input), [completions](/docs/api-reference/fine-tuning/completions-input) format, or if the fine-tuning method uses the [preference](/docs/api-reference/fine-tuning/preference-input) format.\n\nSee the [fine-tuning guide](/docs/guides/model-optimization) for more details.", "type": { - "$id": "3111", + "$id": "3244", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35347,13 +36942,13 @@ } }, { - "$id": "3112", + "$id": "3245", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "doc": "The hyperparameters used for the fine-tuning job.\nThis value is now deprecated in favor of `method`, and should be passed in under the `method` parameter.", "type": { - "$id": "3113", + "$id": "3246", "kind": "model", "name": "CreateFineTuningJobRequestHyperparameters", "namespace": "OpenAI", @@ -35362,21 +36957,21 @@ "decorators": [], "properties": [ { - "$id": "3114", + "$id": "3247", "kind": "property", "name": "batch_size", "serializedName": "batch_size", "doc": "Number of examples in each batch. A larger batch size means that model parameters\nare updated less frequently, but with lower variance.", "type": { - "$id": "3115", + "$id": "3248", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1333" + "$ref": "1473" }, { - "$id": "3116", + "$id": "3249", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35399,21 +36994,21 @@ } }, { - "$id": "3117", + "$id": "3250", "kind": "property", "name": "learning_rate_multiplier", "serializedName": "learning_rate_multiplier", "doc": "Scaling factor for the learning rate. A smaller learning rate may be useful to avoid\noverfitting.", "type": { - "$id": "3118", + "$id": "3251", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1335" + "$ref": "1475" }, { - "$id": "3119", + "$id": "3252", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -35436,21 +37031,21 @@ } }, { - "$id": "3120", + "$id": "3253", "kind": "property", "name": "n_epochs", "serializedName": "n_epochs", "doc": "The number of epochs to train the model for. An epoch refers to one full cycle\nthrough the training dataset.", "type": { - "$id": "3121", + "$id": "3254", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1337" + "$ref": "1477" }, { - "$id": "3122", + "$id": "3255", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35487,16 +37082,16 @@ } }, { - "$id": "3123", + "$id": "3256", "kind": "property", "name": "suffix", "serializedName": "suffix", "doc": "A string of up to 64 characters that will be added to your fine-tuned model name.\n\nFor example, a `suffix` of \"custom-model-name\" would produce a model name like `ft:gpt-4o-mini:openai:custom-model-name:7p4lURel`.", "type": { - "$id": "3124", + "$id": "3257", "kind": "nullable", "type": { - "$id": "3125", + "$id": "3258", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35517,16 +37112,16 @@ } }, { - "$id": "3126", + "$id": "3259", "kind": "property", "name": "validation_file", "serializedName": "validation_file", "doc": "The ID of an uploaded file that contains validation data.\n\nIf you provide this file, the data is used to generate validation\nmetrics periodically during fine-tuning. These metrics can be viewed in\nthe fine-tuning results file.\nThe same data should not be present in both train and validation files.\n\nYour dataset must be formatted as a JSONL file. You must upload your file with the purpose `fine-tune`.\n\nSee the [fine-tuning guide](/docs/guides/model-optimization) for more details.", "type": { - "$id": "3127", + "$id": "3260", "kind": "nullable", "type": { - "$id": "3128", + "$id": "3261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35547,20 +37142,20 @@ } }, { - "$id": "3129", + "$id": "3262", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for your fine-tuning job.", "type": { - "$id": "3130", + "$id": "3263", "kind": "nullable", "type": { - "$id": "3131", + "$id": "3264", "kind": "array", "name": "ArrayCreateFineTuningJobRequestIntegration", "valueType": { - "$id": "3132", + "$id": "3265", "kind": "model", "name": "CreateFineTuningJobRequestIntegration", "namespace": "OpenAI", @@ -35568,12 +37163,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3133", + "$id": "3266", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "307" + "$ref": "306" }, "optional": false, "readOnly": false, @@ -35589,12 +37184,12 @@ }, "properties": [ { - "$ref": "3133" + "$ref": "3266" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3134", + "$id": "3267", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegration", "namespace": "OpenAI", @@ -35603,16 +37198,16 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3132" + "$ref": "3265" }, "properties": [ { - "$id": "3135", + "$id": "3268", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "309" + "$ref": "308" }, "optional": false, "readOnly": false, @@ -35627,12 +37222,12 @@ } }, { - "$id": "3136", + "$id": "3269", "kind": "property", "name": "wandb", "serializedName": "wandb", "type": { - "$id": "3137", + "$id": "3270", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegrationWandb", "namespace": "OpenAI", @@ -35641,12 +37236,12 @@ "decorators": [], "properties": [ { - "$id": "3138", + "$id": "3271", "kind": "property", "name": "project", "serializedName": "project", "type": { - "$id": "3139", + "$id": "3272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35665,15 +37260,15 @@ } }, { - "$id": "3140", + "$id": "3273", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3141", + "$id": "3274", "kind": "nullable", "type": { - "$id": "3142", + "$id": "3275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35694,15 +37289,15 @@ } }, { - "$id": "3143", + "$id": "3276", "kind": "property", "name": "entity", "serializedName": "entity", "type": { - "$id": "3144", + "$id": "3277", "kind": "nullable", "type": { - "$id": "3145", + "$id": "3278", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -35723,12 +37318,12 @@ } }, { - "$id": "3146", + "$id": "3279", "kind": "property", "name": "tags", "serializedName": "tags", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -35778,16 +37373,16 @@ } }, { - "$id": "3147", + "$id": "3280", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed controls the reproducibility of the job. Passing in the same seed and job parameters should produce the same results, but may differ in rare cases.\nIf a seed is not specified, one will be generated for you.", "type": { - "$id": "3148", + "$id": "3281", "kind": "nullable", "type": { - "$id": "3149", + "$id": "3282", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35808,12 +37403,12 @@ } }, { - "$id": "3150", + "$id": "3283", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$id": "3151", + "$id": "3284", "kind": "model", "name": "FineTuneMethod", "namespace": "OpenAI", @@ -35823,13 +37418,13 @@ "decorators": [], "properties": [ { - "$id": "3152", + "$id": "3285", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of method. Is either `supervised`, `dpo`, or `reinforcement`.", "type": { - "$ref": "310" + "$ref": "309" }, "optional": false, "readOnly": false, @@ -35844,12 +37439,12 @@ } }, { - "$id": "3153", + "$id": "3286", "kind": "property", "name": "supervised", "serializedName": "supervised", "type": { - "$id": "3154", + "$id": "3287", "kind": "model", "name": "FineTuneSupervisedMethod", "namespace": "OpenAI", @@ -35859,12 +37454,12 @@ "decorators": [], "properties": [ { - "$id": "3155", + "$id": "3288", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3156", + "$id": "3289", "kind": "model", "name": "FineTuneSupervisedHyperparameters", "namespace": "OpenAI", @@ -35874,21 +37469,21 @@ "decorators": [], "properties": [ { - "$id": "3157", + "$id": "3290", "kind": "property", "name": "batch_size", "serializedName": "batch_size", "doc": "Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.", "type": { - "$id": "3158", + "$id": "3291", "kind": "union", "name": "FineTuneSupervisedHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1339" + "$ref": "1479" }, { - "$id": "3159", + "$id": "3292", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -35911,21 +37506,21 @@ } }, { - "$id": "3160", + "$id": "3293", "kind": "property", "name": "learning_rate_multiplier", "serializedName": "learning_rate_multiplier", "doc": "Scaling factor for the learning rate. A smaller learning rate may be useful to avoid overfitting.", "type": { - "$id": "3161", + "$id": "3294", "kind": "union", "name": "FineTuneSupervisedHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1341" + "$ref": "1481" }, { - "$id": "3162", + "$id": "3295", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -35948,21 +37543,21 @@ } }, { - "$id": "3163", + "$id": "3296", "kind": "property", "name": "n_epochs", "serializedName": "n_epochs", "doc": "The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.", "type": { - "$id": "3164", + "$id": "3297", "kind": "union", "name": "FineTuneSupervisedHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1343" + "$ref": "1483" }, { - "$id": "3165", + "$id": "3298", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36013,12 +37608,12 @@ } }, { - "$id": "3166", + "$id": "3299", "kind": "property", "name": "dpo", "serializedName": "dpo", "type": { - "$id": "3167", + "$id": "3300", "kind": "model", "name": "FineTuneDPOMethod", "namespace": "OpenAI", @@ -36028,12 +37623,12 @@ "decorators": [], "properties": [ { - "$id": "3168", + "$id": "3301", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3169", + "$id": "3302", "kind": "model", "name": "FineTuneDPOHyperparameters", "namespace": "OpenAI", @@ -36043,21 +37638,21 @@ "decorators": [], "properties": [ { - "$id": "3170", + "$id": "3303", "kind": "property", "name": "beta", "serializedName": "beta", "doc": "The beta value for the DPO method. A higher beta value will increase the weight of the penalty between the policy and reference model.", "type": { - "$id": "3171", + "$id": "3304", "kind": "union", "name": "FineTuneDPOHyperparametersBeta", "variantTypes": [ { - "$ref": "1345" + "$ref": "1485" }, { - "$id": "3172", + "$id": "3305", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -36080,21 +37675,21 @@ } }, { - "$id": "3173", + "$id": "3306", "kind": "property", "name": "batch_size", "serializedName": "batch_size", "doc": "Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.", "type": { - "$id": "3174", + "$id": "3307", "kind": "union", "name": "FineTuneDPOHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1347" + "$ref": "1487" }, { - "$id": "3175", + "$id": "3308", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36117,21 +37712,21 @@ } }, { - "$id": "3176", + "$id": "3309", "kind": "property", "name": "learning_rate_multiplier", "serializedName": "learning_rate_multiplier", "doc": "Scaling factor for the learning rate. A smaller learning rate may be useful to avoid overfitting.", "type": { - "$id": "3177", + "$id": "3310", "kind": "union", "name": "FineTuneDPOHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1349" + "$ref": "1489" }, { - "$id": "3178", + "$id": "3311", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -36154,21 +37749,21 @@ } }, { - "$id": "3179", + "$id": "3312", "kind": "property", "name": "n_epochs", "serializedName": "n_epochs", "doc": "The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.", "type": { - "$id": "3180", + "$id": "3313", "kind": "union", "name": "FineTuneDPOHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1351" + "$ref": "1491" }, { - "$id": "3181", + "$id": "3314", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -36219,12 +37814,12 @@ } }, { - "$id": "3182", + "$id": "3315", "kind": "property", "name": "reinforcement", "serializedName": "reinforcement", "type": { - "$id": "3183", + "$id": "3316", "kind": "model", "name": "FineTuneReinforcementMethod", "namespace": "OpenAI", @@ -36234,18 +37829,18 @@ "decorators": [], "properties": [ { - "$id": "3184", + "$id": "3317", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3185", + "$id": "3318", "kind": "union", "name": "FineTuneReinforcementMethodGrader", "variantTypes": [ { - "$id": "3186", + "$id": "3319", "kind": "model", "name": "GraderStringCheck", "namespace": "OpenAI", @@ -36255,7 +37850,7 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$id": "3187", + "$id": "3320", "kind": "model", "name": "Grader", "namespace": "OpenAI", @@ -36263,12 +37858,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3188", + "$id": "3321", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "315" + "$ref": "314" }, "optional": false, "readOnly": false, @@ -36284,15 +37879,15 @@ }, "properties": [ { - "$ref": "3188" + "$ref": "3321" } ], "discriminatedSubtypes": { "string_check": { - "$ref": "3186" + "$ref": "3319" }, "text_similarity": { - "$id": "3189", + "$id": "3322", "kind": "model", "name": "GraderTextSimilarity", "namespace": "OpenAI", @@ -36302,17 +37897,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3187" + "$ref": "3320" }, "properties": [ { - "$id": "3190", + "$id": "3323", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "318" + "$ref": "317" }, "optional": false, "readOnly": false, @@ -36327,13 +37922,13 @@ } }, { - "$id": "3191", + "$id": "3324", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3192", + "$id": "3325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36352,13 +37947,13 @@ } }, { - "$id": "3193", + "$id": "3326", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3194", + "$id": "3327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36377,13 +37972,13 @@ } }, { - "$id": "3195", + "$id": "3328", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3196", + "$id": "3329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36402,13 +37997,13 @@ } }, { - "$id": "3197", + "$id": "3330", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", "doc": "The evaluation metric to use. One of `fuzzy_match`, `bleu`, `gleu`, `meteor`, `rouge_1`, `rouge_2`, `rouge_3`, `rouge_4`, `rouge_5`, or `rouge_l`.", "type": { - "$ref": "329" + "$ref": "328" }, "optional": false, "readOnly": false, @@ -36425,7 +38020,7 @@ ] }, "python": { - "$id": "3198", + "$id": "3331", "kind": "model", "name": "GraderPython", "namespace": "OpenAI", @@ -36435,17 +38030,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3187" + "$ref": "3320" }, "properties": [ { - "$id": "3199", + "$id": "3332", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "321" + "$ref": "320" }, "optional": false, "readOnly": false, @@ -36460,13 +38055,13 @@ } }, { - "$id": "3200", + "$id": "3333", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3201", + "$id": "3334", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36485,13 +38080,13 @@ } }, { - "$id": "3202", + "$id": "3335", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3203", + "$id": "3336", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36510,13 +38105,13 @@ } }, { - "$id": "3204", + "$id": "3337", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3205", + "$id": "3338", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36537,7 +38132,7 @@ ] }, "score_model": { - "$id": "3206", + "$id": "3339", "kind": "model", "name": "GraderScoreModel", "namespace": "OpenAI", @@ -36547,17 +38142,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3187" + "$ref": "3320" }, "properties": [ { - "$id": "3207", + "$id": "3340", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "319" + "$ref": "318" }, "optional": false, "readOnly": false, @@ -36572,13 +38167,13 @@ } }, { - "$id": "3208", + "$id": "3341", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3209", + "$id": "3342", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36597,13 +38192,13 @@ } }, { - "$id": "3210", + "$id": "3343", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3211", + "$id": "3344", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36622,13 +38217,13 @@ } }, { - "$id": "3212", + "$id": "3345", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3213", + "$id": "3346", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -36647,17 +38242,17 @@ } }, { - "$id": "3214", + "$id": "3347", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3215", + "$id": "3348", "kind": "array", "name": "ArrayEvalItem", "valueType": { - "$id": "3216", + "$id": "3349", "kind": "model", "name": "EvalItem", "namespace": "OpenAI", @@ -36667,13 +38262,13 @@ "decorators": [], "properties": [ { - "$id": "3217", + "$id": "3350", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message input. One of `user`, `assistant`, `system`, or\n`developer`.", "type": { - "$ref": "341" + "$ref": "340" }, "optional": false, "readOnly": false, @@ -36688,25 +38283,25 @@ } }, { - "$id": "3218", + "$id": "3351", "kind": "property", "name": "content", "serializedName": "content", "doc": "Text inputs to the model - can contain template strings.", "type": { - "$id": "3219", + "$id": "3352", "kind": "union", "name": "EvalItemContent1", "variantTypes": [ { - "$id": "3220", + "$id": "3353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3221", + "$id": "3354", "kind": "model", "name": "EvalItemContent", "namespace": "OpenAI", @@ -36714,12 +38309,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3222", + "$id": "3355", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "347" + "$ref": "346" }, "optional": false, "readOnly": false, @@ -36735,12 +38330,12 @@ }, "properties": [ { - "$ref": "3222" + "$ref": "3355" } ], "discriminatedSubtypes": { "input_text": { - "$id": "3223", + "$id": "3356", "kind": "model", "name": "EvalItemContentInputText", "namespace": "OpenAI", @@ -36749,16 +38344,16 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$ref": "3221" + "$ref": "3354" }, "properties": [ { - "$id": "3224", + "$id": "3357", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "349" + "$ref": "348" }, "optional": false, "readOnly": false, @@ -36773,12 +38368,12 @@ } }, { - "$id": "3225", + "$id": "3358", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3226", + "$id": "3359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36799,7 +38394,7 @@ ] }, "output_text": { - "$id": "3227", + "$id": "3360", "kind": "model", "name": "EvalItemContentOutputText", "namespace": "OpenAI", @@ -36808,16 +38403,16 @@ "discriminatorValue": "output_text", "decorators": [], "baseModel": { - "$ref": "3221" + "$ref": "3354" }, "properties": [ { - "$id": "3228", + "$id": "3361", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "350" + "$ref": "349" }, "optional": false, "readOnly": false, @@ -36832,12 +38427,12 @@ } }, { - "$id": "3229", + "$id": "3362", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3230", + "$id": "3363", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36876,13 +38471,13 @@ } }, { - "$id": "3231", + "$id": "3364", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the message input. Always `message`.", "type": { - "$ref": "1353" + "$ref": "1493" }, "optional": true, "readOnly": false, @@ -36914,13 +38509,13 @@ } }, { - "$id": "3232", + "$id": "3365", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2396" + "$ref": "2536" }, "optional": true, "readOnly": false, @@ -36937,7 +38532,7 @@ ] }, "multi": { - "$id": "3233", + "$id": "3366", "kind": "model", "name": "GraderMulti", "namespace": "OpenAI", @@ -36947,17 +38542,17 @@ "discriminatorValue": "multi", "decorators": [], "baseModel": { - "$ref": "3187" + "$ref": "3320" }, "properties": [ { - "$id": "3234", + "$id": "3367", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `multi`.", "type": { - "$ref": "322" + "$ref": "321" }, "optional": false, "readOnly": false, @@ -36972,13 +38567,13 @@ } }, { - "$id": "3235", + "$id": "3368", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3236", + "$id": "3369", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -36997,29 +38592,29 @@ } }, { - "$id": "3237", + "$id": "3370", "kind": "property", "name": "graders", "serializedName": "graders", "type": { - "$id": "3238", + "$id": "3371", "kind": "union", "name": "GraderMultiGraders", "variantTypes": [ { - "$ref": "3186" + "$ref": "3319" }, { - "$ref": "3189" + "$ref": "3322" }, { - "$ref": "3198" + "$ref": "3331" }, { - "$ref": "3206" + "$ref": "3339" }, { - "$id": "3239", + "$id": "3372", "kind": "model", "name": "GraderLabelModel", "namespace": "OpenAI", @@ -37029,17 +38624,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3187" + "$ref": "3320" }, "properties": [ { - "$id": "3240", + "$id": "3373", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "320" + "$ref": "319" }, "optional": false, "readOnly": false, @@ -37054,13 +38649,13 @@ } }, { - "$id": "3241", + "$id": "3374", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3242", + "$id": "3375", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37079,13 +38674,13 @@ } }, { - "$id": "3243", + "$id": "3376", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3244", + "$id": "3377", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37104,12 +38699,12 @@ } }, { - "$id": "3245", + "$id": "3378", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3215" + "$ref": "3348" }, "optional": false, "readOnly": false, @@ -37124,13 +38719,13 @@ } }, { - "$id": "3246", + "$id": "3379", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to assign to each item in the evaluation.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -37145,13 +38740,13 @@ } }, { - "$id": "3247", + "$id": "3380", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -37184,13 +38779,13 @@ } }, { - "$id": "3248", + "$id": "3381", "kind": "property", "name": "calculate_output", "serializedName": "calculate_output", "doc": "A formula to calculate the output based on grader results.", "type": { - "$id": "3249", + "$id": "3382", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37211,27 +38806,27 @@ ] }, "label_model": { - "$ref": "3239" + "$ref": "3372" } } }, "properties": [ { - "$id": "3250", + "$id": "3383", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$id": "3251", + "$id": "3384", "kind": "enumvalue", "name": "string_check", "value": "string_check", "valueType": { - "$ref": "316" + "$ref": "315" }, "enumType": { - "$ref": "315" + "$ref": "314" }, "decorators": [] }, @@ -37248,13 +38843,13 @@ } }, { - "$id": "3252", + "$id": "3385", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3253", + "$id": "3386", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37273,13 +38868,13 @@ } }, { - "$id": "3254", + "$id": "3387", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3255", + "$id": "3388", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37298,13 +38893,13 @@ } }, { - "$id": "3256", + "$id": "3389", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3257", + "$id": "3390", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37323,13 +38918,13 @@ } }, { - "$id": "3258", + "$id": "3391", "kind": "property", "name": "operation", "serializedName": "operation", "doc": "The string check operation to perform. One of `eq`, `ne`, `like`, or `ilike`.", "type": { - "$ref": "323" + "$ref": "322" }, "optional": false, "readOnly": false, @@ -37346,16 +38941,16 @@ ] }, { - "$ref": "3189" + "$ref": "3322" }, { - "$ref": "3198" + "$ref": "3331" }, { - "$ref": "3206" + "$ref": "3339" }, { - "$ref": "3233" + "$ref": "3366" } ], "namespace": "", @@ -37374,12 +38969,12 @@ } }, { - "$id": "3259", + "$id": "3392", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3260", + "$id": "3393", "kind": "model", "name": "FineTuneReinforcementHyperparameters", "namespace": "OpenAI", @@ -37389,21 +38984,21 @@ "decorators": [], "properties": [ { - "$id": "3261", + "$id": "3394", "kind": "property", "name": "batch_size", "serializedName": "batch_size", "doc": "Number of examples in each batch. A larger batch size means that model parameters are updated less frequently, but with lower variance.", "type": { - "$id": "3262", + "$id": "3395", "kind": "union", "name": "FineTuneReinforcementHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1355" + "$ref": "1495" }, { - "$id": "3263", + "$id": "3396", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37426,21 +39021,21 @@ } }, { - "$id": "3264", + "$id": "3397", "kind": "property", "name": "learning_rate_multiplier", "serializedName": "learning_rate_multiplier", "doc": "Scaling factor for the learning rate. A smaller learning rate may be useful to avoid overfitting.", "type": { - "$id": "3265", + "$id": "3398", "kind": "union", "name": "FineTuneReinforcementHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1357" + "$ref": "1497" }, { - "$id": "3266", + "$id": "3399", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -37463,21 +39058,21 @@ } }, { - "$id": "3267", + "$id": "3400", "kind": "property", "name": "n_epochs", "serializedName": "n_epochs", "doc": "The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.", "type": { - "$id": "3268", + "$id": "3401", "kind": "union", "name": "FineTuneReinforcementHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1359" + "$ref": "1499" }, { - "$id": "3269", + "$id": "3402", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37500,13 +39095,13 @@ } }, { - "$id": "3270", + "$id": "3403", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "doc": "Level of reasoning effort.", "type": { - "$ref": "351" + "$ref": "350" }, "optional": true, "readOnly": false, @@ -37521,21 +39116,21 @@ } }, { - "$id": "3271", + "$id": "3404", "kind": "property", "name": "compute_multiplier", "serializedName": "compute_multiplier", "doc": "Multiplier on amount of compute used for exploring search space during training.", "type": { - "$id": "3272", + "$id": "3405", "kind": "union", "name": "FineTuneReinforcementHyperparametersComputeMultiplier", "variantTypes": [ { - "$ref": "1361" + "$ref": "1501" }, { - "$id": "3273", + "$id": "3406", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -37558,21 +39153,21 @@ } }, { - "$id": "3274", + "$id": "3407", "kind": "property", "name": "eval_interval", "serializedName": "eval_interval", "doc": "The number of training steps between evaluation runs.", "type": { - "$id": "3275", + "$id": "3408", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalInterval", "variantTypes": [ { - "$ref": "1363" + "$ref": "1503" }, { - "$id": "3276", + "$id": "3409", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37595,21 +39190,21 @@ } }, { - "$id": "3277", + "$id": "3410", "kind": "property", "name": "eval_samples", "serializedName": "eval_samples", "doc": "Number of evaluation samples to generate per training step.", "type": { - "$id": "3278", + "$id": "3411", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalSamples", "variantTypes": [ { - "$ref": "1365" + "$ref": "1505" }, { - "$id": "3279", + "$id": "3412", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37674,13 +39269,13 @@ } }, { - "$id": "3280", + "$id": "3413", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -37697,73 +39292,73 @@ ] }, { - "$ref": "3113" + "$ref": "3246" }, { - "$ref": "3132" + "$ref": "3265" }, { - "$ref": "3134" + "$ref": "3267" }, { - "$ref": "3137" + "$ref": "3270" }, { - "$ref": "3151" + "$ref": "3284" }, { - "$ref": "3154" + "$ref": "3287" }, { - "$ref": "3156" + "$ref": "3289" }, { - "$ref": "3167" + "$ref": "3300" }, { - "$ref": "3169" + "$ref": "3302" }, { - "$ref": "3183" + "$ref": "3316" }, { - "$ref": "3186" + "$ref": "3319" }, { - "$ref": "3187" + "$ref": "3320" }, { - "$ref": "3189" + "$ref": "3322" }, { - "$ref": "3198" + "$ref": "3331" }, { - "$ref": "3206" + "$ref": "3339" }, { - "$ref": "3216" + "$ref": "3349" }, { - "$ref": "3221" + "$ref": "3354" }, { - "$ref": "3223" + "$ref": "3356" }, { - "$ref": "3227" + "$ref": "3360" }, { - "$ref": "3233" + "$ref": "3366" }, { - "$ref": "3239" + "$ref": "3372" }, { - "$ref": "3260" + "$ref": "3393" }, { - "$id": "3281", + "$id": "3414", "kind": "model", "name": "FineTuningJob", "namespace": "OpenAI", @@ -37773,16 +39368,16 @@ "decorators": [], "properties": [ { - "$id": "3282", + "$id": "3415", "kind": "property", "name": "user_provided_suffix", "serializedName": "user_provided_suffix", "doc": "The descriptive suffix applied to the job, as specified in the job creation request.", "type": { - "$id": "3283", + "$id": "3416", "kind": "nullable", "type": { - "$id": "3284", + "$id": "3417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37803,13 +39398,13 @@ } }, { - "$id": "3285", + "$id": "3418", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3286", + "$id": "3419", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37828,18 +39423,18 @@ } }, { - "$id": "3287", + "$id": "3420", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3288", + "$id": "3421", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3289", + "$id": "3422", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37861,16 +39456,16 @@ } }, { - "$id": "3290", + "$id": "3423", "kind": "property", "name": "error", "serializedName": "error", "doc": "For fine-tuning jobs that have `failed`, this will contain more information on the cause of the failure.", "type": { - "$id": "3291", + "$id": "3424", "kind": "nullable", "type": { - "$id": "3292", + "$id": "3425", "kind": "model", "name": "FineTuningJobError1", "namespace": "OpenAI", @@ -37879,13 +39474,13 @@ "decorators": [], "properties": [ { - "$id": "3293", + "$id": "3426", "kind": "property", "name": "code", "serializedName": "code", "doc": "A machine-readable error code.", "type": { - "$id": "3294", + "$id": "3427", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37904,13 +39499,13 @@ } }, { - "$id": "3295", + "$id": "3428", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "3296", + "$id": "3429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37929,16 +39524,16 @@ } }, { - "$id": "3297", + "$id": "3430", "kind": "property", "name": "param", "serializedName": "param", "doc": "The parameter that was invalid, usually `training_file` or `validation_file`. This field will be null if the failure was not parameter-specific.", "type": { - "$id": "3298", + "$id": "3431", "kind": "nullable", "type": { - "$id": "3299", + "$id": "3432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37975,16 +39570,16 @@ } }, { - "$id": "3300", + "$id": "3433", "kind": "property", "name": "fine_tuned_model", "serializedName": "fine_tuned_model", "doc": "The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.", "type": { - "$id": "3301", + "$id": "3434", "kind": "nullable", "type": { - "$id": "3302", + "$id": "3435", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38005,21 +39600,21 @@ } }, { - "$id": "3303", + "$id": "3436", "kind": "property", "name": "finished_at", "serializedName": "finished_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was finished. The value will be null if the fine-tuning job is still running.", "type": { - "$id": "3304", + "$id": "3437", "kind": "nullable", "type": { - "$id": "3305", + "$id": "3438", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3306", + "$id": "3439", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38043,13 +39638,13 @@ } }, { - "$id": "3307", + "$id": "3440", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "doc": "The hyperparameters used for the fine-tuning job. This value will only be returned when running `supervised` jobs.", "type": { - "$id": "3308", + "$id": "3441", "kind": "model", "name": "FineTuningJobHyperparameters", "namespace": "OpenAI", @@ -38058,24 +39653,24 @@ "decorators": [], "properties": [ { - "$id": "3309", + "$id": "3442", "kind": "property", "name": "batch_size", "serializedName": "batch_size", "doc": "Number of examples in each batch. A larger batch size means that model parameters\nare updated less frequently, but with lower variance.", "type": { - "$id": "3310", + "$id": "3443", "kind": "nullable", "type": { - "$id": "3311", + "$id": "3444", "kind": "union", "name": "FineTuningJobHyperparametersBatchSize", "variantTypes": [ { - "$ref": "1367" + "$ref": "1507" }, { - "$id": "3312", + "$id": "3445", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38100,21 +39695,21 @@ } }, { - "$id": "3313", + "$id": "3446", "kind": "property", "name": "learning_rate_multiplier", "serializedName": "learning_rate_multiplier", "doc": "Scaling factor for the learning rate. A smaller learning rate may be useful to avoid\noverfitting.", "type": { - "$id": "3314", + "$id": "3447", "kind": "union", "name": "FineTuningJobHyperparametersLearningRateMultiplier", "variantTypes": [ { - "$ref": "1369" + "$ref": "1509" }, { - "$id": "3315", + "$id": "3448", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -38137,21 +39732,21 @@ } }, { - "$id": "3316", + "$id": "3449", "kind": "property", "name": "n_epochs", "serializedName": "n_epochs", "doc": "The number of epochs to train the model for. An epoch refers to one full cycle\nthrough the training dataset.", "type": { - "$id": "3317", + "$id": "3450", "kind": "union", "name": "FineTuningJobHyperparametersNEpochs", "variantTypes": [ { - "$ref": "1371" + "$ref": "1511" }, { - "$id": "3318", + "$id": "3451", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38188,13 +39783,13 @@ } }, { - "$id": "3319", + "$id": "3452", "kind": "property", "name": "model", "serializedName": "model", "doc": "The base model that is being fine-tuned.", "type": { - "$id": "3320", + "$id": "3453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38213,13 +39808,13 @@ } }, { - "$id": "3321", + "$id": "3454", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job\".", "type": { - "$ref": "1373" + "$ref": "1513" }, "optional": false, "readOnly": false, @@ -38234,13 +39829,13 @@ } }, { - "$id": "3322", + "$id": "3455", "kind": "property", "name": "organization_id", "serializedName": "organization_id", "doc": "The organization that owns the fine-tuning job.", "type": { - "$id": "3323", + "$id": "3456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38259,13 +39854,13 @@ } }, { - "$id": "3324", + "$id": "3457", "kind": "property", "name": "result_files", "serializedName": "result_files", "doc": "The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the [Files API](/docs/api-reference/files/retrieve-contents).", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -38280,13 +39875,13 @@ } }, { - "$id": "3325", + "$id": "3458", "kind": "property", "name": "status", "serializedName": "status", "doc": "The current status of the fine-tuning job, which can be either `validating_files`, `queued`, `running`, `succeeded`, `failed`, or `cancelled`.", "type": { - "$ref": "357" + "$ref": "356" }, "optional": false, "readOnly": false, @@ -38301,16 +39896,16 @@ } }, { - "$id": "3326", + "$id": "3459", "kind": "property", "name": "trained_tokens", "serializedName": "trained_tokens", "doc": "The total number of billable tokens processed by this fine-tuning job. The value will be null if the fine-tuning job is still running.", "type": { - "$id": "3327", + "$id": "3460", "kind": "nullable", "type": { - "$id": "3328", + "$id": "3461", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38331,13 +39926,13 @@ } }, { - "$id": "3329", + "$id": "3462", "kind": "property", "name": "training_file", "serializedName": "training_file", "doc": "The file ID used for training. You can retrieve the training data with the [Files API](/docs/api-reference/files/retrieve-contents).", "type": { - "$id": "3330", + "$id": "3463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38356,16 +39951,16 @@ } }, { - "$id": "3331", + "$id": "3464", "kind": "property", "name": "validation_file", "serializedName": "validation_file", "doc": "The file ID used for validation. You can retrieve the validation results with the [Files API](/docs/api-reference/files/retrieve-contents).", "type": { - "$id": "3332", + "$id": "3465", "kind": "nullable", "type": { - "$id": "3333", + "$id": "3466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38386,20 +39981,20 @@ } }, { - "$id": "3334", + "$id": "3467", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for this fine-tuning job.", "type": { - "$id": "3335", + "$id": "3468", "kind": "nullable", "type": { - "$id": "3336", + "$id": "3469", "kind": "array", "name": "ArrayFineTuningIntegration", "valueType": { - "$id": "3337", + "$id": "3470", "kind": "model", "name": "FineTuningIntegration", "namespace": "OpenAI", @@ -38407,12 +40002,12 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3338", + "$id": "3471", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "365" + "$ref": "364" }, "optional": false, "readOnly": false, @@ -38428,12 +40023,12 @@ }, "properties": [ { - "$ref": "3338" + "$ref": "3471" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3339", + "$id": "3472", "kind": "model", "name": "FineTuningIntegrationWandb", "namespace": "OpenAI", @@ -38442,17 +40037,17 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3337" + "$ref": "3470" }, "properties": [ { - "$id": "3340", + "$id": "3473", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the integration being enabled for the fine-tuning job", "type": { - "$ref": "367" + "$ref": "366" }, "optional": false, "readOnly": false, @@ -38467,13 +40062,13 @@ } }, { - "$id": "3341", + "$id": "3474", "kind": "property", "name": "wandb", "serializedName": "wandb", "doc": "The settings for your integration with Weights and Biases. This payload specifies the project that\nmetrics will be sent to. Optionally, you can set an explicit display name for your run, add tags\nto your run, and set a default entity (team, username, etc) to be associated with your run.", "type": { - "$id": "3342", + "$id": "3475", "kind": "model", "name": "FineTuningIntegrationWandbWandb", "namespace": "OpenAI", @@ -38482,13 +40077,13 @@ "decorators": [], "properties": [ { - "$id": "3343", + "$id": "3476", "kind": "property", "name": "project", "serializedName": "project", "doc": "The name of the project that the new run will be created under.", "type": { - "$id": "3344", + "$id": "3477", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38507,16 +40102,16 @@ } }, { - "$id": "3345", + "$id": "3478", "kind": "property", "name": "name", "serializedName": "name", "doc": "A display name to set for the run. If not set, we will use the Job ID as the name.", "type": { - "$id": "3346", + "$id": "3479", "kind": "nullable", "type": { - "$id": "3347", + "$id": "3480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38537,16 +40132,16 @@ } }, { - "$id": "3348", + "$id": "3481", "kind": "property", "name": "entity", "serializedName": "entity", "doc": "The entity to use for the run. This allows you to set the team or username of the WandB user that you would\nlike associated with the run. If not set, the default entity for the registered WandB API key is used.", "type": { - "$id": "3349", + "$id": "3482", "kind": "nullable", "type": { - "$id": "3350", + "$id": "3483", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38567,13 +40162,13 @@ } }, { - "$id": "3351", + "$id": "3484", "kind": "property", "name": "tags", "serializedName": "tags", "doc": "A list of tags to be attached to the newly created run. These tags are passed through directly to WandB. Some\ndefault tags are generated by OpenAI: \"openai/finetune\", \"openai/{base-model}\", \"openai/{ftjob-abcdef}\".", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -38623,13 +40218,13 @@ } }, { - "$id": "3352", + "$id": "3485", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for the fine-tuning job.", "type": { - "$id": "3353", + "$id": "3486", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38648,21 +40243,21 @@ } }, { - "$id": "3354", + "$id": "3487", "kind": "property", "name": "estimated_finish", "serializedName": "estimated_finish", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job is estimated to finish. The value will be null if the fine-tuning job is not running.", "type": { - "$id": "3355", + "$id": "3488", "kind": "nullable", "type": { - "$id": "3356", + "$id": "3489", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3357", + "$id": "3490", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38686,12 +40281,12 @@ } }, { - "$id": "3358", + "$id": "3491", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$ref": "3151" + "$ref": "3284" }, "optional": true, "readOnly": false, @@ -38706,13 +40301,13 @@ } }, { - "$id": "3359", + "$id": "3492", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -38729,22 +40324,22 @@ ] }, { - "$ref": "3292" + "$ref": "3425" }, { - "$ref": "3308" + "$ref": "3441" }, { - "$ref": "3337" + "$ref": "3470" }, { - "$ref": "3339" + "$ref": "3472" }, { - "$ref": "3342" + "$ref": "3475" }, { - "$id": "3360", + "$id": "3493", "kind": "model", "name": "ListPaginatedFineTuningJobsResponse", "namespace": "OpenAI", @@ -38753,16 +40348,16 @@ "decorators": [], "properties": [ { - "$id": "3361", + "$id": "3494", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3362", + "$id": "3495", "kind": "array", "name": "ArrayFineTuningJob", "valueType": { - "$ref": "3281" + "$ref": "3414" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -38780,12 +40375,12 @@ } }, { - "$id": "3363", + "$id": "3496", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3364", + "$id": "3497", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38804,12 +40399,12 @@ } }, { - "$id": "3365", + "$id": "3498", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1375" + "$ref": "1515" }, "optional": false, "readOnly": false, @@ -38826,7 +40421,7 @@ ] }, { - "$id": "3366", + "$id": "3499", "kind": "model", "name": "ListFineTuningJobCheckpointsResponse", "namespace": "OpenAI", @@ -38835,16 +40430,16 @@ "decorators": [], "properties": [ { - "$id": "3367", + "$id": "3500", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3368", + "$id": "3501", "kind": "array", "name": "ArrayFineTuningJobCheckpoint", "valueType": { - "$id": "3369", + "$id": "3502", "kind": "model", "name": "FineTuningJobCheckpoint", "namespace": "OpenAI", @@ -38854,13 +40449,13 @@ "decorators": [], "properties": [ { - "$id": "3370", + "$id": "3503", "kind": "property", "name": "id", "serializedName": "id", "doc": "The checkpoint identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3371", + "$id": "3504", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38879,18 +40474,18 @@ } }, { - "$id": "3372", + "$id": "3505", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the checkpoint was created.", "type": { - "$id": "3373", + "$id": "3506", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3374", + "$id": "3507", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38912,13 +40507,13 @@ } }, { - "$id": "3375", + "$id": "3508", "kind": "property", "name": "fine_tuned_model_checkpoint", "serializedName": "fine_tuned_model_checkpoint", "doc": "The name of the fine-tuned checkpoint model that is created.", "type": { - "$id": "3376", + "$id": "3509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38937,13 +40532,13 @@ } }, { - "$id": "3377", + "$id": "3510", "kind": "property", "name": "step_number", "serializedName": "step_number", "doc": "The step number that the checkpoint was created at.", "type": { - "$id": "3378", + "$id": "3511", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38962,13 +40557,13 @@ } }, { - "$id": "3379", + "$id": "3512", "kind": "property", "name": "metrics", "serializedName": "metrics", "doc": "Metrics at the step number during the fine-tuning job.", "type": { - "$id": "3380", + "$id": "3513", "kind": "model", "name": "FineTuningJobCheckpointMetrics", "namespace": "OpenAI", @@ -38977,12 +40572,12 @@ "decorators": [], "properties": [ { - "$id": "3381", + "$id": "3514", "kind": "property", "name": "step", "serializedName": "step", "type": { - "$id": "3382", + "$id": "3515", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39001,12 +40596,12 @@ } }, { - "$id": "3383", + "$id": "3516", "kind": "property", "name": "train_loss", "serializedName": "train_loss", "type": { - "$id": "3384", + "$id": "3517", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39025,12 +40620,12 @@ } }, { - "$id": "3385", + "$id": "3518", "kind": "property", "name": "train_mean_token_accuracy", "serializedName": "train_mean_token_accuracy", "type": { - "$id": "3386", + "$id": "3519", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39049,12 +40644,12 @@ } }, { - "$id": "3387", + "$id": "3520", "kind": "property", "name": "valid_loss", "serializedName": "valid_loss", "type": { - "$id": "3388", + "$id": "3521", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39073,12 +40668,12 @@ } }, { - "$id": "3389", + "$id": "3522", "kind": "property", "name": "valid_mean_token_accuracy", "serializedName": "valid_mean_token_accuracy", "type": { - "$id": "3390", + "$id": "3523", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39097,12 +40692,12 @@ } }, { - "$id": "3391", + "$id": "3524", "kind": "property", "name": "full_valid_loss", "serializedName": "full_valid_loss", "type": { - "$id": "3392", + "$id": "3525", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39121,12 +40716,12 @@ } }, { - "$id": "3393", + "$id": "3526", "kind": "property", "name": "full_valid_mean_token_accuracy", "serializedName": "full_valid_mean_token_accuracy", "type": { - "$id": "3394", + "$id": "3527", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -39159,13 +40754,13 @@ } }, { - "$id": "3395", + "$id": "3528", "kind": "property", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The name of the fine-tuning job that this checkpoint was created from.", "type": { - "$id": "3396", + "$id": "3529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39184,13 +40779,13 @@ } }, { - "$id": "3397", + "$id": "3530", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job.checkpoint\".", "type": { - "$ref": "1377" + "$ref": "1517" }, "optional": false, "readOnly": false, @@ -39222,12 +40817,12 @@ } }, { - "$id": "3398", + "$id": "3531", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1379" + "$ref": "1519" }, "optional": false, "readOnly": false, @@ -39242,15 +40837,15 @@ } }, { - "$id": "3399", + "$id": "3532", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3400", + "$id": "3533", "kind": "nullable", "type": { - "$id": "3401", + "$id": "3534", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39271,15 +40866,15 @@ } }, { - "$id": "3402", + "$id": "3535", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3403", + "$id": "3536", "kind": "nullable", "type": { - "$id": "3404", + "$id": "3537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39300,12 +40895,12 @@ } }, { - "$id": "3405", + "$id": "3538", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3406", + "$id": "3539", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -39326,13 +40921,13 @@ ] }, { - "$ref": "3369" + "$ref": "3502" }, { - "$ref": "3380" + "$ref": "3513" }, { - "$id": "3407", + "$id": "3540", "kind": "model", "name": "ListFineTuningJobEventsResponse", "namespace": "OpenAI", @@ -39341,16 +40936,16 @@ "decorators": [], "properties": [ { - "$id": "3408", + "$id": "3541", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3409", + "$id": "3542", "kind": "array", "name": "ArrayFineTuningJobEvent", "valueType": { - "$id": "3410", + "$id": "3543", "kind": "model", "name": "FineTuningJobEvent", "namespace": "OpenAI", @@ -39360,13 +40955,13 @@ "decorators": [], "properties": [ { - "$id": "3411", + "$id": "3544", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always \"fine_tuning.job.event\".", "type": { - "$ref": "1381" + "$ref": "1521" }, "optional": false, "readOnly": false, @@ -39381,13 +40976,13 @@ } }, { - "$id": "3412", + "$id": "3545", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier.", "type": { - "$id": "3413", + "$id": "3546", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39406,18 +41001,18 @@ } }, { - "$id": "3414", + "$id": "3547", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3415", + "$id": "3548", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3416", + "$id": "3549", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39439,13 +41034,13 @@ } }, { - "$id": "3417", + "$id": "3550", "kind": "property", "name": "level", "serializedName": "level", "doc": "The log level of the event.", "type": { - "$ref": "368" + "$ref": "367" }, "optional": false, "readOnly": false, @@ -39460,13 +41055,13 @@ } }, { - "$id": "3418", + "$id": "3551", "kind": "property", "name": "message", "serializedName": "message", "doc": "The message of the event.", "type": { - "$id": "3419", + "$id": "3552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39485,13 +41080,13 @@ } }, { - "$id": "3420", + "$id": "3553", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of event.", "type": { - "$ref": "373" + "$ref": "372" }, "optional": true, "readOnly": false, @@ -39506,13 +41101,13 @@ } }, { - "$id": "3421", + "$id": "3554", "kind": "property", "name": "data", "serializedName": "data", "doc": "The data associated with the event.", "type": { - "$id": "3422", + "$id": "3555", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -39548,12 +41143,12 @@ } }, { - "$id": "3423", + "$id": "3556", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1383" + "$ref": "1523" }, "optional": false, "readOnly": false, @@ -39568,12 +41163,12 @@ } }, { - "$id": "3424", + "$id": "3557", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3425", + "$id": "3558", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -39594,10 +41189,10 @@ ] }, { - "$ref": "3410" + "$ref": "3543" }, { - "$id": "3426", + "$id": "3559", "kind": "model", "name": "EvalList", "namespace": "OpenAI", @@ -39607,13 +41202,13 @@ "decorators": [], "properties": [ { - "$id": "3427", + "$id": "3560", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1385" + "$ref": "1525" }, "optional": false, "readOnly": false, @@ -39628,17 +41223,17 @@ } }, { - "$id": "3428", + "$id": "3561", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval objects.", "type": { - "$id": "3429", + "$id": "3562", "kind": "array", "name": "ArrayEval", "valueType": { - "$id": "3430", + "$id": "3563", "kind": "model", "name": "Eval", "namespace": "OpenAI", @@ -39648,13 +41243,13 @@ "decorators": [], "properties": [ { - "$id": "3431", + "$id": "3564", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type.", "type": { - "$ref": "1387" + "$ref": "1527" }, "optional": false, "readOnly": false, @@ -39669,13 +41264,13 @@ } }, { - "$id": "3432", + "$id": "3565", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation.", "type": { - "$id": "3433", + "$id": "3566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39694,13 +41289,13 @@ } }, { - "$id": "3434", + "$id": "3567", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3435", + "$id": "3568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39719,13 +41314,13 @@ } }, { - "$id": "3436", + "$id": "3569", "kind": "property", "name": "data_source_config", "serializedName": "data_source_config", "doc": "Configuration of data sources used in runs of the evaluation.", "type": { - "$id": "3437", + "$id": "3570", "kind": "model", "name": "EvalDataSourceConfigResource", "namespace": "OpenAI", @@ -39733,12 +41328,12 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3438", + "$id": "3571", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "385" + "$ref": "376" }, "optional": false, "readOnly": false, @@ -39754,12 +41349,12 @@ }, "properties": [ { - "$ref": "3438" + "$ref": "3571" } ], "discriminatedSubtypes": { "custom": { - "$id": "3439", + "$id": "3572", "kind": "model", "name": "EvalCustomDataSourceConfigResource", "namespace": "OpenAI", @@ -39769,17 +41364,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3437" + "$ref": "3570" }, "properties": [ { - "$id": "3440", + "$id": "3573", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$ref": "387" + "$ref": "378" }, "optional": false, "readOnly": false, @@ -39794,23 +41389,23 @@ } }, { - "$id": "3441", + "$id": "3574", "kind": "property", "name": "schema", "serializedName": "schema", "doc": "The json schema for the run data source items.\nLearn how to build JSON schemas [here](https://json-schema.org/).", "type": { - "$id": "3442", + "$id": "3575", "kind": "dict", "keyType": { - "$id": "3443", + "$id": "3576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3444", + "$id": "3577", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -39833,7 +41428,7 @@ ] }, "stored_completions": { - "$id": "3445", + "$id": "3578", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigResource", "namespace": "OpenAI", @@ -39844,17 +41439,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3437" + "$ref": "3570" }, "properties": [ { - "$id": "3446", + "$id": "3579", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$ref": "389" + "$ref": "380" }, "optional": false, "readOnly": false, @@ -39869,13 +41464,13 @@ } }, { - "$id": "3447", + "$id": "3580", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -39890,13 +41485,13 @@ } }, { - "$id": "3448", + "$id": "3581", "kind": "property", "name": "schema", "serializedName": "schema", "doc": "The json schema for the run data source items.\nLearn how to build JSON schemas [here](https://json-schema.org/).", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": false, "readOnly": false, @@ -39913,7 +41508,7 @@ ] }, "logs": { - "$id": "3449", + "$id": "3582", "kind": "model", "name": "EvalLogsDataSourceConfigResource", "namespace": "OpenAI", @@ -39923,17 +41518,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3437" + "$ref": "3570" }, "properties": [ { - "$id": "3450", + "$id": "3583", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$ref": "388" + "$ref": "379" }, "optional": false, "readOnly": false, @@ -39948,13 +41543,13 @@ } }, { - "$id": "3451", + "$id": "3584", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -39969,13 +41564,13 @@ } }, { - "$id": "3452", + "$id": "3585", "kind": "property", "name": "schema", "serializedName": "schema", "doc": "The json schema for the run data source items.\nLearn how to build JSON schemas [here](https://json-schema.org/).", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": false, "readOnly": false, @@ -40006,20 +41601,20 @@ } }, { - "$id": "3453", + "$id": "3586", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A list of testing criteria.", "type": { - "$id": "3454", + "$id": "3587", "kind": "nullable", "type": { - "$id": "3455", + "$id": "3588", "kind": "array", "name": "ArrayEvalGraderResource", "valueType": { - "$id": "3456", + "$id": "3589", "kind": "model", "name": "EvalGraderResource", "namespace": "OpenAI", @@ -40027,12 +41622,12 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3457", + "$id": "3590", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "315" + "$ref": "314" }, "optional": false, "readOnly": false, @@ -40048,12 +41643,12 @@ }, "properties": [ { - "$ref": "3457" + "$ref": "3590" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3458", + "$id": "3591", "kind": "model", "name": "EvalGraderLabelModelResource", "namespace": "OpenAI", @@ -40062,17 +41657,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3456" + "$ref": "3589" }, "properties": [ { - "$id": "3459", + "$id": "3592", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "320" + "$ref": "319" }, "optional": false, "readOnly": false, @@ -40087,13 +41682,13 @@ } }, { - "$id": "3460", + "$id": "3593", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3461", + "$id": "3594", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40112,13 +41707,13 @@ } }, { - "$id": "3462", + "$id": "3595", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3463", + "$id": "3596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40137,12 +41732,12 @@ } }, { - "$id": "3464", + "$id": "3597", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3215" + "$ref": "3348" }, "optional": false, "readOnly": false, @@ -40157,13 +41752,13 @@ } }, { - "$id": "3465", + "$id": "3598", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to assign to each item in the evaluation.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -40178,13 +41773,13 @@ } }, { - "$id": "3466", + "$id": "3599", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -40201,7 +41796,7 @@ ] }, "text_similarity": { - "$id": "3467", + "$id": "3600", "kind": "model", "name": "EvalGraderTextSimilarityResource", "namespace": "OpenAI", @@ -40210,17 +41805,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3456" + "$ref": "3589" }, "properties": [ { - "$id": "3468", + "$id": "3601", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "318" + "$ref": "317" }, "optional": false, "readOnly": false, @@ -40235,13 +41830,13 @@ } }, { - "$id": "3469", + "$id": "3602", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3470", + "$id": "3603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40260,13 +41855,13 @@ } }, { - "$id": "3471", + "$id": "3604", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3472", + "$id": "3605", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40285,13 +41880,13 @@ } }, { - "$id": "3473", + "$id": "3606", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3474", + "$id": "3607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40310,13 +41905,13 @@ } }, { - "$id": "3475", + "$id": "3608", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", "doc": "The evaluation metric to use. One of `fuzzy_match`, `bleu`, `gleu`, `meteor`, `rouge_1`, `rouge_2`, `rouge_3`, `rouge_4`, `rouge_5`, or `rouge_l`.", "type": { - "$ref": "329" + "$ref": "328" }, "optional": false, "readOnly": false, @@ -40331,13 +41926,13 @@ } }, { - "$id": "3476", + "$id": "3609", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3477", + "$id": "3610", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40358,7 +41953,7 @@ ] }, "python": { - "$id": "3478", + "$id": "3611", "kind": "model", "name": "EvalGraderPythonResource", "namespace": "OpenAI", @@ -40367,17 +41962,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3456" + "$ref": "3589" }, "properties": [ { - "$id": "3479", + "$id": "3612", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "321" + "$ref": "320" }, "optional": false, "readOnly": false, @@ -40392,13 +41987,13 @@ } }, { - "$id": "3480", + "$id": "3613", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3481", + "$id": "3614", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40417,13 +42012,13 @@ } }, { - "$id": "3482", + "$id": "3615", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3483", + "$id": "3616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40442,13 +42037,13 @@ } }, { - "$id": "3484", + "$id": "3617", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3485", + "$id": "3618", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40467,13 +42062,13 @@ } }, { - "$id": "3486", + "$id": "3619", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3487", + "$id": "3620", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40494,7 +42089,7 @@ ] }, "score_model": { - "$id": "3488", + "$id": "3621", "kind": "model", "name": "EvalGraderScoreModelResource", "namespace": "OpenAI", @@ -40503,17 +42098,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3456" + "$ref": "3589" }, "properties": [ { - "$id": "3489", + "$id": "3622", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "319" + "$ref": "318" }, "optional": false, "readOnly": false, @@ -40528,13 +42123,13 @@ } }, { - "$id": "3490", + "$id": "3623", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3491", + "$id": "3624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40553,13 +42148,13 @@ } }, { - "$id": "3492", + "$id": "3625", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3493", + "$id": "3626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40578,13 +42173,13 @@ } }, { - "$id": "3494", + "$id": "3627", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3495", + "$id": "3628", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -40603,13 +42198,13 @@ } }, { - "$id": "3496", + "$id": "3629", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3215" + "$ref": "3348" }, "optional": false, "readOnly": false, @@ -40624,13 +42219,13 @@ } }, { - "$id": "3497", + "$id": "3630", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2396" + "$ref": "2536" }, "optional": true, "readOnly": false, @@ -40645,13 +42240,13 @@ } }, { - "$id": "3498", + "$id": "3631", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3499", + "$id": "3632", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40691,18 +42286,18 @@ } }, { - "$id": "3500", + "$id": "3633", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the eval was created.", "type": { - "$id": "3501", + "$id": "3634", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3502", + "$id": "3635", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40724,13 +42319,13 @@ } }, { - "$id": "3503", + "$id": "3636", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -40762,13 +42357,13 @@ } }, { - "$id": "3504", + "$id": "3637", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval in the data array.", "type": { - "$id": "3505", + "$id": "3638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40787,13 +42382,13 @@ } }, { - "$id": "3506", + "$id": "3639", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval in the data array.", "type": { - "$id": "3507", + "$id": "3640", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40812,13 +42407,13 @@ } }, { - "$id": "3508", + "$id": "3641", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "3509", + "$id": "3642", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40839,37 +42434,37 @@ ] }, { - "$ref": "3430" + "$ref": "3563" }, { - "$ref": "3437" + "$ref": "3570" }, { - "$ref": "3439" + "$ref": "3572" }, { - "$ref": "3445" + "$ref": "3578" }, { - "$ref": "3449" + "$ref": "3582" }, { - "$ref": "3456" + "$ref": "3589" }, { - "$ref": "3458" + "$ref": "3591" }, { - "$ref": "3467" + "$ref": "3600" }, { - "$ref": "3478" + "$ref": "3611" }, { - "$ref": "3488" + "$ref": "3621" }, { - "$id": "3510", + "$id": "3643", "kind": "model", "name": "CreateEvalRequest", "namespace": "OpenAI", @@ -40878,13 +42473,13 @@ "decorators": [], "properties": [ { - "$id": "3511", + "$id": "3644", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3512", + "$id": "3645", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40903,13 +42498,13 @@ } }, { - "$id": "3513", + "$id": "3646", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -40924,13 +42519,13 @@ } }, { - "$id": "3514", + "$id": "3647", "kind": "property", "name": "data_source_config", "serializedName": "data_source_config", "doc": "The configuration for the data source used for the evaluation runs. Dictates the schema of the data used in the evaluation.", "type": { - "$id": "3515", + "$id": "3648", "kind": "model", "name": "EvalDataSourceConfigParams", "namespace": "OpenAI", @@ -40938,12 +42533,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3516", + "$id": "3649", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "385" + "$ref": "376" }, "optional": false, "readOnly": false, @@ -40959,12 +42554,12 @@ }, "properties": [ { - "$ref": "3516" + "$ref": "3649" } ], "discriminatedSubtypes": { "custom": { - "$id": "3517", + "$id": "3650", "kind": "model", "name": "EvalCustomDataSourceConfigParams", "namespace": "OpenAI", @@ -40974,17 +42569,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3515" + "$ref": "3648" }, "properties": [ { - "$id": "3518", + "$id": "3651", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$ref": "387" + "$ref": "378" }, "optional": false, "readOnly": false, @@ -40999,13 +42594,13 @@ } }, { - "$id": "3519", + "$id": "3652", "kind": "property", "name": "item_schema", "serializedName": "item_schema", "doc": "The json schema for each row in the data source.", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": false, "readOnly": false, @@ -41020,13 +42615,13 @@ } }, { - "$id": "3520", + "$id": "3653", "kind": "property", "name": "include_sample_schema", "serializedName": "include_sample_schema", "doc": "Whether the eval should expect you to populate the sample namespace (ie, by generating responses off of your data source)", "type": { - "$id": "3521", + "$id": "3654", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -41047,7 +42642,7 @@ ] }, "logs": { - "$id": "3522", + "$id": "3655", "kind": "model", "name": "EvalLogsDataSourceConfigParams", "namespace": "OpenAI", @@ -41057,17 +42652,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3515" + "$ref": "3648" }, "properties": [ { - "$id": "3523", + "$id": "3656", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$ref": "388" + "$ref": "379" }, "optional": false, "readOnly": false, @@ -41082,13 +42677,13 @@ } }, { - "$id": "3524", + "$id": "3657", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -41105,7 +42700,7 @@ ] }, "stored_completions": { - "$id": "3525", + "$id": "3658", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigParams", "namespace": "OpenAI", @@ -41116,17 +42711,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3515" + "$ref": "3648" }, "properties": [ { - "$id": "3526", + "$id": "3659", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$ref": "389" + "$ref": "380" }, "optional": false, "readOnly": false, @@ -41141,13 +42736,13 @@ } }, { - "$id": "3527", + "$id": "3660", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Metadata filters for the stored completions data source.", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": true, "readOnly": false, @@ -41178,17 +42773,17 @@ } }, { - "$id": "3528", + "$id": "3661", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A list of graders for all eval runs in this group. Graders can reference variables in the data source using double curly braces notation, like `{{item.variable_name}}`. To reference the model's output, use the `sample` namespace (ie, `{{sample.output_text}}`).", "type": { - "$id": "3529", + "$id": "3662", "kind": "array", "name": "ArrayEvalGraderParams", "valueType": { - "$id": "3530", + "$id": "3663", "kind": "model", "name": "EvalGraderParams", "namespace": "OpenAI", @@ -41196,12 +42791,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3531", + "$id": "3664", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "315" + "$ref": "314" }, "optional": false, "readOnly": false, @@ -41217,12 +42812,12 @@ }, "properties": [ { - "$ref": "3531" + "$ref": "3664" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3532", + "$id": "3665", "kind": "model", "name": "EvalGraderLabelModelParams", "namespace": "OpenAI", @@ -41232,17 +42827,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3530" + "$ref": "3663" }, "properties": [ { - "$id": "3533", + "$id": "3666", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "320" + "$ref": "319" }, "optional": false, "readOnly": false, @@ -41257,13 +42852,13 @@ } }, { - "$id": "3534", + "$id": "3667", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3535", + "$id": "3668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41282,13 +42877,13 @@ } }, { - "$id": "3536", + "$id": "3669", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3537", + "$id": "3670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41307,22 +42902,22 @@ } }, { - "$id": "3538", + "$id": "3671", "kind": "property", "name": "input", "serializedName": "input", "doc": "A list of chat messages forming the prompt or context. May include variable references to the `item` namespace, ie {{item.name}}.", "type": { - "$id": "3539", + "$id": "3672", "kind": "array", "name": "ArrayCreateEvalItem", "valueType": { - "$id": "3540", + "$id": "3673", "kind": "union", "name": "CreateEvalItem", "variantTypes": [ { - "$id": "3541", + "$id": "3674", "kind": "model", "name": "EvalGraderLabelModelParamsInput", "namespace": "OpenAI", @@ -41331,13 +42926,13 @@ "decorators": [], "properties": [ { - "$id": "3542", + "$id": "3675", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "3543", + "$id": "3676", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41356,13 +42951,13 @@ } }, { - "$id": "3544", + "$id": "3677", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "3545", + "$id": "3678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41383,7 +42978,7 @@ ] }, { - "$ref": "3216" + "$ref": "3349" } ], "namespace": "OpenAI", @@ -41405,13 +43000,13 @@ } }, { - "$id": "3546", + "$id": "3679", "kind": "property", "name": "labels", "serializedName": "labels", "doc": "The labels to classify to each item in the evaluation.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -41426,13 +43021,13 @@ } }, { - "$id": "3547", + "$id": "3680", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", "doc": "The labels that indicate a passing result. Must be a subset of labels.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -41449,7 +43044,7 @@ ] }, "string_check": { - "$id": "3548", + "$id": "3681", "kind": "model", "name": "EvalGraderStringCheckParams", "namespace": "OpenAI", @@ -41458,17 +43053,17 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$ref": "3530" + "$ref": "3663" }, "properties": [ { - "$id": "3549", + "$id": "3682", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$ref": "3251" + "$ref": "3384" }, "optional": false, "readOnly": false, @@ -41483,13 +43078,13 @@ } }, { - "$id": "3550", + "$id": "3683", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3551", + "$id": "3684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41508,13 +43103,13 @@ } }, { - "$id": "3552", + "$id": "3685", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3553", + "$id": "3686", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41533,13 +43128,13 @@ } }, { - "$id": "3554", + "$id": "3687", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3555", + "$id": "3688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41558,13 +43153,13 @@ } }, { - "$id": "3556", + "$id": "3689", "kind": "property", "name": "operation", "serializedName": "operation", "doc": "The string check operation to perform. One of `eq`, `ne`, `like`, or `ilike`.", "type": { - "$ref": "323" + "$ref": "322" }, "optional": false, "readOnly": false, @@ -41581,7 +43176,7 @@ ] }, "text_similarity": { - "$id": "3557", + "$id": "3690", "kind": "model", "name": "EvalGraderTextSimilarityParams", "namespace": "OpenAI", @@ -41590,17 +43185,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3530" + "$ref": "3663" }, "properties": [ { - "$id": "3558", + "$id": "3691", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "318" + "$ref": "317" }, "optional": false, "readOnly": false, @@ -41615,13 +43210,13 @@ } }, { - "$id": "3559", + "$id": "3692", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3560", + "$id": "3693", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41640,13 +43235,13 @@ } }, { - "$id": "3561", + "$id": "3694", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3562", + "$id": "3695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41665,13 +43260,13 @@ } }, { - "$id": "3563", + "$id": "3696", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3564", + "$id": "3697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41690,13 +43285,13 @@ } }, { - "$id": "3565", + "$id": "3698", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", "doc": "The evaluation metric to use. One of `fuzzy_match`, `bleu`, `gleu`, `meteor`, `rouge_1`, `rouge_2`, `rouge_3`, `rouge_4`, `rouge_5`, or `rouge_l`.", "type": { - "$ref": "329" + "$ref": "328" }, "optional": false, "readOnly": false, @@ -41711,13 +43306,13 @@ } }, { - "$id": "3566", + "$id": "3699", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3567", + "$id": "3700", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41738,7 +43333,7 @@ ] }, "python": { - "$id": "3568", + "$id": "3701", "kind": "model", "name": "EvalGraderPythonParams", "namespace": "OpenAI", @@ -41747,17 +43342,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3530" + "$ref": "3663" }, "properties": [ { - "$id": "3569", + "$id": "3702", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "321" + "$ref": "320" }, "optional": false, "readOnly": false, @@ -41772,13 +43367,13 @@ } }, { - "$id": "3570", + "$id": "3703", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3571", + "$id": "3704", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41797,13 +43392,13 @@ } }, { - "$id": "3572", + "$id": "3705", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3573", + "$id": "3706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41822,13 +43417,13 @@ } }, { - "$id": "3574", + "$id": "3707", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3575", + "$id": "3708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41847,13 +43442,13 @@ } }, { - "$id": "3576", + "$id": "3709", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3577", + "$id": "3710", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41874,7 +43469,7 @@ ] }, "score_model": { - "$id": "3578", + "$id": "3711", "kind": "model", "name": "EvalGraderScoreModelParams", "namespace": "OpenAI", @@ -41883,17 +43478,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3530" + "$ref": "3663" }, "properties": [ { - "$id": "3579", + "$id": "3712", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "319" + "$ref": "318" }, "optional": false, "readOnly": false, @@ -41908,13 +43503,13 @@ } }, { - "$id": "3580", + "$id": "3713", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3581", + "$id": "3714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41933,13 +43528,13 @@ } }, { - "$id": "3582", + "$id": "3715", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3583", + "$id": "3716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41958,13 +43553,13 @@ } }, { - "$id": "3584", + "$id": "3717", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3585", + "$id": "3718", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -41983,13 +43578,13 @@ } }, { - "$id": "3586", + "$id": "3719", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3215" + "$ref": "3348" }, "optional": false, "readOnly": false, @@ -42004,13 +43599,13 @@ } }, { - "$id": "3587", + "$id": "3720", "kind": "property", "name": "range", "serializedName": "range", "doc": "The range of the score. Defaults to `[0, 1]`.", "type": { - "$ref": "2396" + "$ref": "2536" }, "optional": true, "readOnly": false, @@ -42025,13 +43620,13 @@ } }, { - "$id": "3588", + "$id": "3721", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3589", + "$id": "3722", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42071,40 +43666,40 @@ ] }, { - "$ref": "3515" + "$ref": "3648" }, { - "$ref": "3517" + "$ref": "3650" }, { - "$ref": "3522" + "$ref": "3655" }, { - "$ref": "3525" + "$ref": "3658" }, { - "$ref": "3530" + "$ref": "3663" }, { - "$ref": "3532" + "$ref": "3665" }, { - "$ref": "3541" + "$ref": "3674" }, { - "$ref": "3548" + "$ref": "3681" }, { - "$ref": "3557" + "$ref": "3690" }, { - "$ref": "3568" + "$ref": "3701" }, { - "$ref": "3578" + "$ref": "3711" }, { - "$id": "3590", + "$id": "3723", "kind": "model", "name": "UpdateEvalRequest", "namespace": "OpenAI", @@ -42113,12 +43708,12 @@ "decorators": [], "properties": [ { - "$id": "3591", + "$id": "3724", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3592", + "$id": "3725", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42137,12 +43732,12 @@ } }, { - "$id": "3593", + "$id": "3726", "kind": "property", "name": "metadata", "serializedName": "metadata", "type": { - "$id": "3594", + "$id": "3727", "kind": "model", "name": "MetadataPropertyForRequest", "namespace": "OpenAI", @@ -42152,13 +43747,13 @@ "decorators": [], "properties": [ { - "$id": "3595", + "$id": "3728", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -42189,10 +43784,10 @@ ] }, { - "$ref": "3594" + "$ref": "3727" }, { - "$id": "3596", + "$id": "3729", "kind": "model", "name": "DeleteEvalResponse", "namespace": "OpenAI", @@ -42201,12 +43796,12 @@ "decorators": [], "properties": [ { - "$id": "3597", + "$id": "3730", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1389" + "$ref": "1529" }, "optional": false, "readOnly": false, @@ -42221,12 +43816,12 @@ } }, { - "$id": "3598", + "$id": "3731", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3599", + "$id": "3732", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -42245,12 +43840,12 @@ } }, { - "$id": "3600", + "$id": "3733", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "3601", + "$id": "3734", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42271,7 +43866,7 @@ ] }, { - "$id": "3602", + "$id": "3735", "kind": "model", "name": "EvalRunList", "namespace": "OpenAI", @@ -42281,13 +43876,13 @@ "decorators": [], "properties": [ { - "$id": "3603", + "$id": "3736", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1391" + "$ref": "1531" }, "optional": false, "readOnly": false, @@ -42302,17 +43897,17 @@ } }, { - "$id": "3604", + "$id": "3737", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run objects.", "type": { - "$id": "3605", + "$id": "3738", "kind": "array", "name": "ArrayEvalRun", "valueType": { - "$id": "3606", + "$id": "3739", "kind": "model", "name": "EvalRun", "namespace": "OpenAI", @@ -42322,13 +43917,13 @@ "decorators": [], "properties": [ { - "$id": "3607", + "$id": "3740", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of the object. Always \"eval.run\".", "type": { - "$ref": "1393" + "$ref": "1533" }, "optional": false, "readOnly": false, @@ -42343,13 +43938,13 @@ } }, { - "$id": "3608", + "$id": "3741", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run.", "type": { - "$id": "3609", + "$id": "3742", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42368,13 +43963,13 @@ } }, { - "$id": "3610", + "$id": "3743", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the associated evaluation.", "type": { - "$id": "3611", + "$id": "3744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42393,13 +43988,13 @@ } }, { - "$id": "3612", + "$id": "3745", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "3613", + "$id": "3746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42418,13 +44013,13 @@ } }, { - "$id": "3614", + "$id": "3747", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that is evaluated, if applicable.", "type": { - "$id": "3615", + "$id": "3748", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42443,13 +44038,13 @@ } }, { - "$id": "3616", + "$id": "3749", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation run.", "type": { - "$id": "3617", + "$id": "3750", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42468,18 +44063,18 @@ } }, { - "$id": "3618", + "$id": "3751", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "3619", + "$id": "3752", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3620", + "$id": "3753", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42501,13 +44096,13 @@ } }, { - "$id": "3621", + "$id": "3754", "kind": "property", "name": "report_url", "serializedName": "report_url", "doc": "The URL to the rendered evaluation run report on the UI dashboard.", "type": { - "$id": "3622", + "$id": "3755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42526,13 +44121,13 @@ } }, { - "$id": "3623", + "$id": "3756", "kind": "property", "name": "result_counts", "serializedName": "result_counts", "doc": "Counters summarizing the outcomes of the evaluation run.", "type": { - "$id": "3624", + "$id": "3757", "kind": "model", "name": "EvalRunResultCounts", "namespace": "OpenAI", @@ -42541,13 +44136,13 @@ "decorators": [], "properties": [ { - "$id": "3625", + "$id": "3758", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of executed output items.", "type": { - "$id": "3626", + "$id": "3759", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42566,13 +44161,13 @@ } }, { - "$id": "3627", + "$id": "3760", "kind": "property", "name": "errored", "serializedName": "errored", "doc": "Number of output items that resulted in an error.", "type": { - "$id": "3628", + "$id": "3761", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42591,13 +44186,13 @@ } }, { - "$id": "3629", + "$id": "3762", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of output items that failed to pass the evaluation.", "type": { - "$id": "3630", + "$id": "3763", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42616,13 +44211,13 @@ } }, { - "$id": "3631", + "$id": "3764", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of output items that passed the evaluation.", "type": { - "$id": "3632", + "$id": "3765", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42655,17 +44250,17 @@ } }, { - "$id": "3633", + "$id": "3766", "kind": "property", "name": "per_model_usage", "serializedName": "per_model_usage", "doc": "Usage statistics for each model during the evaluation run.", "type": { - "$id": "3634", + "$id": "3767", "kind": "array", "name": "Array15", "valueType": { - "$id": "3635", + "$id": "3768", "kind": "model", "name": "EvalRunPerModelUsage", "namespace": "OpenAI", @@ -42674,13 +44269,13 @@ "decorators": [], "properties": [ { - "$id": "3636", + "$id": "3769", "kind": "property", "name": "model_name", "serializedName": "model_name", "doc": "The name of the model.", "type": { - "$id": "3637", + "$id": "3770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42699,13 +44294,13 @@ } }, { - "$id": "3638", + "$id": "3771", "kind": "property", "name": "invocation_count", "serializedName": "invocation_count", "doc": "The number of invocations.", "type": { - "$id": "3639", + "$id": "3772", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42724,13 +44319,13 @@ } }, { - "$id": "3640", + "$id": "3773", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "3641", + "$id": "3774", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42749,13 +44344,13 @@ } }, { - "$id": "3642", + "$id": "3775", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "3643", + "$id": "3776", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42774,13 +44369,13 @@ } }, { - "$id": "3644", + "$id": "3777", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "3645", + "$id": "3778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42799,13 +44394,13 @@ } }, { - "$id": "3646", + "$id": "3779", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "3647", + "$id": "3780", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42841,17 +44436,17 @@ } }, { - "$id": "3648", + "$id": "3781", "kind": "property", "name": "per_testing_criteria_results", "serializedName": "per_testing_criteria_results", "doc": "Results per testing criteria applied during the evaluation run.", "type": { - "$id": "3649", + "$id": "3782", "kind": "array", "name": "Array16", "valueType": { - "$id": "3650", + "$id": "3783", "kind": "model", "name": "EvalRunPerTestingCriteriaResult", "namespace": "OpenAI", @@ -42860,13 +44455,13 @@ "decorators": [], "properties": [ { - "$id": "3651", + "$id": "3784", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A description of the testing criteria.", "type": { - "$id": "3652", + "$id": "3785", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42885,13 +44480,13 @@ } }, { - "$id": "3653", + "$id": "3786", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of tests passed for this criteria.", "type": { - "$id": "3654", + "$id": "3787", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42910,13 +44505,13 @@ } }, { - "$id": "3655", + "$id": "3788", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of tests failed for this criteria.", "type": { - "$id": "3656", + "$id": "3789", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42952,13 +44547,13 @@ } }, { - "$id": "3657", + "$id": "3790", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Information about the run's data source.", "type": { - "$id": "3658", + "$id": "3791", "kind": "model", "name": "EvalRunDataSourceResource", "namespace": "OpenAI", @@ -42967,12 +44562,12 @@ "decorators": [], "properties": [ { - "$id": "3659", + "$id": "3792", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "401" + "$ref": "381" }, "optional": false, "readOnly": false, @@ -43001,13 +44596,13 @@ } }, { - "$id": "3660", + "$id": "3793", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -43022,12 +44617,12 @@ } }, { - "$id": "3661", + "$id": "3794", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "3662", + "$id": "3795", "kind": "model", "name": "EvalApiError", "namespace": "OpenAI", @@ -43037,13 +44632,13 @@ "decorators": [], "properties": [ { - "$id": "3663", + "$id": "3796", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "3664", + "$id": "3797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43062,13 +44657,13 @@ } }, { - "$id": "3665", + "$id": "3798", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "3666", + "$id": "3799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43118,13 +44713,13 @@ } }, { - "$id": "3667", + "$id": "3800", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run in the data array.", "type": { - "$id": "3668", + "$id": "3801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43143,13 +44738,13 @@ } }, { - "$id": "3669", + "$id": "3802", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run in the data array.", "type": { - "$id": "3670", + "$id": "3803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43168,13 +44763,13 @@ } }, { - "$id": "3671", + "$id": "3804", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "3672", + "$id": "3805", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -43195,25 +44790,25 @@ ] }, { - "$ref": "3606" + "$ref": "3739" }, { - "$ref": "3624" + "$ref": "3757" }, { - "$ref": "3635" + "$ref": "3768" }, { - "$ref": "3650" + "$ref": "3783" }, { - "$ref": "3658" + "$ref": "3791" }, { - "$ref": "3662" + "$ref": "3795" }, { - "$id": "3673", + "$id": "3806", "kind": "model", "name": "CreateEvalRunRequest", "namespace": "OpenAI", @@ -43222,13 +44817,13 @@ "decorators": [], "properties": [ { - "$id": "3674", + "$id": "3807", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the run.", "type": { - "$id": "3675", + "$id": "3808", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43247,13 +44842,13 @@ } }, { - "$id": "3676", + "$id": "3809", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -43268,13 +44863,13 @@ } }, { - "$id": "3677", + "$id": "3810", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Details about the run's data source.", "type": { - "$id": "3678", + "$id": "3811", "kind": "model", "name": "EvalRunDataSourceParams", "namespace": "OpenAI", @@ -43282,12 +44877,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3679", + "$id": "3812", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "401" + "$ref": "381" }, "optional": false, "readOnly": false, @@ -43303,12 +44898,12 @@ }, "properties": [ { - "$ref": "3679" + "$ref": "3812" } ], "discriminatedSubtypes": { "jsonl": { - "$id": "3680", + "$id": "3813", "kind": "model", "name": "EvalJsonlRunDataSourceParams", "namespace": "OpenAI", @@ -43318,17 +44913,17 @@ "discriminatorValue": "jsonl", "decorators": [], "baseModel": { - "$ref": "3678" + "$ref": "3811" }, "properties": [ { - "$id": "3681", + "$id": "3814", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `jsonl`.", "type": { - "$ref": "403" + "$ref": "383" }, "optional": false, "readOnly": false, @@ -43343,18 +44938,18 @@ } }, { - "$id": "3682", + "$id": "3815", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in the data source.", "type": { - "$id": "3683", + "$id": "3816", "kind": "union", "name": "EvalJsonlRunDataSourceParamsSource", "variantTypes": [ { - "$id": "3684", + "$id": "3817", "kind": "model", "name": "EvalRunFileContentDataContentSource", "namespace": "OpenAI", @@ -43363,7 +44958,7 @@ "discriminatorValue": "file_content", "decorators": [], "baseModel": { - "$id": "3685", + "$id": "3818", "kind": "model", "name": "EvalRunDataContentSource", "namespace": "OpenAI", @@ -43371,12 +44966,12 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3686", + "$id": "3819", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "406" + "$ref": "386" }, "optional": false, "readOnly": false, @@ -43392,15 +44987,15 @@ }, "properties": [ { - "$ref": "3686" + "$ref": "3819" } ], "discriminatedSubtypes": { "file_content": { - "$ref": "3684" + "$ref": "3817" }, "file_id": { - "$id": "3687", + "$id": "3820", "kind": "model", "name": "EvalRunFileIdDataContentSource", "namespace": "OpenAI", @@ -43409,17 +45004,17 @@ "discriminatorValue": "file_id", "decorators": [], "baseModel": { - "$ref": "3685" + "$ref": "3818" }, "properties": [ { - "$id": "3688", + "$id": "3821", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_id`.", "type": { - "$ref": "408" + "$ref": "388" }, "optional": false, "readOnly": false, @@ -43434,13 +45029,13 @@ } }, { - "$id": "3689", + "$id": "3822", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the file.", "type": { - "$id": "3690", + "$id": "3823", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43461,7 +45056,7 @@ ] }, "stored_completions": { - "$id": "3691", + "$id": "3824", "kind": "model", "name": "EvalRunStoredCompletionsDataContentSource", "namespace": "OpenAI", @@ -43471,17 +45066,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3685" + "$ref": "3818" }, "properties": [ { - "$id": "3692", + "$id": "3825", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of source. Always `stored_completions`.", "type": { - "$ref": "410" + "$ref": "390" }, "optional": false, "readOnly": false, @@ -43496,13 +45091,13 @@ } }, { - "$id": "3693", + "$id": "3826", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -43517,16 +45112,16 @@ } }, { - "$id": "3694", + "$id": "3827", "kind": "property", "name": "model", "serializedName": "model", "doc": "An optional model to filter by (e.g., 'gpt-4o').", "type": { - "$id": "3695", + "$id": "3828", "kind": "nullable", "type": { - "$id": "3696", + "$id": "3829", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43547,16 +45142,16 @@ } }, { - "$id": "3697", + "$id": "3830", "kind": "property", "name": "created_after", "serializedName": "created_after", "doc": "An optional Unix timestamp to filter items created after this time.", "type": { - "$id": "3698", + "$id": "3831", "kind": "nullable", "type": { - "$id": "3699", + "$id": "3832", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43577,16 +45172,16 @@ } }, { - "$id": "3700", + "$id": "3833", "kind": "property", "name": "created_before", "serializedName": "created_before", "doc": "An optional Unix timestamp to filter items created before this time.", "type": { - "$id": "3701", + "$id": "3834", "kind": "nullable", "type": { - "$id": "3702", + "$id": "3835", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43607,16 +45202,16 @@ } }, { - "$id": "3703", + "$id": "3836", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "An optional maximum number of items to return.", "type": { - "$id": "3704", + "$id": "3837", "kind": "nullable", "type": { - "$id": "3705", + "$id": "3838", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43639,7 +45234,7 @@ ] }, "responses": { - "$id": "3706", + "$id": "3839", "kind": "model", "name": "EvalRunResponsesDataContentSource", "namespace": "OpenAI", @@ -43649,17 +45244,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "3685" + "$ref": "3818" }, "properties": [ { - "$id": "3707", + "$id": "3840", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$ref": "411" + "$ref": "391" }, "optional": false, "readOnly": false, @@ -43674,13 +45269,13 @@ } }, { - "$id": "3708", + "$id": "3841", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -43695,16 +45290,16 @@ } }, { - "$id": "3709", + "$id": "3842", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to find responses for. This is a query parameter used to select responses.", "type": { - "$id": "3710", + "$id": "3843", "kind": "nullable", "type": { - "$id": "3711", + "$id": "3844", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43725,16 +45320,16 @@ } }, { - "$id": "3712", + "$id": "3845", "kind": "property", "name": "instructions_search", "serializedName": "instructions_search", "doc": "Optional string to search the 'instructions' field. This is a query parameter used to select responses.", "type": { - "$id": "3713", + "$id": "3846", "kind": "nullable", "type": { - "$id": "3714", + "$id": "3847", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43755,16 +45350,16 @@ } }, { - "$id": "3715", + "$id": "3848", "kind": "property", "name": "created_after", "serializedName": "created_after", "doc": "Only include items created after this timestamp (inclusive). This is a query parameter used to select responses.", "type": { - "$id": "3716", + "$id": "3849", "kind": "nullable", "type": { - "$id": "3717", + "$id": "3850", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43785,16 +45380,16 @@ } }, { - "$id": "3718", + "$id": "3851", "kind": "property", "name": "created_before", "serializedName": "created_before", "doc": "Only include items created before this timestamp (inclusive). This is a query parameter used to select responses.", "type": { - "$id": "3719", + "$id": "3852", "kind": "nullable", "type": { - "$id": "3720", + "$id": "3853", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43815,16 +45410,16 @@ } }, { - "$id": "3721", + "$id": "3854", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "doc": "Optional reasoning effort parameter. This is a query parameter used to select responses.", "type": { - "$id": "3722", + "$id": "3855", "kind": "nullable", "type": { - "$ref": "57" + "$ref": "53" }, "namespace": "" }, @@ -43841,16 +45436,16 @@ } }, { - "$id": "3723", + "$id": "3856", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature. This is a query parameter used to select responses.", "type": { - "$id": "3724", + "$id": "3857", "kind": "nullable", "type": { - "$id": "3725", + "$id": "3858", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43871,16 +45466,16 @@ } }, { - "$id": "3726", + "$id": "3859", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "Nucleus sampling parameter. This is a query parameter used to select responses.", "type": { - "$id": "3727", + "$id": "3860", "kind": "nullable", "type": { - "$id": "3728", + "$id": "3861", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43901,16 +45496,16 @@ } }, { - "$id": "3729", + "$id": "3862", "kind": "property", "name": "users", "serializedName": "users", "doc": "List of user identifiers. This is a query parameter used to select responses.", "type": { - "$id": "3730", + "$id": "3863", "kind": "nullable", "type": { - "$ref": "2155" + "$ref": "2295" }, "namespace": "" }, @@ -43927,16 +45522,16 @@ } }, { - "$id": "3731", + "$id": "3864", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "List of tool names. This is a query parameter used to select responses.", "type": { - "$id": "3732", + "$id": "3865", "kind": "nullable", "type": { - "$ref": "2155" + "$ref": "2295" }, "namespace": "" }, @@ -43958,21 +45553,21 @@ }, "properties": [ { - "$id": "3733", + "$id": "3866", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_content`.", "type": { - "$id": "3734", + "$id": "3867", "kind": "enumvalue", "name": "file_content", "value": "file_content", "valueType": { - "$ref": "407" + "$ref": "387" }, "enumType": { - "$ref": "406" + "$ref": "386" }, "decorators": [] }, @@ -43989,17 +45584,17 @@ } }, { - "$id": "3735", + "$id": "3868", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the jsonl file.", "type": { - "$id": "3736", + "$id": "3869", "kind": "array", "name": "Array17", "valueType": { - "$id": "3737", + "$id": "3870", "kind": "model", "name": "EvalRunFileContentDataContentSourceContent", "namespace": "OpenAI", @@ -44008,12 +45603,12 @@ "decorators": [], "properties": [ { - "$id": "3738", + "$id": "3871", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": false, "readOnly": false, @@ -44028,12 +45623,12 @@ } }, { - "$id": "3739", + "$id": "3872", "kind": "property", "name": "sample", "serializedName": "sample", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": true, "readOnly": false, @@ -44067,7 +45662,7 @@ ] }, { - "$ref": "3687" + "$ref": "3820" } ], "namespace": "", @@ -44088,7 +45683,7 @@ ] }, "completions": { - "$id": "3740", + "$id": "3873", "kind": "model", "name": "EvalCompletionsRunDataSourceParams", "namespace": "OpenAI", @@ -44098,17 +45693,17 @@ "discriminatorValue": "completions", "decorators": [], "baseModel": { - "$ref": "3678" + "$ref": "3811" }, "properties": [ { - "$id": "3741", + "$id": "3874", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `completions`.", "type": { - "$ref": "404" + "$ref": "384" }, "optional": false, "readOnly": false, @@ -44123,18 +45718,18 @@ } }, { - "$id": "3742", + "$id": "3875", "kind": "property", "name": "input_messages", "serializedName": "input_messages", "doc": "Used when sampling from a model. Dictates the structure of the messages passed into the model. Can either be a reference to a prebuilt trajectory (ie, `item.input_trajectory`), or a template with variable references to the `item` namespace.", "type": { - "$id": "3743", + "$id": "3876", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "3744", + "$id": "3877", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -44143,13 +45738,13 @@ "decorators": [], "properties": [ { - "$id": "3745", + "$id": "3878", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `template`.", "type": { - "$ref": "1395" + "$ref": "1535" }, "optional": false, "readOnly": false, @@ -44164,29 +45759,29 @@ } }, { - "$id": "3746", + "$id": "3879", "kind": "property", "name": "template", "serializedName": "template", "doc": "A list of chat messages forming the prompt or context. May include variable references to the `item` namespace, ie {{item.name}}.", "type": { - "$id": "3747", + "$id": "3880", "kind": "array", "name": "Array18", "valueType": { - "$id": "3748", + "$id": "3881", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "3749", + "$id": "3882", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", "decorators": [] }, { - "$ref": "3216" + "$ref": "3349" } ], "namespace": "", @@ -44210,7 +45805,7 @@ ] }, { - "$id": "3750", + "$id": "3883", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -44219,13 +45814,13 @@ "decorators": [], "properties": [ { - "$id": "3751", + "$id": "3884", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `item_reference`.", "type": { - "$ref": "1397" + "$ref": "1537" }, "optional": false, "readOnly": false, @@ -44240,13 +45835,13 @@ } }, { - "$id": "3752", + "$id": "3885", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.input_trajectory\"", "type": { - "$id": "3753", + "$id": "3886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44283,12 +45878,12 @@ } }, { - "$id": "3754", + "$id": "3887", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "3755", + "$id": "3888", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -44297,13 +45892,13 @@ "decorators": [], "properties": [ { - "$id": "3756", + "$id": "3889", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "3757", + "$id": "3890", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44322,13 +45917,13 @@ } }, { - "$id": "3758", + "$id": "3891", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "3759", + "$id": "3892", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44347,13 +45942,13 @@ } }, { - "$id": "3760", + "$id": "3893", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "3761", + "$id": "3894", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44372,13 +45967,13 @@ } }, { - "$id": "3762", + "$id": "3895", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "3763", + "$id": "3896", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44397,13 +45992,13 @@ } }, { - "$id": "3764", + "$id": "3897", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "An object specifying the format that the model must output.\n\nSetting to `{ \"type\": \"json_schema\", \"json_schema\": {...} }` enables\nStructured Outputs which ensures the model will match your supplied JSON\nschema. Learn more in the [Structured Outputs\nguide](/docs/guides/structured-outputs).\n\nSetting to `{ \"type\": \"json_object\" }` enables the older JSON mode, which\nensures the message the model generates is valid JSON. Using `json_schema`\nis preferred for models that support it.", "type": { - "$id": "3765", + "$id": "3898", "kind": "model", "name": "ResponseTextFormatConfiguration", "namespace": "OpenAI", @@ -44411,12 +46006,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3766", + "$id": "3899", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "412" + "$ref": "392" }, "optional": false, "readOnly": false, @@ -44432,12 +46027,12 @@ }, "properties": [ { - "$ref": "3766" + "$ref": "3899" } ], "discriminatedSubtypes": { "text": { - "$id": "3767", + "$id": "3900", "kind": "model", "name": "ResponseTextFormatConfigurationText", "namespace": "OpenAI", @@ -44446,16 +46041,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "3765" + "$ref": "3898" }, "properties": [ { - "$id": "3768", + "$id": "3901", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "414" + "$ref": "394" }, "optional": false, "readOnly": false, @@ -44472,7 +46067,7 @@ ] }, "json_object": { - "$id": "3769", + "$id": "3902", "kind": "model", "name": "ResponseTextFormatConfigurationJsonObject", "namespace": "OpenAI", @@ -44481,16 +46076,16 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "3765" + "$ref": "3898" }, "properties": [ { - "$id": "3770", + "$id": "3903", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "416" + "$ref": "396" }, "optional": false, "readOnly": false, @@ -44507,7 +46102,7 @@ ] }, "json_schema": { - "$id": "3771", + "$id": "3904", "kind": "model", "name": "ResponseTextFormatConfigurationJsonSchema", "namespace": "OpenAI", @@ -44517,17 +46112,17 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "3765" + "$ref": "3898" }, "properties": [ { - "$id": "3772", + "$id": "3905", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_schema`.", "type": { - "$ref": "415" + "$ref": "395" }, "optional": false, "readOnly": false, @@ -44542,13 +46137,13 @@ } }, { - "$id": "3773", + "$id": "3906", "kind": "property", "name": "description", "serializedName": "description", "doc": "A description of what the response format is for, used by the model to\ndetermine how to respond in the format.", "type": { - "$id": "3774", + "$id": "3907", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44567,13 +46162,13 @@ } }, { - "$id": "3775", + "$id": "3908", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the response format. Must be a-z, A-Z, 0-9, or contain\nunderscores and dashes, with a maximum length of 64.", "type": { - "$id": "3776", + "$id": "3909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44592,12 +46187,12 @@ } }, { - "$id": "3777", + "$id": "3910", "kind": "property", "name": "schema", "serializedName": "schema", "type": { - "$ref": "2188" + "$ref": "2328" }, "optional": false, "readOnly": false, @@ -44612,16 +46207,16 @@ } }, { - "$id": "3778", + "$id": "3911", "kind": "property", "name": "strict", "serializedName": "strict", "doc": "Whether to enable strict schema adherence when generating the output.\nIf set to true, the model will always follow the exact schema defined\nin the `schema` field. Only a subset of JSON Schema is supported when\n`strict` is `true`. To learn more, read the [Structured Outputs\nguide](/docs/guides/structured-outputs).", "type": { - "$id": "3779", + "$id": "3912", "kind": "nullable", "type": { - "$id": "3780", + "$id": "3913", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -44658,13 +46253,13 @@ } }, { - "$id": "3781", + "$id": "3914", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "A list of tools the model may call. Currently, only functions are supported as a tool. Use this to provide a list of functions the model may generate JSON inputs for. A max of 128 functions are supported.", "type": { - "$ref": "2873" + "$ref": "3013" }, "optional": true, "readOnly": false, @@ -44693,13 +46288,13 @@ } }, { - "$id": "3782", + "$id": "3915", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "3783", + "$id": "3916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44718,24 +46313,24 @@ } }, { - "$id": "3784", + "$id": "3917", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "3785", + "$id": "3918", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "3684" + "$ref": "3817" }, { - "$ref": "3687" + "$ref": "3820" }, { - "$ref": "3691" + "$ref": "3824" } ], "namespace": "", @@ -44756,7 +46351,7 @@ ] }, "responses": { - "$id": "3786", + "$id": "3919", "kind": "model", "name": "EvalResponsesRunDataSourceParams", "namespace": "OpenAI", @@ -44766,17 +46361,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "3678" + "$ref": "3811" }, "properties": [ { - "$id": "3787", + "$id": "3920", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$ref": "405" + "$ref": "385" }, "optional": false, "readOnly": false, @@ -44791,18 +46386,18 @@ } }, { - "$id": "3788", + "$id": "3921", "kind": "property", "name": "input_messages", "serializedName": "input_messages", "doc": "Used when sampling from a model. Dictates the structure of the messages passed into the model. Can either be a reference to a prebuilt trajectory (ie, `item.input_trajectory`), or a template with variable references to the `item` namespace.", "type": { - "$id": "3789", + "$id": "3922", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "3790", + "$id": "3923", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -44811,13 +46406,13 @@ "decorators": [], "properties": [ { - "$id": "3791", + "$id": "3924", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `template`.", "type": { - "$ref": "1399" + "$ref": "1539" }, "optional": false, "readOnly": false, @@ -44832,22 +46427,22 @@ } }, { - "$id": "3792", + "$id": "3925", "kind": "property", "name": "template", "serializedName": "template", "doc": "A list of chat messages forming the prompt or context. May include variable references to the `item` namespace, ie {{item.name}}.", "type": { - "$id": "3793", + "$id": "3926", "kind": "array", "name": "Array19", "valueType": { - "$id": "3794", + "$id": "3927", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "3795", + "$id": "3928", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate1", "namespace": "OpenAI", @@ -44856,13 +46451,13 @@ "decorators": [], "properties": [ { - "$id": "3796", + "$id": "3929", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "3797", + "$id": "3930", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44881,13 +46476,13 @@ } }, { - "$id": "3798", + "$id": "3931", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "3799", + "$id": "3932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44908,7 +46503,7 @@ ] }, { - "$ref": "3216" + "$ref": "3349" } ], "namespace": "", @@ -44932,7 +46527,7 @@ ] }, { - "$id": "3800", + "$id": "3933", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -44941,13 +46536,13 @@ "decorators": [], "properties": [ { - "$id": "3801", + "$id": "3934", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of input messages. Always `item_reference`.", "type": { - "$ref": "1401" + "$ref": "1541" }, "optional": false, "readOnly": false, @@ -44962,13 +46557,13 @@ } }, { - "$id": "3802", + "$id": "3935", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.name\"", "type": { - "$id": "3803", + "$id": "3936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45005,12 +46600,12 @@ } }, { - "$id": "3804", + "$id": "3937", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "3805", + "$id": "3938", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -45019,13 +46614,13 @@ "decorators": [], "properties": [ { - "$id": "3806", + "$id": "3939", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "3807", + "$id": "3940", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45044,13 +46639,13 @@ } }, { - "$id": "3808", + "$id": "3941", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "3809", + "$id": "3942", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -45069,13 +46664,13 @@ } }, { - "$id": "3810", + "$id": "3943", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "3811", + "$id": "3944", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45094,13 +46689,13 @@ } }, { - "$id": "3812", + "$id": "3945", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "3813", + "$id": "3946", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -45119,17 +46714,17 @@ } }, { - "$id": "3814", + "$id": "3947", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "An array of tools the model may call while generating a response. You\ncan specify which tool to use by setting the `tool_choice` parameter.\n\nThe two categories of tools you can provide the model are:\n\n- **Built-in tools**: Tools that are provided by OpenAI that extend the\n model's capabilities, like [web search](/docs/guides/tools-web-search)\n or [file search](/docs/guides/tools-file-search). Learn more about\n [built-in tools](/docs/guides/tools).\n- **Function calls (custom tools)**: Functions that are defined by you,\n enabling the model to call your own code. Learn more about\n [function calling](/docs/guides/function-calling).", "type": { - "$id": "3815", + "$id": "3948", "kind": "array", "name": "ArrayTool", "valueType": { - "$id": "3816", + "$id": "3949", "kind": "model", "name": "Tool", "namespace": "OpenAI", @@ -45137,12 +46732,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3817", + "$id": "3950", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "417" + "$ref": "397" }, "optional": false, "readOnly": false, @@ -45158,12 +46753,12 @@ }, "properties": [ { - "$ref": "3817" + "$ref": "3950" } ], "discriminatedSubtypes": { "function": { - "$id": "3818", + "$id": "3951", "kind": "model", "name": "FunctionTool", "namespace": "OpenAI", @@ -45173,17 +46768,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3819", + "$id": "3952", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the function tool. Always `function`.", "type": { - "$ref": "420" + "$ref": "400" }, "optional": false, "readOnly": false, @@ -45198,13 +46793,13 @@ } }, { - "$id": "3820", + "$id": "3953", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "3821", + "$id": "3954", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45223,16 +46818,16 @@ } }, { - "$id": "3822", + "$id": "3955", "kind": "property", "name": "description", "serializedName": "description", "doc": "A description of the function. Used by the model to determine whether or not to call the function.", "type": { - "$id": "3823", + "$id": "3956", "kind": "nullable", "type": { - "$id": "3824", + "$id": "3957", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45253,16 +46848,16 @@ } }, { - "$id": "3825", + "$id": "3958", "kind": "property", "name": "parameters", "serializedName": "parameters", "doc": "A JSON schema object describing the parameters of the function.", "type": { - "$id": "3826", + "$id": "3959", "kind": "nullable", "type": { - "$id": "3827", + "$id": "3960", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45283,16 +46878,16 @@ } }, { - "$id": "3828", + "$id": "3961", "kind": "property", "name": "strict", "serializedName": "strict", "doc": "Whether to enforce strict parameter validation. Default `true`.", "type": { - "$id": "3829", + "$id": "3962", "kind": "nullable", "type": { - "$id": "3830", + "$id": "3963", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45315,7 +46910,7 @@ ] }, "file_search": { - "$id": "3831", + "$id": "3964", "kind": "model", "name": "FileSearchTool", "namespace": "OpenAI", @@ -45325,17 +46920,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3832", + "$id": "3965", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file search tool. Always `file_search`.", "type": { - "$ref": "419" + "$ref": "399" }, "optional": false, "readOnly": false, @@ -45350,13 +46945,13 @@ } }, { - "$id": "3833", + "$id": "3966", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", "doc": "The IDs of the vector stores to search.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -45371,13 +46966,13 @@ } }, { - "$id": "3834", + "$id": "3967", "kind": "property", "name": "max_num_results", "serializedName": "max_num_results", "doc": "The maximum number of results to return. This number should be between 1 and 50 inclusive.", "type": { - "$id": "3835", + "$id": "3968", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -45396,13 +46991,13 @@ } }, { - "$id": "3836", + "$id": "3969", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$id": "3837", + "$id": "3970", "kind": "model", "name": "RankingOptions", "namespace": "OpenAI", @@ -45411,13 +47006,13 @@ "decorators": [], "properties": [ { - "$id": "3838", + "$id": "3971", "kind": "property", "name": "ranker", "serializedName": "ranker", "doc": "The ranker to use for the file search.", "type": { - "$ref": "427" + "$ref": "407" }, "optional": true, "readOnly": false, @@ -45432,13 +47027,13 @@ } }, { - "$id": "3839", + "$id": "3972", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "doc": "The score threshold for the file search, a number between 0 and 1. Numbers closer to 1 will attempt to return only the most relevant results, but may return fewer results.", "type": { - "$id": "3840", + "$id": "3973", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45471,21 +47066,21 @@ } }, { - "$id": "3841", + "$id": "3974", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply.", "type": { - "$id": "3842", + "$id": "3975", "kind": "nullable", "type": { - "$id": "3843", + "$id": "3976", "kind": "union", "name": "Filters", "variantTypes": [ { - "$id": "3844", + "$id": "3977", "kind": "model", "name": "ComparisonFilter", "namespace": "OpenAI", @@ -45493,12 +47088,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3845", + "$id": "3978", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "431" + "$ref": "411" }, "optional": false, "readOnly": false, @@ -45514,15 +47109,15 @@ }, "properties": [ { - "$ref": "3845" + "$ref": "3978" }, { - "$id": "3846", + "$id": "3979", "kind": "property", "name": "key", "serializedName": "key", "type": { - "$id": "3847", + "$id": "3980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45541,31 +47136,31 @@ } }, { - "$id": "3848", + "$id": "3981", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "3849", + "$id": "3982", "kind": "union", "name": "ComparisonFilterValue", "variantTypes": [ { - "$id": "3850", + "$id": "3983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3851", + "$id": "3984", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", "decorators": [] }, { - "$id": "3852", + "$id": "3985", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45590,7 +47185,7 @@ ], "discriminatedSubtypes": { "eq": { - "$id": "3853", + "$id": "3986", "kind": "model", "name": "ComparisonFilterEquals", "namespace": "OpenAI", @@ -45599,16 +47194,16 @@ "discriminatorValue": "eq", "decorators": [], "baseModel": { - "$ref": "3844" + "$ref": "3977" }, "properties": [ { - "$id": "3854", + "$id": "3987", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "433" + "$ref": "413" }, "optional": false, "readOnly": false, @@ -45625,7 +47220,7 @@ ] }, "ne": { - "$id": "3855", + "$id": "3988", "kind": "model", "name": "ComparisonFilterNotEquals", "namespace": "OpenAI", @@ -45634,16 +47229,16 @@ "discriminatorValue": "ne", "decorators": [], "baseModel": { - "$ref": "3844" + "$ref": "3977" }, "properties": [ { - "$id": "3856", + "$id": "3989", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "434" + "$ref": "414" }, "optional": false, "readOnly": false, @@ -45660,7 +47255,7 @@ ] }, "gt": { - "$id": "3857", + "$id": "3990", "kind": "model", "name": "ComparisonFilterGreaterThan", "namespace": "OpenAI", @@ -45669,16 +47264,16 @@ "discriminatorValue": "gt", "decorators": [], "baseModel": { - "$ref": "3844" + "$ref": "3977" }, "properties": [ { - "$id": "3858", + "$id": "3991", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "435" + "$ref": "415" }, "optional": false, "readOnly": false, @@ -45695,7 +47290,7 @@ ] }, "gte": { - "$id": "3859", + "$id": "3992", "kind": "model", "name": "ComparisonFilterGreaterThanOrEquals", "namespace": "OpenAI", @@ -45704,16 +47299,16 @@ "discriminatorValue": "gte", "decorators": [], "baseModel": { - "$ref": "3844" + "$ref": "3977" }, "properties": [ { - "$id": "3860", + "$id": "3993", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "436" + "$ref": "416" }, "optional": false, "readOnly": false, @@ -45730,7 +47325,7 @@ ] }, "lt": { - "$id": "3861", + "$id": "3994", "kind": "model", "name": "ComparisonFilterLessThan", "namespace": "OpenAI", @@ -45739,16 +47334,16 @@ "discriminatorValue": "lt", "decorators": [], "baseModel": { - "$ref": "3844" + "$ref": "3977" }, "properties": [ { - "$id": "3862", + "$id": "3995", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "437" + "$ref": "417" }, "optional": false, "readOnly": false, @@ -45765,7 +47360,7 @@ ] }, "lte": { - "$id": "3863", + "$id": "3996", "kind": "model", "name": "ComparisonFilterLessThanOrEquals", "namespace": "OpenAI", @@ -45774,16 +47369,16 @@ "discriminatorValue": "lte", "decorators": [], "baseModel": { - "$ref": "3844" + "$ref": "3977" }, "properties": [ { - "$id": "3864", + "$id": "3997", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "438" + "$ref": "418" }, "optional": false, "readOnly": false, @@ -45802,7 +47397,7 @@ } }, { - "$id": "3865", + "$id": "3998", "kind": "model", "name": "CompoundFilter", "namespace": "OpenAI", @@ -45810,12 +47405,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3866", + "$id": "3999", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "439" + "$ref": "419" }, "optional": false, "readOnly": false, @@ -45831,27 +47426,27 @@ }, "properties": [ { - "$ref": "3866" + "$ref": "3999" }, { - "$id": "3867", + "$id": "4000", "kind": "property", "name": "filters", "serializedName": "filters", "type": { - "$id": "3868", + "$id": "4001", "kind": "array", "name": "Array20", "valueType": { - "$id": "3869", + "$id": "4002", "kind": "union", "name": "CompoundFilterFilter", "variantTypes": [ { - "$ref": "3844" + "$ref": "3977" }, { - "$ref": "3865" + "$ref": "3998" } ], "namespace": "", @@ -45875,7 +47470,7 @@ ], "discriminatedSubtypes": { "and": { - "$id": "3870", + "$id": "4003", "kind": "model", "name": "CompoundFilterAnd", "namespace": "OpenAI", @@ -45884,16 +47479,16 @@ "discriminatorValue": "and", "decorators": [], "baseModel": { - "$ref": "3865" + "$ref": "3998" }, "properties": [ { - "$id": "3871", + "$id": "4004", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "441" + "$ref": "421" }, "optional": false, "readOnly": false, @@ -45910,7 +47505,7 @@ ] }, "or": { - "$id": "3872", + "$id": "4005", "kind": "model", "name": "CompoundFilterOr", "namespace": "OpenAI", @@ -45919,16 +47514,16 @@ "discriminatorValue": "or", "decorators": [], "baseModel": { - "$ref": "3865" + "$ref": "3998" }, "properties": [ { - "$id": "3873", + "$id": "4006", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "442" + "$ref": "422" }, "optional": false, "readOnly": false, @@ -45967,7 +47562,7 @@ ] }, "computer_use_preview": { - "$id": "3874", + "$id": "4007", "kind": "model", "name": "ComputerUsePreviewTool", "namespace": "OpenAI", @@ -45977,17 +47572,17 @@ "discriminatorValue": "computer_use_preview", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3875", + "$id": "4008", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the computer use tool. Always `computer_use_preview`.", "type": { - "$ref": "421" + "$ref": "401" }, "optional": false, "readOnly": false, @@ -46002,13 +47597,13 @@ } }, { - "$id": "3876", + "$id": "4009", "kind": "property", "name": "environment", "serializedName": "environment", "doc": "The type of computer environment to control.", "type": { - "$ref": "443" + "$ref": "423" }, "optional": false, "readOnly": false, @@ -46023,13 +47618,13 @@ } }, { - "$id": "3877", + "$id": "4010", "kind": "property", "name": "display_width", "serializedName": "display_width", "doc": "The width of the computer display.", "type": { - "$id": "3878", + "$id": "4011", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -46048,13 +47643,13 @@ } }, { - "$id": "3879", + "$id": "4012", "kind": "property", "name": "display_height", "serializedName": "display_height", "doc": "The height of the computer display.", "type": { - "$id": "3880", + "$id": "4013", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -46075,7 +47670,7 @@ ] }, "web_search_preview": { - "$id": "3881", + "$id": "4014", "kind": "model", "name": "WebSearchPreviewTool", "namespace": "OpenAI", @@ -46085,17 +47680,17 @@ "discriminatorValue": "web_search_preview", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3882", + "$id": "4015", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the web search tool. One of `web_search_preview` or `web_search_preview_2025_03_11`.", "type": { - "$ref": "422" + "$ref": "402" }, "optional": false, "readOnly": false, @@ -46110,16 +47705,16 @@ } }, { - "$id": "3883", + "$id": "4016", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "The user's location.", "type": { - "$id": "3884", + "$id": "4017", "kind": "nullable", "type": { - "$id": "3885", + "$id": "4018", "kind": "model", "name": "Location", "namespace": "OpenAI", @@ -46127,12 +47722,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3886", + "$id": "4019", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "450" + "$ref": "430" }, "optional": false, "readOnly": false, @@ -46148,12 +47743,12 @@ }, "properties": [ { - "$ref": "3886" + "$ref": "4019" } ], "discriminatedSubtypes": { "approximate": { - "$id": "3887", + "$id": "4020", "kind": "model", "name": "ApproximateLocation", "namespace": "OpenAI", @@ -46162,16 +47757,16 @@ "discriminatorValue": "approximate", "decorators": [], "baseModel": { - "$ref": "3885" + "$ref": "4018" }, "properties": [ { - "$id": "3888", + "$id": "4021", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "452" + "$ref": "432" }, "optional": false, "readOnly": false, @@ -46186,15 +47781,15 @@ } }, { - "$id": "3889", + "$id": "4022", "kind": "property", "name": "country", "serializedName": "country", "type": { - "$id": "3890", + "$id": "4023", "kind": "nullable", "type": { - "$id": "3891", + "$id": "4024", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46215,15 +47810,15 @@ } }, { - "$id": "3892", + "$id": "4025", "kind": "property", "name": "region", "serializedName": "region", "type": { - "$id": "3893", + "$id": "4026", "kind": "nullable", "type": { - "$id": "3894", + "$id": "4027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46244,15 +47839,15 @@ } }, { - "$id": "3895", + "$id": "4028", "kind": "property", "name": "city", "serializedName": "city", "type": { - "$id": "3896", + "$id": "4029", "kind": "nullable", "type": { - "$id": "3897", + "$id": "4030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46273,15 +47868,15 @@ } }, { - "$id": "3898", + "$id": "4031", "kind": "property", "name": "timezone", "serializedName": "timezone", "type": { - "$id": "3899", + "$id": "4032", "kind": "nullable", "type": { - "$id": "3900", + "$id": "4033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46320,13 +47915,13 @@ } }, { - "$id": "3901", + "$id": "4034", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", "doc": "High level guidance for the amount of context window space to use for the search. One of `low`, `medium`, or `high`. `medium` is the default.", "type": { - "$ref": "453" + "$ref": "433" }, "optional": true, "readOnly": false, @@ -46343,7 +47938,7 @@ ] }, "code_interpreter": { - "$id": "3902", + "$id": "4035", "kind": "model", "name": "CodeInterpreterTool", "namespace": "OpenAI", @@ -46353,17 +47948,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3903", + "$id": "4036", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the code interpreter tool. Always `code_interpreter`.", "type": { - "$ref": "424" + "$ref": "404" }, "optional": false, "readOnly": false, @@ -46378,25 +47973,25 @@ } }, { - "$id": "3904", + "$id": "4037", "kind": "property", "name": "container", "serializedName": "container", "doc": "The code interpreter container. Can be a container ID or an object that\nspecifies uploaded file IDs to make available to your code.", "type": { - "$id": "3905", + "$id": "4038", "kind": "union", "name": "CodeInterpreterToolContainer", "variantTypes": [ { - "$id": "3906", + "$id": "4039", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3907", + "$id": "4040", "kind": "model", "name": "CodeInterpreterToolAuto", "namespace": "OpenAI", @@ -46406,13 +48001,13 @@ "decorators": [], "properties": [ { - "$id": "3908", + "$id": "4041", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `auto`.", "type": { - "$ref": "1403" + "$ref": "1543" }, "optional": false, "readOnly": false, @@ -46427,13 +48022,13 @@ } }, { - "$id": "3909", + "$id": "4042", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "An optional list of uploaded files to make available to your code.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -46468,7 +48063,7 @@ ] }, "image_generation": { - "$id": "3910", + "$id": "4043", "kind": "model", "name": "ImageGenTool", "namespace": "OpenAI", @@ -46478,17 +48073,17 @@ "discriminatorValue": "image_generation", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3911", + "$id": "4044", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the image generation tool. Always `image_generation`.", "type": { - "$ref": "425" + "$ref": "405" }, "optional": false, "readOnly": false, @@ -46503,13 +48098,13 @@ } }, { - "$id": "3912", + "$id": "4045", "kind": "property", "name": "model", "serializedName": "model", "doc": "The image generation model to use. Default: `gpt-image-1`.", "type": { - "$ref": "1405" + "$ref": "1545" }, "optional": true, "readOnly": false, @@ -46524,13 +48119,13 @@ } }, { - "$id": "3913", + "$id": "4046", "kind": "property", "name": "quality", "serializedName": "quality", "doc": "The quality of the generated image. One of `low`, `medium`, `high`,\nor `auto`. Default: `auto`.", "type": { - "$ref": "458" + "$ref": "438" }, "optional": true, "readOnly": false, @@ -46545,13 +48140,13 @@ } }, { - "$id": "3914", + "$id": "4047", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated image. One of `1024x1024`, `1024x1536`,\n`1536x1024`, or `auto`. Default: `auto`.", "type": { - "$ref": "464" + "$ref": "444" }, "optional": true, "readOnly": false, @@ -46566,13 +48161,13 @@ } }, { - "$id": "3915", + "$id": "4048", "kind": "property", "name": "output_format", "serializedName": "output_format", "doc": "The output format of the generated image. One of `png`, `webp`, or\n`jpeg`. Default: `png`.", "type": { - "$ref": "470" + "$ref": "450" }, "optional": true, "readOnly": false, @@ -46587,13 +48182,13 @@ } }, { - "$id": "3916", + "$id": "4049", "kind": "property", "name": "output_compression", "serializedName": "output_compression", "doc": "Compression level for the output image. Default: 100.", "type": { - "$id": "3917", + "$id": "4050", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -46612,13 +48207,13 @@ } }, { - "$id": "3918", + "$id": "4051", "kind": "property", "name": "moderation", "serializedName": "moderation", "doc": "Moderation level for the generated image. Default: `auto`.", "type": { - "$ref": "475" + "$ref": "455" }, "optional": true, "readOnly": false, @@ -46633,13 +48228,13 @@ } }, { - "$id": "3919", + "$id": "4052", "kind": "property", "name": "background", "serializedName": "background", "doc": "Background type for the generated image. One of `transparent`,\n`opaque`, or `auto`. Default: `auto`.", "type": { - "$ref": "479" + "$ref": "459" }, "optional": true, "readOnly": false, @@ -46654,13 +48249,13 @@ } }, { - "$id": "3920", + "$id": "4053", "kind": "property", "name": "input_image_mask", "serializedName": "input_image_mask", "doc": "Optional mask for inpainting. Contains `image_url`\n(string, optional) and `file_id` (string, optional).", "type": { - "$id": "3921", + "$id": "4054", "kind": "model", "name": "ImageGenToolInputImageMask", "namespace": "OpenAI", @@ -46669,13 +48264,13 @@ "decorators": [], "properties": [ { - "$id": "3922", + "$id": "4055", "kind": "property", "name": "image_url", "serializedName": "image_url", "doc": "Base64-encoded mask image.", "type": { - "$id": "3923", + "$id": "4056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46694,13 +48289,13 @@ } }, { - "$id": "3924", + "$id": "4057", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "File ID for the mask image.", "type": { - "$id": "3925", + "$id": "4058", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46733,13 +48328,13 @@ } }, { - "$id": "3926", + "$id": "4059", "kind": "property", "name": "partial_images", "serializedName": "partial_images", "doc": "Number of partial images to generate in streaming mode, from 0 (default value) to 3.", "type": { - "$id": "3927", + "$id": "4060", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -46760,7 +48355,7 @@ ] }, "local_shell": { - "$id": "3928", + "$id": "4061", "kind": "model", "name": "LocalShellTool", "namespace": "OpenAI", @@ -46770,17 +48365,17 @@ "discriminatorValue": "local_shell", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3929", + "$id": "4062", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the local shell tool. Always `local_shell`.", "type": { - "$ref": "426" + "$ref": "406" }, "optional": false, "readOnly": false, @@ -46797,7 +48392,7 @@ ] }, "mcp": { - "$id": "3930", + "$id": "4063", "kind": "model", "name": "MCPTool", "namespace": "OpenAI", @@ -46807,17 +48402,17 @@ "discriminatorValue": "mcp", "decorators": [], "baseModel": { - "$ref": "3816" + "$ref": "3949" }, "properties": [ { - "$id": "3931", + "$id": "4064", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the MCP tool. Always `mcp`.", "type": { - "$ref": "423" + "$ref": "403" }, "optional": false, "readOnly": false, @@ -46832,13 +48427,13 @@ } }, { - "$id": "3932", + "$id": "4065", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "A label for this MCP server, used to identify it in tool calls.", "type": { - "$id": "3933", + "$id": "4066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46857,13 +48452,13 @@ } }, { - "$id": "3934", + "$id": "4067", "kind": "property", "name": "server_url", "serializedName": "server_url", "doc": "The URL for the MCP server.", "type": { - "$id": "3935", + "$id": "4068", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46882,16 +48477,16 @@ } }, { - "$id": "3936", + "$id": "4069", "kind": "property", "name": "headers", "serializedName": "headers", "doc": "Optional HTTP headers to send to the MCP server. Use for authentication\nor other purposes.", "type": { - "$id": "3937", + "$id": "4070", "kind": "nullable", "type": { - "$ref": "2162" + "$ref": "2302" }, "namespace": "" }, @@ -46908,24 +48503,24 @@ } }, { - "$id": "3938", + "$id": "4071", "kind": "property", "name": "allowed_tools", "serializedName": "allowed_tools", "doc": "List of allowed tool names or a filter object.", "type": { - "$id": "3939", + "$id": "4072", "kind": "nullable", "type": { - "$id": "3940", + "$id": "4073", "kind": "union", "name": "MCPToolAllowedTools", "variantTypes": [ { - "$ref": "2155" + "$ref": "2295" }, { - "$id": "3941", + "$id": "4074", "kind": "model", "name": "MCPToolAllowedTools1", "namespace": "OpenAI", @@ -46934,13 +48529,13 @@ "decorators": [], "properties": [ { - "$id": "3942", + "$id": "4075", "kind": "property", "name": "tool_names", "serializedName": "tool_names", "doc": "List of allowed tool names.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -46975,21 +48570,21 @@ } }, { - "$id": "3943", + "$id": "4076", "kind": "property", "name": "require_approval", "serializedName": "require_approval", "doc": "Specify which of the MCP server's tools require approval.", "type": { - "$id": "3944", + "$id": "4077", "kind": "nullable", "type": { - "$id": "3945", + "$id": "4078", "kind": "union", "name": "MCPToolRequireApproval", "variantTypes": [ { - "$id": "3946", + "$id": "4079", "kind": "model", "name": "MCPToolRequireApproval1", "namespace": "OpenAI", @@ -46998,13 +48593,13 @@ "decorators": [], "properties": [ { - "$id": "3947", + "$id": "4080", "kind": "property", "name": "always", "serializedName": "always", "doc": "A list of tools that always require approval.", "type": { - "$id": "3948", + "$id": "4081", "kind": "model", "name": "MCPToolRequireApprovalAlways", "namespace": "OpenAI", @@ -47013,13 +48608,13 @@ "decorators": [], "properties": [ { - "$id": "3949", + "$id": "4082", "kind": "property", "name": "tool_names", "serializedName": "tool_names", "doc": "List of tools that require approval.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -47048,13 +48643,13 @@ } }, { - "$id": "3950", + "$id": "4083", "kind": "property", "name": "never", "serializedName": "never", "doc": "A list of tools that never require approval.", "type": { - "$id": "3951", + "$id": "4084", "kind": "model", "name": "MCPToolRequireApprovalNever", "namespace": "OpenAI", @@ -47063,13 +48658,13 @@ "decorators": [], "properties": [ { - "$id": "3952", + "$id": "4085", "kind": "property", "name": "tool_names", "serializedName": "tool_names", "doc": "List of tools that do not require approval.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -47100,10 +48695,10 @@ ] }, { - "$ref": "1407" + "$ref": "1547" }, { - "$ref": "1409" + "$ref": "1549" } ], "namespace": "", @@ -47143,13 +48738,13 @@ } }, { - "$id": "3953", + "$id": "4086", "kind": "property", "name": "text", "serializedName": "text", "doc": "Configuration options for a text response from the model. Can be plain\ntext or structured JSON data. Learn more:\n- [Text inputs and outputs](/docs/guides/text)\n- [Structured Outputs](/docs/guides/structured-outputs)", "type": { - "$id": "3954", + "$id": "4087", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParamsText", "namespace": "OpenAI", @@ -47158,12 +48753,12 @@ "decorators": [], "properties": [ { - "$id": "3955", + "$id": "4088", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "3765" + "$ref": "3898" }, "optional": true, "readOnly": false, @@ -47206,13 +48801,13 @@ } }, { - "$id": "3956", + "$id": "4089", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "3957", + "$id": "4090", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47231,24 +48826,24 @@ } }, { - "$id": "3958", + "$id": "4091", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "3959", + "$id": "4092", "kind": "union", "name": "EvalResponsesRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "3684" + "$ref": "3817" }, { - "$ref": "3687" + "$ref": "3820" }, { - "$ref": "3706" + "$ref": "3839" } ], "namespace": "", @@ -47285,157 +48880,157 @@ ] }, { - "$ref": "3678" + "$ref": "3811" }, { - "$ref": "3680" + "$ref": "3813" }, { - "$ref": "3684" + "$ref": "3817" }, { - "$ref": "3737" + "$ref": "3870" }, { - "$ref": "3685" + "$ref": "3818" }, { - "$ref": "3687" + "$ref": "3820" }, { - "$ref": "3691" + "$ref": "3824" }, { - "$ref": "3706" + "$ref": "3839" }, { - "$ref": "3740" + "$ref": "3873" }, { - "$ref": "3744" + "$ref": "3877" }, { - "$ref": "3750" + "$ref": "3883" }, { - "$ref": "3755" + "$ref": "3888" }, { - "$ref": "3765" + "$ref": "3898" }, { - "$ref": "3767" + "$ref": "3900" }, { - "$ref": "3769" + "$ref": "3902" }, { - "$ref": "3771" + "$ref": "3904" }, { - "$ref": "3786" + "$ref": "3919" }, { - "$ref": "3790" + "$ref": "3923" }, { - "$ref": "3795" + "$ref": "3928" }, { - "$ref": "3800" + "$ref": "3933" }, { - "$ref": "3805" + "$ref": "3938" }, { - "$ref": "3816" + "$ref": "3949" }, { - "$ref": "3818" + "$ref": "3951" }, { - "$ref": "3831" + "$ref": "3964" }, { - "$ref": "3837" + "$ref": "3970" }, { - "$ref": "3844" + "$ref": "3977" }, { - "$ref": "3853" + "$ref": "3986" }, { - "$ref": "3855" + "$ref": "3988" }, { - "$ref": "3857" + "$ref": "3990" }, { - "$ref": "3859" + "$ref": "3992" }, { - "$ref": "3861" + "$ref": "3994" }, { - "$ref": "3863" + "$ref": "3996" }, { - "$ref": "3865" + "$ref": "3998" }, { - "$ref": "3870" + "$ref": "4003" }, { - "$ref": "3872" + "$ref": "4005" }, { - "$ref": "3874" + "$ref": "4007" }, { - "$ref": "3881" + "$ref": "4014" }, { - "$ref": "3885" + "$ref": "4018" }, { - "$ref": "3887" + "$ref": "4020" }, { - "$ref": "3902" + "$ref": "4035" }, { - "$ref": "3907" + "$ref": "4040" }, { - "$ref": "3910" + "$ref": "4043" }, { - "$ref": "3921" + "$ref": "4054" }, { - "$ref": "3928" + "$ref": "4061" }, { - "$ref": "3930" + "$ref": "4063" }, { - "$ref": "3941" + "$ref": "4074" }, { - "$ref": "3946" + "$ref": "4079" }, { - "$ref": "3948" + "$ref": "4081" }, { - "$ref": "3951" + "$ref": "4084" }, { - "$ref": "3954" + "$ref": "4087" }, { - "$id": "3960", + "$id": "4093", "kind": "model", "name": "DeleteEvalRunResponse", "namespace": "OpenAI", @@ -47444,12 +49039,12 @@ "decorators": [], "properties": [ { - "$id": "3961", + "$id": "4094", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1411" + "$ref": "1551" }, "optional": false, "readOnly": false, @@ -47464,12 +49059,12 @@ } }, { - "$id": "3962", + "$id": "4095", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3963", + "$id": "4096", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -47488,12 +49083,12 @@ } }, { - "$id": "3964", + "$id": "4097", "kind": "property", "name": "eval_run_id", "serializedName": "eval_run_id", "type": { - "$id": "3965", + "$id": "4098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47514,7 +49109,7 @@ ] }, { - "$id": "3966", + "$id": "4099", "kind": "model", "name": "EvalRunOutputItemList", "namespace": "OpenAI", @@ -47524,13 +49119,13 @@ "decorators": [], "properties": [ { - "$id": "3967", + "$id": "4100", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object. It is always set to \"list\".", "type": { - "$ref": "1413" + "$ref": "1553" }, "optional": false, "readOnly": false, @@ -47545,17 +49140,17 @@ } }, { - "$id": "3968", + "$id": "4101", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run output item objects.", "type": { - "$id": "3969", + "$id": "4102", "kind": "array", "name": "ArrayEvalRunOutputItem", "valueType": { - "$id": "3970", + "$id": "4103", "kind": "model", "name": "EvalRunOutputItem", "namespace": "OpenAI", @@ -47565,13 +49160,13 @@ "decorators": [], "properties": [ { - "$id": "3971", + "$id": "4104", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of the object. Always \"eval.run.output_item\".", "type": { - "$ref": "1415" + "$ref": "1555" }, "optional": false, "readOnly": false, @@ -47586,13 +49181,13 @@ } }, { - "$id": "3972", + "$id": "4105", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run output item.", "type": { - "$id": "3973", + "$id": "4106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47611,13 +49206,13 @@ } }, { - "$id": "3974", + "$id": "4107", "kind": "property", "name": "run_id", "serializedName": "run_id", "doc": "The identifier of the evaluation run associated with this output item.", "type": { - "$id": "3975", + "$id": "4108", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47636,13 +49231,13 @@ } }, { - "$id": "3976", + "$id": "4109", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the evaluation group.", "type": { - "$id": "3977", + "$id": "4110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47661,18 +49256,18 @@ } }, { - "$id": "3978", + "$id": "4111", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "3979", + "$id": "4112", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3980", + "$id": "4113", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47694,13 +49289,13 @@ } }, { - "$id": "3981", + "$id": "4114", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "3982", + "$id": "4115", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47719,13 +49314,13 @@ } }, { - "$id": "3983", + "$id": "4116", "kind": "property", "name": "datasource_item_id", "serializedName": "datasource_item_id", "doc": "The identifier for the data source item.", "type": { - "$id": "3984", + "$id": "4117", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -47744,13 +49339,13 @@ } }, { - "$id": "3985", + "$id": "4118", "kind": "property", "name": "datasource_item", "serializedName": "datasource_item", "doc": "Details of the input data source item.", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": false, "readOnly": false, @@ -47765,17 +49360,17 @@ } }, { - "$id": "3986", + "$id": "4119", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of results from the evaluation run.", "type": { - "$id": "3987", + "$id": "4120", "kind": "array", "name": "ArrayRecord", "valueType": { - "$ref": "3442" + "$ref": "3575" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -47793,13 +49388,13 @@ } }, { - "$id": "3988", + "$id": "4121", "kind": "property", "name": "sample", "serializedName": "sample", "doc": "A sample containing the input and output of the evaluation run.", "type": { - "$id": "3989", + "$id": "4122", "kind": "model", "name": "EvalRunOutputItemSample", "namespace": "OpenAI", @@ -47808,17 +49403,17 @@ "decorators": [], "properties": [ { - "$id": "3990", + "$id": "4123", "kind": "property", "name": "input", "serializedName": "input", "doc": "An array of input messages.", "type": { - "$id": "3991", + "$id": "4124", "kind": "array", "name": "Array21", "valueType": { - "$id": "3992", + "$id": "4125", "kind": "model", "name": "EvalRunOutputItemSampleInput", "namespace": "OpenAI", @@ -47827,13 +49422,13 @@ "decorators": [], "properties": [ { - "$id": "3993", + "$id": "4126", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message sender (e.g., system, user, developer).", "type": { - "$id": "3994", + "$id": "4127", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47852,13 +49447,13 @@ } }, { - "$id": "3995", + "$id": "4128", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "3996", + "$id": "4129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47894,17 +49489,17 @@ } }, { - "$id": "3997", + "$id": "4130", "kind": "property", "name": "output", "serializedName": "output", "doc": "An array of output messages.", "type": { - "$id": "3998", + "$id": "4131", "kind": "array", "name": "Array22", "valueType": { - "$id": "3999", + "$id": "4132", "kind": "model", "name": "EvalRunOutputItemSampleOutput", "namespace": "OpenAI", @@ -47913,13 +49508,13 @@ "decorators": [], "properties": [ { - "$id": "4000", + "$id": "4133", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4001", + "$id": "4134", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47938,13 +49533,13 @@ } }, { - "$id": "4002", + "$id": "4135", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4003", + "$id": "4136", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47980,13 +49575,13 @@ } }, { - "$id": "4004", + "$id": "4137", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason why the sample generation was finished.", "type": { - "$id": "4005", + "$id": "4138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48005,13 +49600,13 @@ } }, { - "$id": "4006", + "$id": "4139", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for generating the sample.", "type": { - "$id": "4007", + "$id": "4140", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48030,13 +49625,13 @@ } }, { - "$id": "4008", + "$id": "4141", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "Token usage details for the sample.", "type": { - "$id": "4009", + "$id": "4142", "kind": "model", "name": "EvalRunOutputItemSampleUsage", "namespace": "OpenAI", @@ -48045,13 +49640,13 @@ "decorators": [], "properties": [ { - "$id": "4010", + "$id": "4143", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4011", + "$id": "4144", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48070,13 +49665,13 @@ } }, { - "$id": "4012", + "$id": "4145", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4013", + "$id": "4146", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48095,13 +49690,13 @@ } }, { - "$id": "4014", + "$id": "4147", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4015", + "$id": "4148", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48120,13 +49715,13 @@ } }, { - "$id": "4016", + "$id": "4149", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4017", + "$id": "4150", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48159,12 +49754,12 @@ } }, { - "$id": "4018", + "$id": "4151", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "3662" + "$ref": "3795" }, "optional": false, "readOnly": false, @@ -48179,13 +49774,13 @@ } }, { - "$id": "4019", + "$id": "4152", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used.", "type": { - "$id": "4020", + "$id": "4153", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48204,13 +49799,13 @@ } }, { - "$id": "4021", + "$id": "4154", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens allowed for completion.", "type": { - "$id": "4022", + "$id": "4155", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48229,13 +49824,13 @@ } }, { - "$id": "4023", + "$id": "4156", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "The top_p value used for sampling.", "type": { - "$id": "4024", + "$id": "4157", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48254,13 +49849,13 @@ } }, { - "$id": "4025", + "$id": "4158", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for generating the sample.", "type": { - "$id": "4026", + "$id": "4159", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48310,13 +49905,13 @@ } }, { - "$id": "4027", + "$id": "4160", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run output item in the data array.", "type": { - "$id": "4028", + "$id": "4161", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48335,13 +49930,13 @@ } }, { - "$id": "4029", + "$id": "4162", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run output item in the data array.", "type": { - "$id": "4030", + "$id": "4163", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48360,13 +49955,13 @@ } }, { - "$id": "4031", + "$id": "4164", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more eval run output items available.", "type": { - "$id": "4032", + "$id": "4165", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -48387,22 +49982,22 @@ ] }, { - "$ref": "3970" + "$ref": "4103" }, { - "$ref": "3989" + "$ref": "4122" }, { - "$ref": "3992" + "$ref": "4125" }, { - "$ref": "3999" + "$ref": "4132" }, { - "$ref": "4009" + "$ref": "4142" }, { - "$id": "4033", + "$id": "4166", "kind": "model", "name": "CreateResponse", "namespace": "OpenAI", @@ -48411,13 +50006,13 @@ "decorators": [], "properties": [ { - "$id": "4034", + "$id": "4167", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -48432,13 +50027,13 @@ } }, { - "$id": "4035", + "$id": "4168", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.\nWe generally recommend altering this or `top_p` but not both.", "type": { - "$ref": "2665" + "$ref": "2805" }, "optional": true, "readOnly": false, @@ -48453,13 +50048,13 @@ } }, { - "$id": "4036", + "$id": "4169", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to sampling with temperature, called nucleus sampling,\nwhere the model considers the results of the tokens with top_p probability\nmass. So 0.1 means only the tokens comprising the top 10% probability mass\nare considered.\n\nWe generally recommend altering this or `temperature` but not both.", "type": { - "$ref": "2668" + "$ref": "2808" }, "optional": true, "readOnly": false, @@ -48474,13 +50069,13 @@ } }, { - "$id": "4037", + "$id": "4170", "kind": "property", "name": "user", "serializedName": "user", "doc": "A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices#end-user-ids).", "type": { - "$id": "4038", + "$id": "4171", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48499,12 +50094,12 @@ } }, { - "$id": "4039", + "$id": "4172", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$ref": "161" + "$ref": "153" }, "optional": true, "readOnly": false, @@ -48519,16 +50114,16 @@ } }, { - "$id": "4040", + "$id": "4173", "kind": "property", "name": "previous_response_id", "serializedName": "previous_response_id", "doc": "The unique ID of the previous response to the model. Use this to\ncreate multi-turn conversations. Learn more about\n[conversation state](/docs/guides/conversation-state).", "type": { - "$id": "4041", + "$id": "4174", "kind": "nullable", "type": { - "$id": "4042", + "$id": "4175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48549,13 +50144,13 @@ } }, { - "$id": "4043", + "$id": "4176", "kind": "property", "name": "model", "serializedName": "model", "doc": "Model ID used to generate the response, like `gpt-4o` or `o3`. OpenAI\noffers a wide range of models with different capabilities, performance\ncharacteristics, and price points. Refer to the [model guide](/docs/models)\nto browse and compare available models.", "type": { - "$ref": "492" + "$ref": "464" }, "optional": true, "readOnly": false, @@ -48570,15 +50165,15 @@ } }, { - "$id": "4044", + "$id": "4177", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$id": "4045", + "$id": "4178", "kind": "nullable", "type": { - "$id": "4046", + "$id": "4179", "kind": "model", "name": "Reasoning", "namespace": "OpenAI", @@ -48588,15 +50183,15 @@ "decorators": [], "properties": [ { - "$id": "4047", + "$id": "4180", "kind": "property", "name": "effort", "serializedName": "effort", "type": { - "$id": "4048", + "$id": "4181", "kind": "nullable", "type": { - "$ref": "57" + "$ref": "53" }, "namespace": "" }, @@ -48613,72 +50208,16 @@ } }, { - "$id": "4049", + "$id": "4182", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "A summary of the reasoning performed by the model. This can be\nuseful for debugging and understanding the model's reasoning process.\nOne of `auto`, `concise`, or `detailed`.", "type": { - "$id": "4050", + "$id": "4183", "kind": "nullable", "type": { - "$id": "4051", - "kind": "enum", - "name": "ReasoningSummary", - "crossLanguageDefinitionId": "OpenAI.Reasoning.summary.anonymous", - "valueType": { - "$id": "4052", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "4053", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "4052" - }, - "enumType": { - "$ref": "4051" - }, - "decorators": [] - }, - { - "$id": "4054", - "kind": "enumvalue", - "name": "concise", - "value": "concise", - "valueType": { - "$ref": "4052" - }, - "enumType": { - "$ref": "4051" - }, - "decorators": [] - }, - { - "$id": "4055", - "kind": "enumvalue", - "name": "detailed", - "value": "detailed", - "valueType": { - "$ref": "4052" - }, - "enumType": { - "$ref": "4051" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] + "$ref": "527" }, "namespace": "" }, @@ -48695,72 +50234,16 @@ } }, { - "$id": "4056", + "$id": "4184", "kind": "property", "name": "generate_summary", "serializedName": "generate_summary", "doc": "**Deprecated:** use `summary` instead.\n\nA summary of the reasoning performed by the model. This can be\nuseful for debugging and understanding the model's reasoning process.\nOne of `auto`, `concise`, or `detailed`.", "type": { - "$id": "4057", + "$id": "4185", "kind": "nullable", "type": { - "$id": "4058", - "kind": "enum", - "name": "ReasoningGenerateSummary", - "crossLanguageDefinitionId": "OpenAI.Reasoning.generate_summary.anonymous", - "valueType": { - "$id": "4059", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "4060", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "4059" - }, - "enumType": { - "$ref": "4058" - }, - "decorators": [] - }, - { - "$id": "4061", - "kind": "enumvalue", - "name": "concise", - "value": "concise", - "valueType": { - "$ref": "4059" - }, - "enumType": { - "$ref": "4058" - }, - "decorators": [] - }, - { - "$id": "4062", - "kind": "enumvalue", - "name": "detailed", - "value": "detailed", - "valueType": { - "$ref": "4059" - }, - "enumType": { - "$ref": "4058" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] + "$ref": "532" }, "namespace": "" }, @@ -48793,16 +50276,16 @@ } }, { - "$id": "4063", + "$id": "4186", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$id": "4064", + "$id": "4187", "kind": "nullable", "type": { - "$id": "4065", + "$id": "4188", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -48823,16 +50306,16 @@ } }, { - "$id": "4066", + "$id": "4189", "kind": "property", "name": "max_output_tokens", "serializedName": "max_output_tokens", "doc": "An upper bound for the number of tokens that can be generated for a response, including visible output tokens and [reasoning tokens](/docs/guides/reasoning).", "type": { - "$id": "4067", + "$id": "4190", "kind": "nullable", "type": { - "$id": "4068", + "$id": "4191", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48853,16 +50336,16 @@ } }, { - "$id": "4069", + "$id": "4192", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "Inserts a system (or developer) message as the first item in the model's context.\n\nWhen using along with `previous_response_id`, the instructions from a previous\nresponse will not be carried over to the next response. This makes it simple\nto swap out system (or developer) messages in new responses.", "type": { - "$id": "4070", + "$id": "4193", "kind": "nullable", "type": { - "$id": "4071", + "$id": "4194", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48883,13 +50366,13 @@ } }, { - "$id": "4072", + "$id": "4195", "kind": "property", "name": "text", "serializedName": "text", "doc": "Configuration options for a text response from the model. Can be plain\ntext or structured JSON data. Learn more:\n- [Text inputs and outputs](/docs/guides/text)\n- [Structured Outputs](/docs/guides/structured-outputs)", "type": { - "$id": "4073", + "$id": "4196", "kind": "model", "name": "CreateResponseText", "namespace": "OpenAI", @@ -48898,12 +50381,12 @@ "decorators": [], "properties": [ { - "$id": "4074", + "$id": "4197", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "3765" + "$ref": "3898" }, "optional": true, "readOnly": false, @@ -48932,13 +50415,13 @@ } }, { - "$id": "4075", + "$id": "4198", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "An array of tools the model may call while generating a response. You\ncan specify which tool to use by setting the `tool_choice` parameter.\n\nThe two categories of tools you can provide the model are:\n\n- **Built-in tools**: Tools that are provided by OpenAI that extend the\n model's capabilities, like [web search](/docs/guides/tools-web-search)\n or [file search](/docs/guides/tools-file-search). Learn more about\n [built-in tools](/docs/guides/tools).\n- **Function calls (custom tools)**: Functions that are defined by you,\n enabling the model to call your own code. Learn more about\n [function calling](/docs/guides/function-calling).", "type": { - "$ref": "3815" + "$ref": "3948" }, "optional": true, "readOnly": false, @@ -48953,21 +50436,21 @@ } }, { - "$id": "4076", + "$id": "4199", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "doc": "How the model should select which tool (or tools) to use when generating\na response. See the `tools` parameter to see how to specify which tools\nthe model can call.", "type": { - "$id": "4077", + "$id": "4200", "kind": "union", "name": "CreateResponseToolChoice", "variantTypes": [ { - "$ref": "555" + "$ref": "537" }, { - "$id": "4078", + "$id": "4201", "kind": "model", "name": "ToolChoiceObject", "namespace": "OpenAI", @@ -48975,12 +50458,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4079", + "$id": "4202", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "560" + "$ref": "542" }, "optional": false, "readOnly": false, @@ -48996,12 +50479,12 @@ }, "properties": [ { - "$ref": "4079" + "$ref": "4202" } ], "discriminatedSubtypes": { "file_search": { - "$id": "4080", + "$id": "4203", "kind": "model", "name": "ToolChoiceObjectFileSearch", "namespace": "OpenAI", @@ -49010,16 +50493,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "4078" + "$ref": "4201" }, "properties": [ { - "$id": "4081", + "$id": "4204", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "562" + "$ref": "544" }, "optional": false, "readOnly": false, @@ -49036,7 +50519,7 @@ ] }, "computer_use_preview": { - "$id": "4082", + "$id": "4205", "kind": "model", "name": "ToolChoiceObjectComputer", "namespace": "OpenAI", @@ -49045,16 +50528,16 @@ "discriminatorValue": "computer_use_preview", "decorators": [], "baseModel": { - "$ref": "4078" + "$ref": "4201" }, "properties": [ { - "$id": "4083", + "$id": "4206", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "564" + "$ref": "546" }, "optional": false, "readOnly": false, @@ -49071,7 +50554,7 @@ ] }, "web_search_preview": { - "$id": "4084", + "$id": "4207", "kind": "model", "name": "ToolChoiceObjectWebSearch", "namespace": "OpenAI", @@ -49080,16 +50563,16 @@ "discriminatorValue": "web_search_preview", "decorators": [], "baseModel": { - "$ref": "4078" + "$ref": "4201" }, "properties": [ { - "$id": "4085", + "$id": "4208", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "565" + "$ref": "547" }, "optional": false, "readOnly": false, @@ -49106,7 +50589,7 @@ ] }, "image_generation": { - "$id": "4086", + "$id": "4209", "kind": "model", "name": "ToolChoiceObjectImageGen", "namespace": "OpenAI", @@ -49115,16 +50598,16 @@ "discriminatorValue": "image_generation", "decorators": [], "baseModel": { - "$ref": "4078" + "$ref": "4201" }, "properties": [ { - "$id": "4087", + "$id": "4210", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "566" + "$ref": "548" }, "optional": false, "readOnly": false, @@ -49141,7 +50624,7 @@ ] }, "code_interpreter": { - "$id": "4088", + "$id": "4211", "kind": "model", "name": "ToolChoiceObjectCodeInterpreter", "namespace": "OpenAI", @@ -49150,16 +50633,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "4078" + "$ref": "4201" }, "properties": [ { - "$id": "4089", + "$id": "4212", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "567" + "$ref": "549" }, "optional": false, "readOnly": false, @@ -49176,7 +50659,7 @@ ] }, "mcp": { - "$id": "4090", + "$id": "4213", "kind": "model", "name": "ToolChoiceObjectMCP", "namespace": "OpenAI", @@ -49185,16 +50668,16 @@ "discriminatorValue": "mcp", "decorators": [], "baseModel": { - "$ref": "4078" + "$ref": "4201" }, "properties": [ { - "$id": "4091", + "$id": "4214", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "568" + "$ref": "550" }, "optional": false, "readOnly": false, @@ -49211,7 +50694,7 @@ ] }, "function": { - "$id": "4092", + "$id": "4215", "kind": "model", "name": "ToolChoiceObjectFunction", "namespace": "OpenAI", @@ -49221,17 +50704,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "4078" + "$ref": "4201" }, "properties": [ { - "$id": "4093", + "$id": "4216", "kind": "property", "name": "type", "serializedName": "type", "doc": "For function calling, the type is always `function`.", "type": { - "$ref": "563" + "$ref": "545" }, "optional": false, "readOnly": false, @@ -49246,13 +50729,13 @@ } }, { - "$id": "4094", + "$id": "4217", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4095", + "$id": "4218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49291,59 +50774,16 @@ } }, { - "$id": "4096", + "$id": "4219", "kind": "property", "name": "truncation", "serializedName": "truncation", "doc": "The truncation strategy to use for the model response.\n- `auto`: If the context of this response and previous ones exceeds\n the model's context window size, the model will truncate the\n response to fit the context window by dropping input items in the\n middle of the conversation.\n- `disabled` (default): If a model response will exceed the context window\n size for a model, the request will fail with a 400 error.", "type": { - "$id": "4097", + "$id": "4220", "kind": "nullable", "type": { - "$id": "4098", - "kind": "enum", - "name": "CreateResponseTruncation", - "crossLanguageDefinitionId": "OpenAI.CreateResponse.truncation.anonymous", - "valueType": { - "$id": "4099", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "4100", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "4099" - }, - "enumType": { - "$ref": "4098" - }, - "decorators": [] - }, - { - "$id": "4101", - "kind": "enumvalue", - "name": "disabled", - "value": "disabled", - "valueType": { - "$ref": "4099" - }, - "enumType": { - "$ref": "4098" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Output,Json", - "decorators": [] + "$ref": "551" }, "namespace": "" }, @@ -49360,34 +50800,34 @@ } }, { - "$id": "4102", + "$id": "4221", "kind": "property", "name": "input", "serializedName": "input", "doc": "Text, image, or file inputs to the model, used to generate a response.\n\nLearn more:\n- [Text inputs and outputs](/docs/guides/text)\n- [Image inputs](/docs/guides/images)\n- [File inputs](/docs/guides/pdf-files)\n- [Conversation state](/docs/guides/conversation-state)\n- [Function calling](/docs/guides/function-calling)", "type": { - "$id": "4103", + "$id": "4222", "kind": "union", "name": "CreateResponseInput", "variantTypes": [ { - "$id": "4104", + "$id": "4223", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4105", + "$id": "4224", "kind": "array", "name": "Array23", "valueType": { - "$id": "4106", + "$id": "4225", "kind": "union", "name": "CreateResponseInput1", "variantTypes": [ { - "$id": "4107", + "$id": "4226", "kind": "model", "name": "ImplicitUserMessage", "namespace": "OpenAI", @@ -49396,28 +50836,28 @@ "decorators": [], "properties": [ { - "$id": "4108", + "$id": "4227", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "4109", + "$id": "4228", "kind": "union", "name": "ImplicitUserMessageContent", "variantTypes": [ { - "$id": "4110", + "$id": "4229", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4111", + "$id": "4230", "kind": "array", "name": "ArrayItemContent", "valueType": { - "$id": "4112", + "$id": "4231", "kind": "model", "name": "ItemContent", "namespace": "OpenAI", @@ -49425,12 +50865,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4113", + "$id": "4232", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "569" + "$ref": "555" }, "optional": false, "readOnly": false, @@ -49446,12 +50886,12 @@ }, "properties": [ { - "$ref": "4113" + "$ref": "4232" } ], "discriminatedSubtypes": { "input_audio": { - "$id": "4114", + "$id": "4233", "kind": "model", "name": "ItemContentInputAudio", "namespace": "OpenAI", @@ -49461,17 +50901,17 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "4112" + "$ref": "4231" }, "properties": [ { - "$id": "4115", + "$id": "4234", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_audio`.", "type": { - "$ref": "572" + "$ref": "558" }, "optional": false, "readOnly": false, @@ -49486,13 +50926,13 @@ } }, { - "$id": "4116", + "$id": "4235", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data.", "type": { - "$id": "4117", + "$id": "4236", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49511,13 +50951,13 @@ } }, { - "$id": "4118", + "$id": "4237", "kind": "property", "name": "format", "serializedName": "format", "doc": "The format of the audio data. Currently supported formats are `mp3` and\n`wav`.", "type": { - "$ref": "578" + "$ref": "564" }, "optional": false, "readOnly": false, @@ -49534,7 +50974,7 @@ ] }, "output_audio": { - "$id": "4119", + "$id": "4238", "kind": "model", "name": "ItemContentOutputAudio", "namespace": "OpenAI", @@ -49544,17 +50984,17 @@ "discriminatorValue": "output_audio", "decorators": [], "baseModel": { - "$ref": "4112" + "$ref": "4231" }, "properties": [ { - "$id": "4120", + "$id": "4239", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output audio. Always `output_audio`.", "type": { - "$ref": "576" + "$ref": "562" }, "optional": false, "readOnly": false, @@ -49569,13 +51009,13 @@ } }, { - "$id": "4121", + "$id": "4240", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data from the model.", "type": { - "$id": "4122", + "$id": "4241", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49594,13 +51034,13 @@ } }, { - "$id": "4123", + "$id": "4242", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcript of the audio data from the model.", "type": { - "$id": "4124", + "$id": "4243", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49621,7 +51061,7 @@ ] }, "refusal": { - "$id": "4125", + "$id": "4244", "kind": "model", "name": "ItemContentRefusal", "namespace": "OpenAI", @@ -49631,17 +51071,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "4112" + "$ref": "4231" }, "properties": [ { - "$id": "4126", + "$id": "4245", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the refusal. Always `refusal`.", "type": { - "$ref": "577" + "$ref": "563" }, "optional": false, "readOnly": false, @@ -49656,13 +51096,13 @@ } }, { - "$id": "4127", + "$id": "4246", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal explanationfrom the model.", "type": { - "$id": "4128", + "$id": "4247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49683,7 +51123,7 @@ ] }, "input_text": { - "$id": "4129", + "$id": "4248", "kind": "model", "name": "ItemContentInputText", "namespace": "OpenAI", @@ -49693,17 +51133,17 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$ref": "4112" + "$ref": "4231" }, "properties": [ { - "$id": "4130", + "$id": "4249", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_text`.", "type": { - "$ref": "571" + "$ref": "557" }, "optional": false, "readOnly": false, @@ -49718,13 +51158,13 @@ } }, { - "$id": "4131", + "$id": "4250", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text input to the model.", "type": { - "$id": "4132", + "$id": "4251", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49745,7 +51185,7 @@ ] }, "input_image": { - "$id": "4133", + "$id": "4252", "kind": "model", "name": "ItemContentInputImage", "namespace": "OpenAI", @@ -49755,17 +51195,17 @@ "discriminatorValue": "input_image", "decorators": [], "baseModel": { - "$ref": "4112" + "$ref": "4231" }, "properties": [ { - "$id": "4134", + "$id": "4253", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_image`.", "type": { - "$ref": "573" + "$ref": "559" }, "optional": false, "readOnly": false, @@ -49780,16 +51220,16 @@ } }, { - "$id": "4135", + "$id": "4254", "kind": "property", "name": "image_url", "serializedName": "image_url", "doc": "The URL of the image to be sent to the model. A fully qualified URL or base64 encoded image in a data URL.", "type": { - "$id": "4136", + "$id": "4255", "kind": "nullable", "type": { - "$id": "4137", + "$id": "4256", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49810,16 +51250,16 @@ } }, { - "$id": "4138", + "$id": "4257", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4139", + "$id": "4258", "kind": "nullable", "type": { - "$id": "4140", + "$id": "4259", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49840,13 +51280,13 @@ } }, { - "$id": "4141", + "$id": "4260", "kind": "property", "name": "detail", "serializedName": "detail", "doc": "The detail level of the image to be sent to the model. One of `high`, `low`, or `auto`. Defaults to `auto`.", "type": { - "$ref": "582" + "$ref": "568" }, "optional": true, "readOnly": false, @@ -49863,7 +51303,7 @@ ] }, "input_file": { - "$id": "4142", + "$id": "4261", "kind": "model", "name": "ItemContentInputFile", "namespace": "OpenAI", @@ -49873,17 +51313,17 @@ "discriminatorValue": "input_file", "decorators": [], "baseModel": { - "$ref": "4112" + "$ref": "4231" }, "properties": [ { - "$id": "4143", + "$id": "4262", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_file`.", "type": { - "$ref": "574" + "$ref": "560" }, "optional": false, "readOnly": false, @@ -49898,16 +51338,16 @@ } }, { - "$id": "4144", + "$id": "4263", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4145", + "$id": "4264", "kind": "nullable", "type": { - "$id": "4146", + "$id": "4265", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49928,13 +51368,13 @@ } }, { - "$id": "4147", + "$id": "4266", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be sent to the model.", "type": { - "$id": "4148", + "$id": "4267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49953,13 +51393,13 @@ } }, { - "$id": "4149", + "$id": "4268", "kind": "property", "name": "file_data", "serializedName": "file_data", "doc": "The content of the file to be sent to the model.", "type": { - "$id": "4150", + "$id": "4269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49980,7 +51420,7 @@ ] }, "output_text": { - "$id": "4151", + "$id": "4270", "kind": "model", "name": "ItemContentOutputText", "namespace": "OpenAI", @@ -49990,17 +51430,17 @@ "discriminatorValue": "output_text", "decorators": [], "baseModel": { - "$ref": "4112" + "$ref": "4231" }, "properties": [ { - "$id": "4152", + "$id": "4271", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output text. Always `output_text`.", "type": { - "$ref": "575" + "$ref": "561" }, "optional": false, "readOnly": false, @@ -50015,13 +51455,13 @@ } }, { - "$id": "4153", + "$id": "4272", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text output from the model.", "type": { - "$id": "4154", + "$id": "4273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50040,17 +51480,17 @@ } }, { - "$id": "4155", + "$id": "4274", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "The annotations of the text output.", "type": { - "$id": "4156", + "$id": "4275", "kind": "array", "name": "ArrayAnnotation", "valueType": { - "$id": "4157", + "$id": "4276", "kind": "model", "name": "Annotation", "namespace": "OpenAI", @@ -50058,12 +51498,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4158", + "$id": "4277", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "587" + "$ref": "573" }, "optional": false, "readOnly": false, @@ -50079,12 +51519,12 @@ }, "properties": [ { - "$ref": "4158" + "$ref": "4277" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "4159", + "$id": "4278", "kind": "model", "name": "AnnotationFileCitation", "namespace": "OpenAI", @@ -50094,17 +51534,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "4157" + "$ref": "4276" }, "properties": [ { - "$id": "4160", + "$id": "4279", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file citation. Always `file_citation`.", "type": { - "$ref": "589" + "$ref": "575" }, "optional": false, "readOnly": false, @@ -50119,13 +51559,13 @@ } }, { - "$id": "4161", + "$id": "4280", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4162", + "$id": "4281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50144,13 +51584,13 @@ } }, { - "$id": "4163", + "$id": "4282", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4164", + "$id": "4283", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50171,7 +51611,7 @@ ] }, "url_citation": { - "$id": "4165", + "$id": "4284", "kind": "model", "name": "AnnotationUrlCitation", "namespace": "OpenAI", @@ -50181,17 +51621,17 @@ "discriminatorValue": "url_citation", "decorators": [], "baseModel": { - "$ref": "4157" + "$ref": "4276" }, "properties": [ { - "$id": "4166", + "$id": "4285", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$ref": "590" + "$ref": "576" }, "optional": false, "readOnly": false, @@ -50206,13 +51646,13 @@ } }, { - "$id": "4167", + "$id": "4286", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "4168", + "$id": "4287", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -50231,13 +51671,13 @@ } }, { - "$id": "4169", + "$id": "4288", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "4170", + "$id": "4289", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50256,13 +51696,13 @@ } }, { - "$id": "4171", + "$id": "4290", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "4172", + "$id": "4291", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50281,13 +51721,13 @@ } }, { - "$id": "4173", + "$id": "4292", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "4174", + "$id": "4293", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50308,7 +51748,7 @@ ] }, "file_path": { - "$id": "4175", + "$id": "4294", "kind": "model", "name": "AnnotationFilePath", "namespace": "OpenAI", @@ -50318,17 +51758,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "4157" + "$ref": "4276" }, "properties": [ { - "$id": "4176", + "$id": "4295", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file path. Always `file_path`.", "type": { - "$ref": "591" + "$ref": "577" }, "optional": false, "readOnly": false, @@ -50343,13 +51783,13 @@ } }, { - "$id": "4177", + "$id": "4296", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4178", + "$id": "4297", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50368,13 +51808,13 @@ } }, { - "$id": "4179", + "$id": "4298", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4180", + "$id": "4299", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50412,16 +51852,16 @@ } }, { - "$id": "4181", + "$id": "4300", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "4182", + "$id": "4301", "kind": "array", "name": "ArrayLogProb", "valueType": { - "$id": "4183", + "$id": "4302", "kind": "model", "name": "LogProb", "namespace": "OpenAI", @@ -50431,12 +51871,12 @@ "decorators": [], "properties": [ { - "$id": "4184", + "$id": "4303", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4185", + "$id": "4304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50455,12 +51895,12 @@ } }, { - "$id": "4186", + "$id": "4305", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4187", + "$id": "4306", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50479,12 +51919,12 @@ } }, { - "$id": "4188", + "$id": "4307", "kind": "property", "name": "bytes", "serializedName": "bytes", "type": { - "$ref": "2375" + "$ref": "2515" }, "optional": false, "readOnly": false, @@ -50499,16 +51939,16 @@ } }, { - "$id": "4189", + "$id": "4308", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "4190", + "$id": "4309", "kind": "array", "name": "ArrayTopLogProb", "valueType": { - "$id": "4191", + "$id": "4310", "kind": "model", "name": "TopLogProb", "namespace": "OpenAI", @@ -50518,12 +51958,12 @@ "decorators": [], "properties": [ { - "$id": "4192", + "$id": "4311", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4193", + "$id": "4312", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50542,12 +51982,12 @@ } }, { - "$id": "4194", + "$id": "4313", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4195", + "$id": "4314", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50566,12 +52006,12 @@ } }, { - "$id": "4196", + "$id": "4315", "kind": "property", "name": "bytes", "serializedName": "bytes", "type": { - "$ref": "2375" + "$ref": "2515" }, "optional": false, "readOnly": false, @@ -50645,7 +52085,7 @@ ] }, { - "$id": "4197", + "$id": "4316", "kind": "model", "name": "ItemParam", "namespace": "OpenAI", @@ -50654,12 +52094,12 @@ "doc": "Content item used to generate a response.", "decorators": [], "discriminatorProperty": { - "$id": "4198", + "$id": "4317", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "593" + "$ref": "579" }, "optional": false, "readOnly": false, @@ -50675,12 +52115,12 @@ }, "properties": [ { - "$ref": "4198" + "$ref": "4317" } ], "discriminatedSubtypes": { "file_search_call": { - "$id": "4199", + "$id": "4318", "kind": "model", "name": "FileSearchToolCallItemParam", "namespace": "OpenAI", @@ -50690,16 +52130,16 @@ "discriminatorValue": "file_search_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4200", + "$id": "4319", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "596" + "$ref": "582" }, "optional": false, "readOnly": false, @@ -50714,13 +52154,13 @@ } }, { - "$id": "4201", + "$id": "4320", "kind": "property", "name": "queries", "serializedName": "queries", "doc": "The queries used to search for files.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -50735,20 +52175,20 @@ } }, { - "$id": "4202", + "$id": "4321", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$id": "4203", + "$id": "4322", "kind": "nullable", "type": { - "$id": "4204", + "$id": "4323", "kind": "array", "name": "Array24", "valueType": { - "$id": "4205", + "$id": "4324", "kind": "model", "name": "FileSearchToolCallItemParamResult", "namespace": "OpenAI", @@ -50757,13 +52197,13 @@ "decorators": [], "properties": [ { - "$id": "4206", + "$id": "4325", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The unique ID of the file.", "type": { - "$id": "4207", + "$id": "4326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50782,13 +52222,13 @@ } }, { - "$id": "4208", + "$id": "4327", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text that was retrieved from the file.", "type": { - "$id": "4209", + "$id": "4328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50807,13 +52247,13 @@ } }, { - "$id": "4210", + "$id": "4329", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "4211", + "$id": "4330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50832,12 +52272,12 @@ } }, { - "$id": "4212", + "$id": "4331", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": true, "readOnly": false, @@ -50852,13 +52292,13 @@ } }, { - "$id": "4213", + "$id": "4332", "kind": "property", "name": "score", "serializedName": "score", "doc": "The relevance score of the file - a value between 0 and 1.", "type": { - "$id": "4214", + "$id": "4333", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50898,7 +52338,7 @@ ] }, "computer_call": { - "$id": "4215", + "$id": "4334", "kind": "model", "name": "ComputerToolCallItemParam", "namespace": "OpenAI", @@ -50908,16 +52348,16 @@ "discriminatorValue": "computer_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4216", + "$id": "4335", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "599" + "$ref": "585" }, "optional": false, "readOnly": false, @@ -50932,13 +52372,13 @@ } }, { - "$id": "4217", + "$id": "4336", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4218", + "$id": "4337", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50957,12 +52397,12 @@ } }, { - "$id": "4219", + "$id": "4338", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4220", + "$id": "4339", "kind": "model", "name": "ComputerAction", "namespace": "OpenAI", @@ -50970,12 +52410,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4221", + "$id": "4340", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "612" + "$ref": "598" }, "optional": false, "readOnly": false, @@ -50991,12 +52431,12 @@ }, "properties": [ { - "$ref": "4221" + "$ref": "4340" } ], "discriminatedSubtypes": { "click": { - "$id": "4222", + "$id": "4341", "kind": "model", "name": "ComputerActionClick", "namespace": "OpenAI", @@ -51006,17 +52446,17 @@ "discriminatorValue": "click", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4223", + "$id": "4342", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a click action, this property is\nalways set to `click`.", "type": { - "$ref": "615" + "$ref": "601" }, "optional": false, "readOnly": false, @@ -51031,13 +52471,13 @@ } }, { - "$id": "4224", + "$id": "4343", "kind": "property", "name": "button", "serializedName": "button", "doc": "Indicates which mouse button was pressed during the click. One of `left`, `right`, `wheel`, `back`, or `forward`.", "type": { - "$ref": "623" + "$ref": "609" }, "optional": false, "readOnly": false, @@ -51052,13 +52492,13 @@ } }, { - "$id": "4225", + "$id": "4344", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the click occurred.", "type": { - "$id": "4226", + "$id": "4345", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51077,13 +52517,13 @@ } }, { - "$id": "4227", + "$id": "4346", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the click occurred.", "type": { - "$id": "4228", + "$id": "4347", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51104,7 +52544,7 @@ ] }, "double_click": { - "$id": "4229", + "$id": "4348", "kind": "model", "name": "ComputerActionDoubleClick", "namespace": "OpenAI", @@ -51114,17 +52554,17 @@ "discriminatorValue": "double_click", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4230", + "$id": "4349", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a double click action, this property is\nalways set to `double_click`.", "type": { - "$ref": "616" + "$ref": "602" }, "optional": false, "readOnly": false, @@ -51139,13 +52579,13 @@ } }, { - "$id": "4231", + "$id": "4350", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the double click occurred.", "type": { - "$id": "4232", + "$id": "4351", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51164,13 +52604,13 @@ } }, { - "$id": "4233", + "$id": "4352", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the double click occurred.", "type": { - "$id": "4234", + "$id": "4353", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51191,7 +52631,7 @@ ] }, "drag": { - "$id": "4235", + "$id": "4354", "kind": "model", "name": "ComputerActionDrag", "namespace": "OpenAI", @@ -51201,17 +52641,17 @@ "discriminatorValue": "drag", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4236", + "$id": "4355", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a drag action, this property is\nalways set to `drag`.", "type": { - "$ref": "621" + "$ref": "607" }, "optional": false, "readOnly": false, @@ -51226,17 +52666,17 @@ } }, { - "$id": "4237", + "$id": "4356", "kind": "property", "name": "path", "serializedName": "path", "doc": "An array of coordinates representing the path of the drag action. Coordinates will appear as an array\nof objects, eg\n```\n[\n { x: 100, y: 200 },\n { x: 200, y: 300 }\n]\n```", "type": { - "$id": "4238", + "$id": "4357", "kind": "array", "name": "ArrayCoordinate", "valueType": { - "$id": "4239", + "$id": "4358", "kind": "model", "name": "Coordinate", "namespace": "OpenAI", @@ -51246,13 +52686,13 @@ "decorators": [], "properties": [ { - "$id": "4240", + "$id": "4359", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate.", "type": { - "$id": "4241", + "$id": "4360", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51271,13 +52711,13 @@ } }, { - "$id": "4242", + "$id": "4361", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate.", "type": { - "$id": "4243", + "$id": "4362", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51315,7 +52755,7 @@ ] }, "move": { - "$id": "4244", + "$id": "4363", "kind": "model", "name": "ComputerActionMove", "namespace": "OpenAI", @@ -51325,17 +52765,17 @@ "discriminatorValue": "move", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4245", + "$id": "4364", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a move action, this property is\nalways set to `move`.", "type": { - "$ref": "622" + "$ref": "608" }, "optional": false, "readOnly": false, @@ -51350,13 +52790,13 @@ } }, { - "$id": "4246", + "$id": "4365", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate to move to.", "type": { - "$id": "4247", + "$id": "4366", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51375,13 +52815,13 @@ } }, { - "$id": "4248", + "$id": "4367", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate to move to.", "type": { - "$id": "4249", + "$id": "4368", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51402,7 +52842,7 @@ ] }, "screenshot": { - "$id": "4250", + "$id": "4369", "kind": "model", "name": "ComputerActionScreenshot", "namespace": "OpenAI", @@ -51412,17 +52852,17 @@ "discriminatorValue": "screenshot", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4251", + "$id": "4370", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a screenshot action, this property is\nalways set to `screenshot`.", "type": { - "$ref": "614" + "$ref": "600" }, "optional": false, "readOnly": false, @@ -51439,7 +52879,7 @@ ] }, "scroll": { - "$id": "4252", + "$id": "4371", "kind": "model", "name": "ComputerActionScroll", "namespace": "OpenAI", @@ -51449,17 +52889,17 @@ "discriminatorValue": "scroll", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4253", + "$id": "4372", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a scroll action, this property is\nalways set to `scroll`.", "type": { - "$ref": "617" + "$ref": "603" }, "optional": false, "readOnly": false, @@ -51474,13 +52914,13 @@ } }, { - "$id": "4254", + "$id": "4373", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the scroll occurred.", "type": { - "$id": "4255", + "$id": "4374", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51499,13 +52939,13 @@ } }, { - "$id": "4256", + "$id": "4375", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the scroll occurred.", "type": { - "$id": "4257", + "$id": "4376", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51524,13 +52964,13 @@ } }, { - "$id": "4258", + "$id": "4377", "kind": "property", "name": "scroll_x", "serializedName": "scroll_x", "doc": "The horizontal scroll distance.", "type": { - "$id": "4259", + "$id": "4378", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51549,13 +52989,13 @@ } }, { - "$id": "4260", + "$id": "4379", "kind": "property", "name": "scroll_y", "serializedName": "scroll_y", "doc": "The vertical scroll distance.", "type": { - "$id": "4261", + "$id": "4380", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51576,7 +53016,7 @@ ] }, "type": { - "$id": "4262", + "$id": "4381", "kind": "model", "name": "ComputerActionTypeKeys", "namespace": "OpenAI", @@ -51586,17 +53026,17 @@ "discriminatorValue": "type", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4263", + "$id": "4382", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a type action, this property is\nalways set to `type`.", "type": { - "$ref": "618" + "$ref": "604" }, "optional": false, "readOnly": false, @@ -51611,13 +53051,13 @@ } }, { - "$id": "4264", + "$id": "4383", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text to type.", "type": { - "$id": "4265", + "$id": "4384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51638,7 +53078,7 @@ ] }, "wait": { - "$id": "4266", + "$id": "4385", "kind": "model", "name": "ComputerActionWait", "namespace": "OpenAI", @@ -51648,17 +53088,17 @@ "discriminatorValue": "wait", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4267", + "$id": "4386", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a wait action, this property is\nalways set to `wait`.", "type": { - "$ref": "619" + "$ref": "605" }, "optional": false, "readOnly": false, @@ -51675,7 +53115,7 @@ ] }, "keypress": { - "$id": "4268", + "$id": "4387", "kind": "model", "name": "ComputerActionKeyPress", "namespace": "OpenAI", @@ -51685,17 +53125,17 @@ "discriminatorValue": "keypress", "decorators": [], "baseModel": { - "$ref": "4220" + "$ref": "4339" }, "properties": [ { - "$id": "4269", + "$id": "4388", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a keypress action, this property is\nalways set to `keypress`.", "type": { - "$ref": "620" + "$ref": "606" }, "optional": false, "readOnly": false, @@ -51710,13 +53150,13 @@ } }, { - "$id": "4270", + "$id": "4389", "kind": "property", "name": "keys", "serializedName": "keys", "doc": "The combination of keys the model is requesting to be pressed. This is an\narray of strings, each representing a key.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -51747,17 +53187,17 @@ } }, { - "$id": "4271", + "$id": "4390", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$id": "4272", + "$id": "4391", "kind": "array", "name": "ArrayComputerToolCallSafetyCheck", "valueType": { - "$id": "4273", + "$id": "4392", "kind": "model", "name": "ComputerToolCallSafetyCheck", "namespace": "OpenAI", @@ -51767,13 +53207,13 @@ "decorators": [], "properties": [ { - "$id": "4274", + "$id": "4393", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the pending safety check.", "type": { - "$id": "4275", + "$id": "4394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51792,13 +53232,13 @@ } }, { - "$id": "4276", + "$id": "4395", "kind": "property", "name": "code", "serializedName": "code", "doc": "The type of the pending safety check.", "type": { - "$id": "4277", + "$id": "4396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51817,13 +53257,13 @@ } }, { - "$id": "4278", + "$id": "4397", "kind": "property", "name": "message", "serializedName": "message", "doc": "Details about the pending safety check.", "type": { - "$id": "4279", + "$id": "4398", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51861,7 +53301,7 @@ ] }, "computer_call_output": { - "$id": "4280", + "$id": "4399", "kind": "model", "name": "ComputerToolCallOutputItemParam", "namespace": "OpenAI", @@ -51871,16 +53311,16 @@ "discriminatorValue": "computer_call_output", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4281", + "$id": "4400", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "600" + "$ref": "586" }, "optional": false, "readOnly": false, @@ -51895,13 +53335,13 @@ } }, { - "$id": "4282", + "$id": "4401", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4283", + "$id": "4402", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51920,13 +53360,13 @@ } }, { - "$id": "4284", + "$id": "4403", "kind": "property", "name": "acknowledged_safety_checks", "serializedName": "acknowledged_safety_checks", "doc": "The safety checks reported by the API that have been acknowledged by the\ndeveloper.", "type": { - "$ref": "4272" + "$ref": "4391" }, "optional": true, "readOnly": false, @@ -51941,12 +53381,12 @@ } }, { - "$id": "4285", + "$id": "4404", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "4286", + "$id": "4405", "kind": "model", "name": "ComputerToolCallOutputItemOutput", "namespace": "OpenAI", @@ -51954,12 +53394,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4287", + "$id": "4406", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "630" + "$ref": "616" }, "optional": false, "readOnly": false, @@ -51975,12 +53415,12 @@ }, "properties": [ { - "$ref": "4287" + "$ref": "4406" } ], "discriminatedSubtypes": { "computer_screenshot": { - "$id": "4288", + "$id": "4407", "kind": "model", "name": "ComputerToolCallOutputItemOutputComputerScreenshot", "namespace": "OpenAI", @@ -51989,16 +53429,16 @@ "discriminatorValue": "computer_screenshot", "decorators": [], "baseModel": { - "$ref": "4286" + "$ref": "4405" }, "properties": [ { - "$id": "4289", + "$id": "4408", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "632" + "$ref": "618" }, "optional": false, "readOnly": false, @@ -52013,12 +53453,12 @@ } }, { - "$id": "4290", + "$id": "4409", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "4291", + "$id": "4410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52037,12 +53477,12 @@ } }, { - "$id": "4292", + "$id": "4411", "kind": "property", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "4293", + "$id": "4412", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52079,7 +53519,7 @@ ] }, "web_search_call": { - "$id": "4294", + "$id": "4413", "kind": "model", "name": "WebSearchToolCallItemParam", "namespace": "OpenAI", @@ -52089,16 +53529,16 @@ "discriminatorValue": "web_search_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4295", + "$id": "4414", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "601" + "$ref": "587" }, "optional": false, "readOnly": false, @@ -52115,7 +53555,7 @@ ] }, "function_call": { - "$id": "4296", + "$id": "4415", "kind": "model", "name": "FunctionToolCallItemParam", "namespace": "OpenAI", @@ -52125,16 +53565,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4297", + "$id": "4416", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "597" + "$ref": "583" }, "optional": false, "readOnly": false, @@ -52149,13 +53589,13 @@ } }, { - "$id": "4298", + "$id": "4417", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4299", + "$id": "4418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52174,13 +53614,13 @@ } }, { - "$id": "4300", + "$id": "4419", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "4301", + "$id": "4420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52199,13 +53639,13 @@ } }, { - "$id": "4302", + "$id": "4421", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "4303", + "$id": "4422", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52226,7 +53666,7 @@ ] }, "function_call_output": { - "$id": "4304", + "$id": "4423", "kind": "model", "name": "FunctionToolCallOutputItemParam", "namespace": "OpenAI", @@ -52236,16 +53676,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4305", + "$id": "4424", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "598" + "$ref": "584" }, "optional": false, "readOnly": false, @@ -52260,13 +53700,13 @@ } }, { - "$id": "4306", + "$id": "4425", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4307", + "$id": "4426", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52285,13 +53725,13 @@ } }, { - "$id": "4308", + "$id": "4427", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4309", + "$id": "4428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52312,7 +53752,7 @@ ] }, "reasoning": { - "$id": "4310", + "$id": "4429", "kind": "model", "name": "ReasoningItemParam", "namespace": "OpenAI", @@ -52322,16 +53762,16 @@ "discriminatorValue": "reasoning", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4311", + "$id": "4430", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "602" + "$ref": "588" }, "optional": false, "readOnly": false, @@ -52346,16 +53786,16 @@ } }, { - "$id": "4312", + "$id": "4431", "kind": "property", "name": "encrypted_content", "serializedName": "encrypted_content", "doc": "The encrypted content of the reasoning item - populated when a response is\ngenerated with `reasoning.encrypted_content` in the `include` parameter.", "type": { - "$id": "4313", + "$id": "4432", "kind": "nullable", "type": { - "$id": "4314", + "$id": "4433", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52376,17 +53816,17 @@ } }, { - "$id": "4315", + "$id": "4434", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$id": "4316", + "$id": "4435", "kind": "array", "name": "ArrayReasoningItemSummaryPart", "valueType": { - "$id": "4317", + "$id": "4436", "kind": "model", "name": "ReasoningItemSummaryPart", "namespace": "OpenAI", @@ -52394,12 +53834,12 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "4318", + "$id": "4437", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "633" + "$ref": "619" }, "optional": false, "readOnly": false, @@ -52415,12 +53855,12 @@ }, "properties": [ { - "$ref": "4318" + "$ref": "4437" } ], "discriminatedSubtypes": { "summary_text": { - "$id": "4319", + "$id": "4438", "kind": "model", "name": "ReasoningItemSummaryTextPart", "namespace": "OpenAI", @@ -52429,16 +53869,16 @@ "discriminatorValue": "summary_text", "decorators": [], "baseModel": { - "$ref": "4317" + "$ref": "4436" }, "properties": [ { - "$id": "4320", + "$id": "4439", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "635" + "$ref": "621" }, "optional": false, "readOnly": false, @@ -52453,12 +53893,12 @@ } }, { - "$id": "4321", + "$id": "4440", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "4322", + "$id": "4441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52498,7 +53938,7 @@ ] }, "item_reference": { - "$id": "4323", + "$id": "4442", "kind": "model", "name": "ItemReferenceItemParam", "namespace": "OpenAI", @@ -52508,16 +53948,16 @@ "discriminatorValue": "item_reference", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4324", + "$id": "4443", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "603" + "$ref": "589" }, "optional": false, "readOnly": false, @@ -52532,13 +53972,13 @@ } }, { - "$id": "4325", + "$id": "4444", "kind": "property", "name": "id", "serializedName": "id", "doc": "The service-originated ID of the previously generated response item being referenced.", "type": { - "$id": "4326", + "$id": "4445", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52559,7 +53999,7 @@ ] }, "image_generation_call": { - "$id": "4327", + "$id": "4446", "kind": "model", "name": "ImageGenToolCallItemParam", "namespace": "OpenAI", @@ -52569,16 +54009,16 @@ "discriminatorValue": "image_generation_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4328", + "$id": "4447", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "604" + "$ref": "590" }, "optional": false, "readOnly": false, @@ -52593,16 +54033,16 @@ } }, { - "$id": "4329", + "$id": "4448", "kind": "property", "name": "result", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$id": "4330", + "$id": "4449", "kind": "nullable", "type": { - "$id": "4331", + "$id": "4450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52625,7 +54065,7 @@ ] }, "code_interpreter_call": { - "$id": "4332", + "$id": "4451", "kind": "model", "name": "CodeInterpreterToolCallItemParam", "namespace": "OpenAI", @@ -52635,16 +54075,16 @@ "discriminatorValue": "code_interpreter_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4333", + "$id": "4452", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "605" + "$ref": "591" }, "optional": false, "readOnly": false, @@ -52659,13 +54099,13 @@ } }, { - "$id": "4334", + "$id": "4453", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "4335", + "$id": "4454", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52684,13 +54124,13 @@ } }, { - "$id": "4336", + "$id": "4455", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "4337", + "$id": "4456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52709,22 +54149,22 @@ } }, { - "$id": "4338", + "$id": "4457", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the code interpreter tool call.", "type": { - "$id": "4339", + "$id": "4458", "kind": "array", "name": "ArrayCodeInterpreterToolOutput", "valueType": { - "$id": "4340", + "$id": "4459", "kind": "union", "name": "CodeInterpreterToolOutput", "variantTypes": [ { - "$id": "4341", + "$id": "4460", "kind": "model", "name": "CodeInterpreterTextOutput", "namespace": "OpenAI", @@ -52734,13 +54174,13 @@ "decorators": [], "properties": [ { - "$id": "4342", + "$id": "4461", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the code interpreter text output. Always `logs`.", "type": { - "$ref": "1417" + "$ref": "1557" }, "optional": false, "readOnly": false, @@ -52755,13 +54195,13 @@ } }, { - "$id": "4343", + "$id": "4462", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The logs of the code interpreter tool call.", "type": { - "$id": "4344", + "$id": "4463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52782,7 +54222,7 @@ ] }, { - "$id": "4345", + "$id": "4464", "kind": "model", "name": "CodeInterpreterFileOutput", "namespace": "OpenAI", @@ -52792,13 +54232,13 @@ "decorators": [], "properties": [ { - "$id": "4346", + "$id": "4465", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the code interpreter file output. Always `files`.", "type": { - "$ref": "1419" + "$ref": "1559" }, "optional": false, "readOnly": false, @@ -52813,16 +54253,16 @@ } }, { - "$id": "4347", + "$id": "4466", "kind": "property", "name": "files", "serializedName": "files", "type": { - "$id": "4348", + "$id": "4467", "kind": "array", "name": "Array25", "valueType": { - "$id": "4349", + "$id": "4468", "kind": "model", "name": "CodeInterpreterFileOutputFile", "namespace": "OpenAI", @@ -52831,13 +54271,13 @@ "decorators": [], "properties": [ { - "$id": "4350", + "$id": "4469", "kind": "property", "name": "mime_type", "serializedName": "mime_type", "doc": "The MIME type of the file.", "type": { - "$id": "4351", + "$id": "4470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52856,13 +54296,13 @@ } }, { - "$id": "4352", + "$id": "4471", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4353", + "$id": "4472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52921,7 +54361,7 @@ ] }, "local_shell_call": { - "$id": "4354", + "$id": "4473", "kind": "model", "name": "LocalShellToolCallItemParam", "namespace": "OpenAI", @@ -52931,16 +54371,16 @@ "discriminatorValue": "local_shell_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4355", + "$id": "4474", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "606" + "$ref": "592" }, "optional": false, "readOnly": false, @@ -52955,13 +54395,13 @@ } }, { - "$id": "4356", + "$id": "4475", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "4357", + "$id": "4476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52980,12 +54420,12 @@ } }, { - "$id": "4358", + "$id": "4477", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4359", + "$id": "4478", "kind": "model", "name": "LocalShellExecAction", "namespace": "OpenAI", @@ -52995,13 +54435,13 @@ "decorators": [], "properties": [ { - "$id": "4360", + "$id": "4479", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the local shell action. Always `exec`.", "type": { - "$ref": "1421" + "$ref": "1561" }, "optional": false, "readOnly": false, @@ -53016,13 +54456,13 @@ } }, { - "$id": "4361", + "$id": "4480", "kind": "property", "name": "command", "serializedName": "command", "doc": "The command to run.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -53037,16 +54477,16 @@ } }, { - "$id": "4362", + "$id": "4481", "kind": "property", "name": "timeout_ms", "serializedName": "timeout_ms", "doc": "Optional timeout in milliseconds for the command.", "type": { - "$id": "4363", + "$id": "4482", "kind": "nullable", "type": { - "$id": "4364", + "$id": "4483", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53067,16 +54507,16 @@ } }, { - "$id": "4365", + "$id": "4484", "kind": "property", "name": "working_directory", "serializedName": "working_directory", "doc": "Optional working directory to run the command in.", "type": { - "$id": "4366", + "$id": "4485", "kind": "nullable", "type": { - "$id": "4367", + "$id": "4486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53097,13 +54537,13 @@ } }, { - "$id": "4368", + "$id": "4487", "kind": "property", "name": "env", "serializedName": "env", "doc": "Environment variables to set for the command.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": false, "readOnly": false, @@ -53118,16 +54558,16 @@ } }, { - "$id": "4369", + "$id": "4488", "kind": "property", "name": "user", "serializedName": "user", "doc": "Optional user to run the command as.", "type": { - "$id": "4370", + "$id": "4489", "kind": "nullable", "type": { - "$id": "4371", + "$id": "4490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53164,7 +54604,7 @@ ] }, "local_shell_call_output": { - "$id": "4372", + "$id": "4491", "kind": "model", "name": "LocalShellToolCallOutputItemParam", "namespace": "OpenAI", @@ -53174,16 +54614,16 @@ "discriminatorValue": "local_shell_call_output", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4373", + "$id": "4492", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "607" + "$ref": "593" }, "optional": false, "readOnly": false, @@ -53198,13 +54638,13 @@ } }, { - "$id": "4374", + "$id": "4493", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "4375", + "$id": "4494", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53225,7 +54665,7 @@ ] }, "mcp_list_tools": { - "$id": "4376", + "$id": "4495", "kind": "model", "name": "MCPListToolsItemParam", "namespace": "OpenAI", @@ -53235,16 +54675,16 @@ "discriminatorValue": "mcp_list_tools", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4377", + "$id": "4496", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "608" + "$ref": "594" }, "optional": false, "readOnly": false, @@ -53259,13 +54699,13 @@ } }, { - "$id": "4378", + "$id": "4497", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "4379", + "$id": "4498", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53284,17 +54724,17 @@ } }, { - "$id": "4380", + "$id": "4499", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$id": "4381", + "$id": "4500", "kind": "array", "name": "ArrayMcpListToolsTool", "valueType": { - "$id": "4382", + "$id": "4501", "kind": "model", "name": "MCPListToolsTool", "namespace": "OpenAI", @@ -53304,13 +54744,13 @@ "decorators": [], "properties": [ { - "$id": "4383", + "$id": "4502", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool.", "type": { - "$id": "4384", + "$id": "4503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53329,16 +54769,16 @@ } }, { - "$id": "4385", + "$id": "4504", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the tool.", "type": { - "$id": "4386", + "$id": "4505", "kind": "nullable", "type": { - "$id": "4387", + "$id": "4506", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53359,13 +54799,13 @@ } }, { - "$id": "4388", + "$id": "4507", "kind": "property", "name": "input_schema", "serializedName": "input_schema", "doc": "The JSON schema describing the tool's input.", "type": { - "$id": "4389", + "$id": "4508", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -53384,16 +54824,16 @@ } }, { - "$id": "4390", + "$id": "4509", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Additional annotations about the tool.", "type": { - "$id": "4391", + "$id": "4510", "kind": "nullable", "type": { - "$id": "4392", + "$id": "4511", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -53431,16 +54871,16 @@ } }, { - "$id": "4393", + "$id": "4512", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "4394", + "$id": "4513", "kind": "nullable", "type": { - "$id": "4395", + "$id": "4514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53463,7 +54903,7 @@ ] }, "mcp_approval_request": { - "$id": "4396", + "$id": "4515", "kind": "model", "name": "MCPApprovalRequestItemParam", "namespace": "OpenAI", @@ -53473,16 +54913,16 @@ "discriminatorValue": "mcp_approval_request", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4397", + "$id": "4516", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "609" + "$ref": "595" }, "optional": false, "readOnly": false, @@ -53497,13 +54937,13 @@ } }, { - "$id": "4398", + "$id": "4517", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "4399", + "$id": "4518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53522,13 +54962,13 @@ } }, { - "$id": "4400", + "$id": "4519", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "4401", + "$id": "4520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53547,13 +54987,13 @@ } }, { - "$id": "4402", + "$id": "4521", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "4403", + "$id": "4522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53574,7 +55014,7 @@ ] }, "mcp_approval_response": { - "$id": "4404", + "$id": "4523", "kind": "model", "name": "MCPApprovalResponseItemParam", "namespace": "OpenAI", @@ -53584,16 +55024,16 @@ "discriminatorValue": "mcp_approval_response", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4405", + "$id": "4524", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "610" + "$ref": "596" }, "optional": false, "readOnly": false, @@ -53608,13 +55048,13 @@ } }, { - "$id": "4406", + "$id": "4525", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "4407", + "$id": "4526", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53633,13 +55073,13 @@ } }, { - "$id": "4408", + "$id": "4527", "kind": "property", "name": "approve", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "4409", + "$id": "4528", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -53658,16 +55098,16 @@ } }, { - "$id": "4410", + "$id": "4529", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$id": "4411", + "$id": "4530", "kind": "nullable", "type": { - "$id": "4412", + "$id": "4531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53690,7 +55130,7 @@ ] }, "mcp_call": { - "$id": "4413", + "$id": "4532", "kind": "model", "name": "MCPCallItemParam", "namespace": "OpenAI", @@ -53700,16 +55140,16 @@ "discriminatorValue": "mcp_call", "decorators": [], "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4414", + "$id": "4533", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "611" + "$ref": "597" }, "optional": false, "readOnly": false, @@ -53724,13 +55164,13 @@ } }, { - "$id": "4415", + "$id": "4534", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "4416", + "$id": "4535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53749,13 +55189,13 @@ } }, { - "$id": "4417", + "$id": "4536", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "4418", + "$id": "4537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53774,13 +55214,13 @@ } }, { - "$id": "4419", + "$id": "4538", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "4420", + "$id": "4539", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53799,16 +55239,16 @@ } }, { - "$id": "4421", + "$id": "4540", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$id": "4422", + "$id": "4541", "kind": "nullable", "type": { - "$id": "4423", + "$id": "4542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53829,16 +55269,16 @@ } }, { - "$id": "4424", + "$id": "4543", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "4425", + "$id": "4544", "kind": "nullable", "type": { - "$id": "4426", + "$id": "4545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53861,7 +55301,7 @@ ] }, "message": { - "$id": "4427", + "$id": "4546", "kind": "model", "name": "ResponsesMessageItemParam", "namespace": "OpenAI", @@ -53871,13 +55311,13 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "4428", + "$id": "4547", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role associated with the message.", "type": { - "$ref": "636" + "$ref": "622" }, "optional": false, "readOnly": false, @@ -53892,17 +55332,17 @@ } }, "baseModel": { - "$ref": "4197" + "$ref": "4316" }, "properties": [ { - "$id": "4429", + "$id": "4548", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "595" + "$ref": "581" }, "optional": false, "readOnly": false, @@ -53917,12 +55357,12 @@ } }, { - "$ref": "4428" + "$ref": "4547" } ], "discriminatedSubtypes": { "user": { - "$id": "4430", + "$id": "4549", "kind": "model", "name": "ResponsesUserMessageItemParam", "namespace": "OpenAI", @@ -53932,17 +55372,17 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "4427" + "$ref": "4546" }, "properties": [ { - "$id": "4431", + "$id": "4550", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "640" + "$ref": "626" }, "optional": false, "readOnly": false, @@ -53957,13 +55397,13 @@ } }, { - "$id": "4432", + "$id": "4551", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -53980,7 +55420,7 @@ ] }, "system": { - "$id": "4433", + "$id": "4552", "kind": "model", "name": "ResponsesSystemMessageItemParam", "namespace": "OpenAI", @@ -53990,17 +55430,17 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "4427" + "$ref": "4546" }, "properties": [ { - "$id": "4434", + "$id": "4553", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "638" + "$ref": "624" }, "optional": false, "readOnly": false, @@ -54015,13 +55455,13 @@ } }, { - "$id": "4435", + "$id": "4554", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -54038,7 +55478,7 @@ ] }, "developer": { - "$id": "4436", + "$id": "4555", "kind": "model", "name": "ResponsesDeveloperMessageItemParam", "namespace": "OpenAI", @@ -54048,17 +55488,17 @@ "discriminatorValue": "developer", "decorators": [], "baseModel": { - "$ref": "4427" + "$ref": "4546" }, "properties": [ { - "$id": "4437", + "$id": "4556", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "639" + "$ref": "625" }, "optional": false, "readOnly": false, @@ -54073,13 +55513,13 @@ } }, { - "$id": "4438", + "$id": "4557", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -54096,7 +55536,7 @@ ] }, "assistant": { - "$id": "4439", + "$id": "4558", "kind": "model", "name": "ResponsesAssistantMessageItemParam", "namespace": "OpenAI", @@ -54106,17 +55546,17 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "4427" + "$ref": "4546" }, "properties": [ { - "$id": "4440", + "$id": "4559", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "641" + "$ref": "627" }, "optional": false, "readOnly": false, @@ -54131,13 +55571,13 @@ } }, { - "$id": "4441", + "$id": "4560", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -54181,20 +55621,20 @@ } }, { - "$id": "4442", + "$id": "4561", "kind": "property", "name": "include", "serializedName": "include", "doc": "Specify additional output data to include in the model response. Currently\nsupported values are:\n- `file_search_call.results`: Include the search results of\n the file search tool call.\n- `message.input_image.image_url`: Include image urls from the input message.\n- `computer_call_output.output.image_url`: Include image urls from the computer call output.\n- `reasoning.encrypted_content`: Includes an encrypted version of reasoning\n tokens in reasoning item outputs. This enables reasoning items to be used in\n multi-turn conversations when using the Responses API statelessly (like\n when the `store` parameter is set to `false`, or when an organization is\n enrolled in the zero data retention program).\n- `code_interpreter_call.outputs`: Includes the outputs of python code execution\n in code interpreter tool call items.", "type": { - "$id": "4443", + "$id": "4562", "kind": "nullable", "type": { - "$id": "4444", + "$id": "4563", "kind": "array", "name": "ArrayIncludable", "valueType": { - "$ref": "642" + "$ref": "628" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -54214,16 +55654,16 @@ } }, { - "$id": "4445", + "$id": "4564", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "4446", + "$id": "4565", "kind": "nullable", "type": { - "$id": "4447", + "$id": "4566", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -54244,16 +55684,16 @@ } }, { - "$id": "4448", + "$id": "4567", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether to store the generated model response for later retrieval via\nAPI.", "type": { - "$id": "4449", + "$id": "4568", "kind": "nullable", "type": { - "$id": "4450", + "$id": "4569", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -54274,16 +55714,16 @@ } }, { - "$id": "4451", + "$id": "4570", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If set to true, the model response data will be streamed to the client\nas it is generated using [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format).\nSee the [Streaming section below](/docs/api-reference/responses-streaming)\nfor more information.", "type": { - "$id": "4452", + "$id": "4571", "kind": "nullable", "type": { - "$id": "4453", + "$id": "4572", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -54306,214 +55746,214 @@ ] }, { - "$ref": "4046" + "$ref": "4179" }, { - "$ref": "4073" + "$ref": "4196" }, { - "$ref": "4078" + "$ref": "4201" }, { - "$ref": "4080" + "$ref": "4203" }, { - "$ref": "4082" + "$ref": "4205" }, { - "$ref": "4084" + "$ref": "4207" }, { - "$ref": "4086" + "$ref": "4209" }, { - "$ref": "4088" + "$ref": "4211" }, { - "$ref": "4090" + "$ref": "4213" }, { - "$ref": "4092" + "$ref": "4215" }, { - "$ref": "4107" + "$ref": "4226" }, { - "$ref": "4112" + "$ref": "4231" }, { - "$ref": "4114" + "$ref": "4233" }, { - "$ref": "4119" + "$ref": "4238" }, { - "$ref": "4125" + "$ref": "4244" }, { - "$ref": "4129" + "$ref": "4248" }, { - "$ref": "4133" + "$ref": "4252" }, { - "$ref": "4142" + "$ref": "4261" }, { - "$ref": "4151" + "$ref": "4270" }, { - "$ref": "4157" + "$ref": "4276" }, { - "$ref": "4159" + "$ref": "4278" }, { - "$ref": "4165" + "$ref": "4284" }, { - "$ref": "4175" + "$ref": "4294" }, { - "$ref": "4183" + "$ref": "4302" }, { - "$ref": "4191" + "$ref": "4310" }, { - "$ref": "4197" + "$ref": "4316" }, { - "$ref": "4199" + "$ref": "4318" }, { - "$ref": "4205" + "$ref": "4324" }, { - "$ref": "4215" + "$ref": "4334" }, { - "$ref": "4220" + "$ref": "4339" }, { - "$ref": "4222" + "$ref": "4341" }, { - "$ref": "4229" + "$ref": "4348" }, { - "$ref": "4235" + "$ref": "4354" }, { - "$ref": "4239" + "$ref": "4358" }, { - "$ref": "4244" + "$ref": "4363" }, { - "$ref": "4250" + "$ref": "4369" }, { - "$ref": "4252" + "$ref": "4371" }, { - "$ref": "4262" + "$ref": "4381" }, { - "$ref": "4266" + "$ref": "4385" }, { - "$ref": "4268" + "$ref": "4387" }, { - "$ref": "4273" + "$ref": "4392" }, { - "$ref": "4280" + "$ref": "4399" }, { - "$ref": "4286" + "$ref": "4405" }, { - "$ref": "4288" + "$ref": "4407" }, { - "$ref": "4294" + "$ref": "4413" }, { - "$ref": "4296" + "$ref": "4415" }, { - "$ref": "4304" + "$ref": "4423" }, { - "$ref": "4310" + "$ref": "4429" }, { - "$ref": "4317" + "$ref": "4436" }, { - "$ref": "4319" + "$ref": "4438" }, { - "$ref": "4323" + "$ref": "4442" }, { - "$ref": "4327" + "$ref": "4446" }, { - "$ref": "4332" + "$ref": "4451" }, { - "$ref": "4341" + "$ref": "4460" }, { - "$ref": "4345" + "$ref": "4464" }, { - "$ref": "4349" + "$ref": "4468" }, { - "$ref": "4354" + "$ref": "4473" }, { - "$ref": "4359" + "$ref": "4478" }, { - "$ref": "4372" + "$ref": "4491" }, { - "$ref": "4376" + "$ref": "4495" }, { - "$ref": "4382" + "$ref": "4501" }, { - "$ref": "4396" + "$ref": "4515" }, { - "$ref": "4404" + "$ref": "4523" }, { - "$ref": "4413" + "$ref": "4532" }, { - "$ref": "4427" + "$ref": "4546" }, { - "$ref": "4430" + "$ref": "4549" }, { - "$ref": "4433" + "$ref": "4552" }, { - "$ref": "4436" + "$ref": "4555" }, { - "$ref": "4439" + "$ref": "4558" }, { - "$id": "4454", + "$id": "4573", "kind": "model", "name": "Response", "namespace": "OpenAI", @@ -54522,13 +55962,13 @@ "decorators": [], "properties": [ { - "$id": "4455", + "$id": "4574", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -54543,16 +55983,16 @@ } }, { - "$id": "4456", + "$id": "4575", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.\nWe generally recommend altering this or `top_p` but not both.", "type": { - "$id": "4457", + "$id": "4576", "kind": "nullable", "type": { - "$id": "4458", + "$id": "4577", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -54573,16 +56013,16 @@ } }, { - "$id": "4459", + "$id": "4578", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to sampling with temperature, called nucleus sampling,\nwhere the model considers the results of the tokens with top_p probability\nmass. So 0.1 means only the tokens comprising the top 10% probability mass\nare considered.\n\nWe generally recommend altering this or `temperature` but not both.", "type": { - "$id": "4460", + "$id": "4579", "kind": "nullable", "type": { - "$id": "4461", + "$id": "4580", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -54603,16 +56043,16 @@ } }, { - "$id": "4462", + "$id": "4581", "kind": "property", "name": "user", "serializedName": "user", "doc": "A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices#end-user-ids).", "type": { - "$id": "4463", + "$id": "4582", "kind": "nullable", "type": { - "$id": "4464", + "$id": "4583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54633,12 +56073,12 @@ } }, { - "$id": "4465", + "$id": "4584", "kind": "property", "name": "service_tier", "serializedName": "service_tier", "type": { - "$ref": "161" + "$ref": "153" }, "optional": true, "readOnly": false, @@ -54653,13 +56093,13 @@ } }, { - "$id": "4466", + "$id": "4585", "kind": "property", "name": "previous_response_id", "serializedName": "previous_response_id", "doc": "The unique ID of the previous response to the model. Use this to\ncreate multi-turn conversations. Learn more about\n[conversation state](/docs/guides/conversation-state).", "type": { - "$ref": "4041" + "$ref": "4174" }, "optional": true, "readOnly": false, @@ -54674,13 +56114,13 @@ } }, { - "$id": "4467", + "$id": "4586", "kind": "property", "name": "model", "serializedName": "model", "doc": "Model ID used to generate the response, like `gpt-4o` or `o3`. OpenAI\noffers a wide range of models with different capabilities, performance\ncharacteristics, and price points. Refer to the [model guide](/docs/models)\nto browse and compare available models.", "type": { - "$ref": "492" + "$ref": "464" }, "optional": true, "readOnly": false, @@ -54695,12 +56135,12 @@ } }, { - "$id": "4468", + "$id": "4587", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$ref": "4045" + "$ref": "4178" }, "optional": true, "readOnly": false, @@ -54715,13 +56155,13 @@ } }, { - "$id": "4469", + "$id": "4588", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$ref": "4064" + "$ref": "4187" }, "optional": true, "readOnly": false, @@ -54736,13 +56176,13 @@ } }, { - "$id": "4470", + "$id": "4589", "kind": "property", "name": "max_output_tokens", "serializedName": "max_output_tokens", "doc": "An upper bound for the number of tokens that can be generated for a response, including visible output tokens and [reasoning tokens](/docs/guides/reasoning).", "type": { - "$ref": "4067" + "$ref": "4190" }, "optional": true, "readOnly": false, @@ -54757,13 +56197,13 @@ } }, { - "$id": "4471", + "$id": "4590", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "Inserts a system (or developer) message as the first item in the model's context.\n\nWhen using along with `previous_response_id`, the instructions from a previous\nresponse will not be carried over to the next response. This makes it simple\nto swap out system (or developer) messages in new responses.", "type": { - "$ref": "4070" + "$ref": "4193" }, "optional": true, "readOnly": false, @@ -54778,13 +56218,13 @@ } }, { - "$id": "4472", + "$id": "4591", "kind": "property", "name": "text", "serializedName": "text", "doc": "Configuration options for a text response from the model. Can be plain\ntext or structured JSON data. Learn more:\n- [Text inputs and outputs](/docs/guides/text)\n- [Structured Outputs](/docs/guides/structured-outputs)", "type": { - "$ref": "4073" + "$ref": "4196" }, "optional": true, "readOnly": false, @@ -54799,13 +56239,13 @@ } }, { - "$id": "4473", + "$id": "4592", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "An array of tools the model may call while generating a response. You\ncan specify which tool to use by setting the `tool_choice` parameter.\n\nThe two categories of tools you can provide the model are:\n\n- **Built-in tools**: Tools that are provided by OpenAI that extend the\n model's capabilities, like [web search](/docs/guides/tools-web-search)\n or [file search](/docs/guides/tools-file-search). Learn more about\n [built-in tools](/docs/guides/tools).\n- **Function calls (custom tools)**: Functions that are defined by you,\n enabling the model to call your own code. Learn more about\n [function calling](/docs/guides/function-calling).", "type": { - "$ref": "3815" + "$ref": "3948" }, "optional": true, "readOnly": false, @@ -54820,13 +56260,13 @@ } }, { - "$id": "4474", + "$id": "4593", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "doc": "How the model should select which tool (or tools) to use when generating\na response. See the `tools` parameter to see how to specify which tools\nthe model can call.", "type": { - "$ref": "4077" + "$ref": "4200" }, "optional": true, "readOnly": false, @@ -54841,13 +56281,13 @@ } }, { - "$id": "4475", + "$id": "4594", "kind": "property", "name": "truncation", "serializedName": "truncation", "doc": "The truncation strategy to use for the model response.\n- `auto`: If the context of this response and previous ones exceeds\n the model's context window size, the model will truncate the\n response to fit the context window by dropping input items in the\n middle of the conversation.\n- `disabled` (default): If a model response will exceed the context window\n size for a model, the request will fail with a 400 error.", "type": { - "$ref": "4097" + "$ref": "4220" }, "optional": true, "readOnly": false, @@ -54862,13 +56302,13 @@ } }, { - "$id": "4476", + "$id": "4595", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this Response.", "type": { - "$id": "4477", + "$id": "4596", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54887,13 +56327,13 @@ } }, { - "$id": "4478", + "$id": "4597", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type of this resource - always set to `response`.", "type": { - "$ref": "1423" + "$ref": "1563" }, "optional": false, "readOnly": false, @@ -54908,13 +56348,13 @@ } }, { - "$id": "4479", + "$id": "4598", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the response generation. One of `completed`, `failed`,\n`in_progress`, `cancelled`, `queued`, or `incomplete`.", "type": { - "$ref": "649" + "$ref": "635" }, "optional": true, "readOnly": false, @@ -54929,18 +56369,18 @@ } }, { - "$id": "4480", + "$id": "4599", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) of when this Response was created.", "type": { - "$id": "4481", + "$id": "4600", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4482", + "$id": "4601", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -54962,15 +56402,15 @@ } }, { - "$id": "4483", + "$id": "4602", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "4484", + "$id": "4603", "kind": "nullable", "type": { - "$id": "4485", + "$id": "4604", "kind": "model", "name": "ResponseError", "namespace": "OpenAI", @@ -54980,12 +56420,12 @@ "decorators": [], "properties": [ { - "$id": "4486", + "$id": "4605", "kind": "property", "name": "code", "serializedName": "code", "type": { - "$ref": "657" + "$ref": "643" }, "optional": false, "readOnly": false, @@ -55000,13 +56440,13 @@ } }, { - "$id": "4487", + "$id": "4606", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "4488", + "$id": "4607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55041,16 +56481,16 @@ } }, { - "$id": "4489", + "$id": "4608", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details about why the response is incomplete.", "type": { - "$id": "4490", + "$id": "4609", "kind": "nullable", "type": { - "$id": "4491", + "$id": "4610", "kind": "model", "name": "ResponseIncompleteDetails1", "namespace": "OpenAI", @@ -55059,13 +56499,13 @@ "decorators": [], "properties": [ { - "$id": "4492", + "$id": "4611", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason why the response is incomplete.", "type": { - "$ref": "677" + "$ref": "663" }, "optional": true, "readOnly": false, @@ -55096,17 +56536,17 @@ } }, { - "$id": "4493", + "$id": "4612", "kind": "property", "name": "output", "serializedName": "output", "doc": "An array of content items generated by the model.\n\n- The length and order of items in the `output` array is dependent\n on the model's response.\n- Rather than accessing the first item in the `output` array and\n assuming it's an `assistant` message with the content generated by\n the model, you might consider using the `output_text` property where\n supported in SDKs.", "type": { - "$id": "4494", + "$id": "4613", "kind": "array", "name": "ArrayItemResource", "valueType": { - "$id": "4495", + "$id": "4614", "kind": "model", "name": "ItemResource", "namespace": "OpenAI", @@ -55115,12 +56555,12 @@ "doc": "Content item used to generate a response.", "decorators": [], "discriminatorProperty": { - "$id": "4496", + "$id": "4615", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "593" + "$ref": "579" }, "optional": false, "readOnly": false, @@ -55136,15 +56576,15 @@ }, "properties": [ { - "$ref": "4496" + "$ref": "4615" }, { - "$id": "4497", + "$id": "4616", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "4498", + "$id": "4617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55165,7 +56605,7 @@ ], "discriminatedSubtypes": { "file_search_call": { - "$id": "4499", + "$id": "4618", "kind": "model", "name": "FileSearchToolCallItemResource", "namespace": "OpenAI", @@ -55175,16 +56615,16 @@ "discriminatorValue": "file_search_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4500", + "$id": "4619", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "596" + "$ref": "582" }, "optional": false, "readOnly": false, @@ -55199,13 +56639,13 @@ } }, { - "$id": "4501", + "$id": "4620", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the file search tool call. One of `in_progress`, \n`searching`, `incomplete` or `failed`,", "type": { - "$ref": "681" + "$ref": "667" }, "optional": false, "readOnly": false, @@ -55220,13 +56660,13 @@ } }, { - "$id": "4502", + "$id": "4621", "kind": "property", "name": "queries", "serializedName": "queries", "doc": "The queries used to search for files.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -55241,13 +56681,13 @@ } }, { - "$id": "4503", + "$id": "4622", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$ref": "4203" + "$ref": "4322" }, "optional": true, "readOnly": false, @@ -55264,7 +56704,7 @@ ] }, "computer_call": { - "$id": "4504", + "$id": "4623", "kind": "model", "name": "ComputerToolCallItemResource", "namespace": "OpenAI", @@ -55274,16 +56714,16 @@ "discriminatorValue": "computer_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4505", + "$id": "4624", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "599" + "$ref": "585" }, "optional": false, "readOnly": false, @@ -55298,13 +56738,13 @@ } }, { - "$id": "4506", + "$id": "4625", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "688" + "$ref": "674" }, "optional": false, "readOnly": false, @@ -55319,13 +56759,13 @@ } }, { - "$id": "4507", + "$id": "4626", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4508", + "$id": "4627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55344,12 +56784,12 @@ } }, { - "$id": "4509", + "$id": "4628", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4220" + "$ref": "4339" }, "optional": false, "readOnly": false, @@ -55364,13 +56804,13 @@ } }, { - "$id": "4510", + "$id": "4629", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$ref": "4272" + "$ref": "4391" }, "optional": false, "readOnly": false, @@ -55387,7 +56827,7 @@ ] }, "computer_call_output": { - "$id": "4511", + "$id": "4630", "kind": "model", "name": "ComputerToolCallOutputItemResource", "namespace": "OpenAI", @@ -55397,16 +56837,16 @@ "discriminatorValue": "computer_call_output", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4512", + "$id": "4631", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "600" + "$ref": "586" }, "optional": false, "readOnly": false, @@ -55421,13 +56861,13 @@ } }, { - "$id": "4513", + "$id": "4632", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "693" + "$ref": "679" }, "optional": false, "readOnly": false, @@ -55442,13 +56882,13 @@ } }, { - "$id": "4514", + "$id": "4633", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4515", + "$id": "4634", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55467,13 +56907,13 @@ } }, { - "$id": "4516", + "$id": "4635", "kind": "property", "name": "acknowledged_safety_checks", "serializedName": "acknowledged_safety_checks", "doc": "The safety checks reported by the API that have been acknowledged by the\ndeveloper.", "type": { - "$ref": "4272" + "$ref": "4391" }, "optional": true, "readOnly": false, @@ -55488,12 +56928,12 @@ } }, { - "$id": "4517", + "$id": "4636", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$ref": "4286" + "$ref": "4405" }, "optional": false, "readOnly": false, @@ -55510,7 +56950,7 @@ ] }, "web_search_call": { - "$id": "4518", + "$id": "4637", "kind": "model", "name": "WebSearchToolCallItemResource", "namespace": "OpenAI", @@ -55520,16 +56960,16 @@ "discriminatorValue": "web_search_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4519", + "$id": "4638", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "601" + "$ref": "587" }, "optional": false, "readOnly": false, @@ -55544,13 +56984,13 @@ } }, { - "$id": "4520", + "$id": "4639", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the web search tool call.", "type": { - "$ref": "698" + "$ref": "684" }, "optional": false, "readOnly": false, @@ -55567,7 +57007,7 @@ ] }, "function_call": { - "$id": "4521", + "$id": "4640", "kind": "model", "name": "FunctionToolCallItemResource", "namespace": "OpenAI", @@ -55577,16 +57017,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4522", + "$id": "4641", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "597" + "$ref": "583" }, "optional": false, "readOnly": false, @@ -55601,13 +57041,13 @@ } }, { - "$id": "4523", + "$id": "4642", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "704" + "$ref": "690" }, "optional": false, "readOnly": false, @@ -55622,13 +57062,13 @@ } }, { - "$id": "4524", + "$id": "4643", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4525", + "$id": "4644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55647,13 +57087,13 @@ } }, { - "$id": "4526", + "$id": "4645", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "4527", + "$id": "4646", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55672,13 +57112,13 @@ } }, { - "$id": "4528", + "$id": "4647", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "4529", + "$id": "4648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55699,7 +57139,7 @@ ] }, "function_call_output": { - "$id": "4530", + "$id": "4649", "kind": "model", "name": "FunctionToolCallOutputItemResource", "namespace": "OpenAI", @@ -55709,16 +57149,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4531", + "$id": "4650", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "598" + "$ref": "584" }, "optional": false, "readOnly": false, @@ -55733,13 +57173,13 @@ } }, { - "$id": "4532", + "$id": "4651", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "709" + "$ref": "695" }, "optional": false, "readOnly": false, @@ -55754,13 +57194,13 @@ } }, { - "$id": "4533", + "$id": "4652", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4534", + "$id": "4653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55779,13 +57219,13 @@ } }, { - "$id": "4535", + "$id": "4654", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4536", + "$id": "4655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55806,7 +57246,7 @@ ] }, "reasoning": { - "$id": "4537", + "$id": "4656", "kind": "model", "name": "ReasoningItemResource", "namespace": "OpenAI", @@ -55816,16 +57256,16 @@ "discriminatorValue": "reasoning", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4538", + "$id": "4657", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "602" + "$ref": "588" }, "optional": false, "readOnly": false, @@ -55840,13 +57280,13 @@ } }, { - "$id": "4539", + "$id": "4658", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "714" + "$ref": "700" }, "optional": false, "readOnly": false, @@ -55861,13 +57301,13 @@ } }, { - "$id": "4540", + "$id": "4659", "kind": "property", "name": "encrypted_content", "serializedName": "encrypted_content", "doc": "The encrypted content of the reasoning item - populated when a response is\ngenerated with `reasoning.encrypted_content` in the `include` parameter.", "type": { - "$ref": "4313" + "$ref": "4432" }, "optional": true, "readOnly": false, @@ -55882,13 +57322,13 @@ } }, { - "$id": "4541", + "$id": "4660", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$ref": "4316" + "$ref": "4435" }, "optional": false, "readOnly": false, @@ -55905,7 +57345,7 @@ ] }, "image_generation_call": { - "$id": "4542", + "$id": "4661", "kind": "model", "name": "ImageGenToolCallItemResource", "namespace": "OpenAI", @@ -55915,16 +57355,16 @@ "discriminatorValue": "image_generation_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4543", + "$id": "4662", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "604" + "$ref": "590" }, "optional": false, "readOnly": false, @@ -55939,12 +57379,12 @@ } }, { - "$id": "4544", + "$id": "4663", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "719" + "$ref": "705" }, "optional": false, "readOnly": false, @@ -55959,13 +57399,13 @@ } }, { - "$id": "4545", + "$id": "4664", "kind": "property", "name": "result", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$ref": "4330" + "$ref": "4449" }, "optional": false, "readOnly": false, @@ -55982,7 +57422,7 @@ ] }, "code_interpreter_call": { - "$id": "4546", + "$id": "4665", "kind": "model", "name": "CodeInterpreterToolCallItemResource", "namespace": "OpenAI", @@ -55992,16 +57432,16 @@ "discriminatorValue": "code_interpreter_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4547", + "$id": "4666", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "605" + "$ref": "591" }, "optional": false, "readOnly": false, @@ -56016,12 +57456,12 @@ } }, { - "$id": "4548", + "$id": "4667", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "725" + "$ref": "711" }, "optional": false, "readOnly": false, @@ -56036,13 +57476,13 @@ } }, { - "$id": "4549", + "$id": "4668", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "4550", + "$id": "4669", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56061,13 +57501,13 @@ } }, { - "$id": "4551", + "$id": "4670", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "4552", + "$id": "4671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56086,13 +57526,13 @@ } }, { - "$id": "4553", + "$id": "4672", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the code interpreter tool call.", "type": { - "$ref": "4339" + "$ref": "4458" }, "optional": false, "readOnly": false, @@ -56109,7 +57549,7 @@ ] }, "local_shell_call": { - "$id": "4554", + "$id": "4673", "kind": "model", "name": "LocalShellToolCallItemResource", "namespace": "OpenAI", @@ -56119,16 +57559,16 @@ "discriminatorValue": "local_shell_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4555", + "$id": "4674", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "606" + "$ref": "592" }, "optional": false, "readOnly": false, @@ -56143,12 +57583,12 @@ } }, { - "$id": "4556", + "$id": "4675", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "730" + "$ref": "716" }, "optional": false, "readOnly": false, @@ -56163,13 +57603,13 @@ } }, { - "$id": "4557", + "$id": "4676", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "4558", + "$id": "4677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56188,12 +57628,12 @@ } }, { - "$id": "4559", + "$id": "4678", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4359" + "$ref": "4478" }, "optional": false, "readOnly": false, @@ -56210,7 +57650,7 @@ ] }, "local_shell_call_output": { - "$id": "4560", + "$id": "4679", "kind": "model", "name": "LocalShellToolCallOutputItemResource", "namespace": "OpenAI", @@ -56220,16 +57660,16 @@ "discriminatorValue": "local_shell_call_output", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4561", + "$id": "4680", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "607" + "$ref": "593" }, "optional": false, "readOnly": false, @@ -56244,12 +57684,12 @@ } }, { - "$id": "4562", + "$id": "4681", "kind": "property", "name": "status", "serializedName": "status", "type": { - "$ref": "735" + "$ref": "721" }, "optional": false, "readOnly": false, @@ -56264,13 +57704,13 @@ } }, { - "$id": "4563", + "$id": "4682", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "4564", + "$id": "4683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56291,7 +57731,7 @@ ] }, "mcp_list_tools": { - "$id": "4565", + "$id": "4684", "kind": "model", "name": "MCPListToolsItemResource", "namespace": "OpenAI", @@ -56301,16 +57741,16 @@ "discriminatorValue": "mcp_list_tools", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4566", + "$id": "4685", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "608" + "$ref": "594" }, "optional": false, "readOnly": false, @@ -56325,13 +57765,13 @@ } }, { - "$id": "4567", + "$id": "4686", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "4568", + "$id": "4687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56350,13 +57790,13 @@ } }, { - "$id": "4569", + "$id": "4688", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$ref": "4381" + "$ref": "4500" }, "optional": false, "readOnly": false, @@ -56371,13 +57811,13 @@ } }, { - "$id": "4570", + "$id": "4689", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$ref": "4394" + "$ref": "4513" }, "optional": true, "readOnly": false, @@ -56394,7 +57834,7 @@ ] }, "mcp_approval_request": { - "$id": "4571", + "$id": "4690", "kind": "model", "name": "MCPApprovalRequestItemResource", "namespace": "OpenAI", @@ -56404,16 +57844,16 @@ "discriminatorValue": "mcp_approval_request", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4572", + "$id": "4691", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "609" + "$ref": "595" }, "optional": false, "readOnly": false, @@ -56428,13 +57868,13 @@ } }, { - "$id": "4573", + "$id": "4692", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "4574", + "$id": "4693", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56453,13 +57893,13 @@ } }, { - "$id": "4575", + "$id": "4694", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "4576", + "$id": "4695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56478,13 +57918,13 @@ } }, { - "$id": "4577", + "$id": "4696", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "4578", + "$id": "4697", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56505,7 +57945,7 @@ ] }, "mcp_approval_response": { - "$id": "4579", + "$id": "4698", "kind": "model", "name": "MCPApprovalResponseItemResource", "namespace": "OpenAI", @@ -56515,16 +57955,16 @@ "discriminatorValue": "mcp_approval_response", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4580", + "$id": "4699", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "610" + "$ref": "596" }, "optional": false, "readOnly": false, @@ -56539,13 +57979,13 @@ } }, { - "$id": "4581", + "$id": "4700", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "4582", + "$id": "4701", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56564,13 +58004,13 @@ } }, { - "$id": "4583", + "$id": "4702", "kind": "property", "name": "approve", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "4584", + "$id": "4703", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -56589,13 +58029,13 @@ } }, { - "$id": "4585", + "$id": "4704", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$ref": "4411" + "$ref": "4530" }, "optional": true, "readOnly": false, @@ -56612,7 +58052,7 @@ ] }, "mcp_call": { - "$id": "4586", + "$id": "4705", "kind": "model", "name": "MCPCallItemResource", "namespace": "OpenAI", @@ -56622,16 +58062,16 @@ "discriminatorValue": "mcp_call", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4587", + "$id": "4706", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "611" + "$ref": "597" }, "optional": false, "readOnly": false, @@ -56646,13 +58086,13 @@ } }, { - "$id": "4588", + "$id": "4707", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "4589", + "$id": "4708", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56671,13 +58111,13 @@ } }, { - "$id": "4590", + "$id": "4709", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "4591", + "$id": "4710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56696,13 +58136,13 @@ } }, { - "$id": "4592", + "$id": "4711", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "4593", + "$id": "4712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56721,13 +58161,13 @@ } }, { - "$id": "4594", + "$id": "4713", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$ref": "4422" + "$ref": "4541" }, "optional": true, "readOnly": false, @@ -56742,13 +58182,13 @@ } }, { - "$id": "4595", + "$id": "4714", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$ref": "4425" + "$ref": "4544" }, "optional": true, "readOnly": false, @@ -56765,7 +58205,7 @@ ] }, "message": { - "$id": "4596", + "$id": "4715", "kind": "model", "name": "ResponsesMessageItemResource", "namespace": "OpenAI", @@ -56775,13 +58215,13 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "4597", + "$id": "4716", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role associated with the message.", "type": { - "$ref": "636" + "$ref": "622" }, "optional": false, "readOnly": false, @@ -56796,17 +58236,17 @@ } }, "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4598", + "$id": "4717", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "595" + "$ref": "581" }, "optional": false, "readOnly": false, @@ -56821,13 +58261,13 @@ } }, { - "$id": "4599", + "$id": "4718", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the item. One of `in_progress`, `completed`, or\n`incomplete`. Populated when items are returned via API.", "type": { - "$ref": "740" + "$ref": "726" }, "optional": false, "readOnly": false, @@ -56842,12 +58282,12 @@ } }, { - "$ref": "4597" + "$ref": "4716" } ], "discriminatedSubtypes": { "user": { - "$id": "4600", + "$id": "4719", "kind": "model", "name": "ResponsesUserMessageItemResource", "namespace": "OpenAI", @@ -56857,17 +58297,17 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "4596" + "$ref": "4715" }, "properties": [ { - "$id": "4601", + "$id": "4720", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "640" + "$ref": "626" }, "optional": false, "readOnly": false, @@ -56882,13 +58322,13 @@ } }, { - "$id": "4602", + "$id": "4721", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -56905,7 +58345,7 @@ ] }, "system": { - "$id": "4603", + "$id": "4722", "kind": "model", "name": "ResponsesSystemMessageItemResource", "namespace": "OpenAI", @@ -56915,17 +58355,17 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "4596" + "$ref": "4715" }, "properties": [ { - "$id": "4604", + "$id": "4723", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "638" + "$ref": "624" }, "optional": false, "readOnly": false, @@ -56940,13 +58380,13 @@ } }, { - "$id": "4605", + "$id": "4724", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -56963,7 +58403,7 @@ ] }, "developer": { - "$id": "4606", + "$id": "4725", "kind": "model", "name": "ResponsesDeveloperMessageItemResource", "namespace": "OpenAI", @@ -56973,17 +58413,17 @@ "discriminatorValue": "developer", "decorators": [], "baseModel": { - "$ref": "4596" + "$ref": "4715" }, "properties": [ { - "$id": "4607", + "$id": "4726", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "639" + "$ref": "625" }, "optional": false, "readOnly": false, @@ -56998,13 +58438,13 @@ } }, { - "$id": "4608", + "$id": "4727", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -57021,7 +58461,7 @@ ] }, "assistant": { - "$id": "4609", + "$id": "4728", "kind": "model", "name": "ResponsesAssistantMessageItemResource", "namespace": "OpenAI", @@ -57031,17 +58471,17 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "4596" + "$ref": "4715" }, "properties": [ { - "$id": "4610", + "$id": "4729", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "641" + "$ref": "627" }, "optional": false, "readOnly": false, @@ -57056,13 +58496,13 @@ } }, { - "$id": "4611", + "$id": "4730", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4111" + "$ref": "4230" }, "optional": false, "readOnly": false, @@ -57081,7 +58521,7 @@ } }, "item_reference": { - "$id": "4612", + "$id": "4731", "kind": "model", "name": "DotNetItemReferenceItemResource", "namespace": "OpenAI", @@ -57091,16 +58531,16 @@ "discriminatorValue": "item_reference", "decorators": [], "baseModel": { - "$ref": "4495" + "$ref": "4614" }, "properties": [ { - "$id": "4613", + "$id": "4732", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "603" + "$ref": "589" }, "optional": false, "readOnly": false, @@ -57134,16 +58574,16 @@ } }, { - "$id": "4614", + "$id": "4733", "kind": "property", "name": "output_text", "serializedName": "output_text", "doc": "SDK-only convenience property that contains the aggregated text output\nfrom all `output_text` items in the `output` array, if any are present.\nSupported in the Python and JavaScript SDKs.", "type": { - "$id": "4615", + "$id": "4734", "kind": "nullable", "type": { - "$id": "4616", + "$id": "4735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57164,12 +58604,12 @@ } }, { - "$id": "4617", + "$id": "4736", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "4618", + "$id": "4737", "kind": "model", "name": "ResponseUsage", "namespace": "OpenAI", @@ -57179,13 +58619,13 @@ "decorators": [], "properties": [ { - "$id": "4619", + "$id": "4738", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens.", "type": { - "$id": "4620", + "$id": "4739", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57204,13 +58644,13 @@ } }, { - "$id": "4621", + "$id": "4740", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "A detailed breakdown of the input tokens.", "type": { - "$id": "4622", + "$id": "4741", "kind": "model", "name": "ResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -57219,13 +58659,13 @@ "decorators": [], "properties": [ { - "$id": "4623", + "$id": "4742", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens that were retrieved from the cache.\n[More on prompt caching](/docs/guides/prompt-caching).", "type": { - "$id": "4624", + "$id": "4743", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57258,13 +58698,13 @@ } }, { - "$id": "4625", + "$id": "4744", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens.", "type": { - "$id": "4626", + "$id": "4745", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57283,13 +58723,13 @@ } }, { - "$id": "4627", + "$id": "4746", "kind": "property", "name": "output_tokens_details", "serializedName": "output_tokens_details", "doc": "A detailed breakdown of the output tokens.", "type": { - "$id": "4628", + "$id": "4747", "kind": "model", "name": "ResponseUsageOutputTokensDetails", "namespace": "OpenAI", @@ -57298,13 +58738,13 @@ "decorators": [], "properties": [ { - "$id": "4629", + "$id": "4748", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "The number of reasoning tokens.", "type": { - "$id": "4630", + "$id": "4749", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57337,13 +58777,13 @@ } }, { - "$id": "4631", + "$id": "4750", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4632", + "$id": "4751", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57376,13 +58816,13 @@ } }, { - "$id": "4633", + "$id": "4752", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "4634", + "$id": "4753", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -57403,88 +58843,88 @@ ] }, { - "$ref": "4485" + "$ref": "4604" }, { - "$ref": "4491" + "$ref": "4610" }, { - "$ref": "4495" + "$ref": "4614" }, { - "$ref": "4499" + "$ref": "4618" }, { - "$ref": "4504" + "$ref": "4623" }, { - "$ref": "4511" + "$ref": "4630" }, { - "$ref": "4518" + "$ref": "4637" }, { - "$ref": "4521" + "$ref": "4640" }, { - "$ref": "4530" + "$ref": "4649" }, { - "$ref": "4537" + "$ref": "4656" }, { - "$ref": "4542" + "$ref": "4661" }, { - "$ref": "4546" + "$ref": "4665" }, { - "$ref": "4554" + "$ref": "4673" }, { - "$ref": "4560" + "$ref": "4679" }, { - "$ref": "4565" + "$ref": "4684" }, { - "$ref": "4571" + "$ref": "4690" }, { - "$ref": "4579" + "$ref": "4698" }, { - "$ref": "4586" + "$ref": "4705" }, { - "$ref": "4596" + "$ref": "4715" }, { - "$ref": "4600" + "$ref": "4719" }, { - "$ref": "4603" + "$ref": "4722" }, { - "$ref": "4606" + "$ref": "4725" }, { - "$ref": "4609" + "$ref": "4728" }, { - "$ref": "4612" + "$ref": "4731" }, { - "$ref": "4618" + "$ref": "4737" }, { - "$ref": "4622" + "$ref": "4741" }, { - "$ref": "4628" + "$ref": "4747" }, { - "$id": "4635", + "$id": "4754", "kind": "model", "name": "ResponseStreamEvent", "namespace": "OpenAI", @@ -57492,12 +58932,12 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "4636", + "$id": "4755", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "745" + "$ref": "731" }, "optional": false, "readOnly": false, @@ -57509,16 +58949,16 @@ }, "properties": [ { - "$ref": "4636" + "$ref": "4755" }, { - "$id": "4637", + "$id": "4756", "kind": "property", "name": "sequence_number", "serializedName": "sequence_number", "doc": "The sequence number for this event.", "type": { - "$id": "4638", + "$id": "4757", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57535,7 +58975,7 @@ ], "discriminatedSubtypes": { "response.completed": { - "$id": "4639", + "$id": "4758", "kind": "model", "name": "ResponseCompletedEvent", "namespace": "OpenAI", @@ -57545,17 +58985,17 @@ "discriminatorValue": "response.completed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4640", + "$id": "4759", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.completed`.", "type": { - "$ref": "756" + "$ref": "742" }, "optional": false, "readOnly": false, @@ -57566,13 +59006,13 @@ "serializationOptions": {} }, { - "$id": "4641", + "$id": "4760", "kind": "property", "name": "response", "serializedName": "response", "doc": "Properties of the completed response.", "type": { - "$ref": "4454" + "$ref": "4573" }, "optional": false, "readOnly": false, @@ -57585,7 +59025,7 @@ ] }, "response.content_part.added": { - "$id": "4642", + "$id": "4761", "kind": "model", "name": "ResponseContentPartAddedEvent", "namespace": "OpenAI", @@ -57595,17 +59035,17 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4643", + "$id": "4762", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.content_part.added`.", "type": { - "$ref": "757" + "$ref": "743" }, "optional": false, "readOnly": false, @@ -57616,13 +59056,13 @@ "serializationOptions": {} }, { - "$id": "4644", + "$id": "4763", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "4645", + "$id": "4764", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57637,13 +59077,13 @@ "serializationOptions": {} }, { - "$id": "4646", + "$id": "4765", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "4647", + "$id": "4766", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57658,13 +59098,13 @@ "serializationOptions": {} }, { - "$id": "4648", + "$id": "4767", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was added.", "type": { - "$id": "4649", + "$id": "4768", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57679,13 +59119,13 @@ "serializationOptions": {} }, { - "$id": "4650", + "$id": "4769", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "4112" + "$ref": "4231" }, "optional": false, "readOnly": false, @@ -57698,7 +59138,7 @@ ] }, "response.content_part.done": { - "$id": "4651", + "$id": "4770", "kind": "model", "name": "ResponseContentPartDoneEvent", "namespace": "OpenAI", @@ -57708,17 +59148,17 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4652", + "$id": "4771", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.content_part.done`.", "type": { - "$ref": "758" + "$ref": "744" }, "optional": false, "readOnly": false, @@ -57729,13 +59169,13 @@ "serializationOptions": {} }, { - "$id": "4653", + "$id": "4772", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "4654", + "$id": "4773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57750,13 +59190,13 @@ "serializationOptions": {} }, { - "$id": "4655", + "$id": "4774", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "4656", + "$id": "4775", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57771,13 +59211,13 @@ "serializationOptions": {} }, { - "$id": "4657", + "$id": "4776", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that is done.", "type": { - "$id": "4658", + "$id": "4777", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -57792,13 +59232,13 @@ "serializationOptions": {} }, { - "$id": "4659", + "$id": "4778", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "4112" + "$ref": "4231" }, "optional": false, "readOnly": false, @@ -57811,7 +59251,7 @@ ] }, "response.created": { - "$id": "4660", + "$id": "4779", "kind": "model", "name": "ResponseCreatedEvent", "namespace": "OpenAI", @@ -57821,17 +59261,17 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4661", + "$id": "4780", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.created`.", "type": { - "$ref": "759" + "$ref": "745" }, "optional": false, "readOnly": false, @@ -57842,13 +59282,13 @@ "serializationOptions": {} }, { - "$id": "4662", + "$id": "4781", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that was created.", "type": { - "$ref": "4454" + "$ref": "4573" }, "optional": false, "readOnly": false, @@ -57861,7 +59301,7 @@ ] }, "error": { - "$id": "4663", + "$id": "4782", "kind": "model", "name": "ResponseErrorEvent", "namespace": "OpenAI", @@ -57871,17 +59311,17 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4664", + "$id": "4783", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `error`.", "type": { - "$ref": "760" + "$ref": "746" }, "optional": false, "readOnly": false, @@ -57892,16 +59332,16 @@ "serializationOptions": {} }, { - "$id": "4665", + "$id": "4784", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "4666", + "$id": "4785", "kind": "nullable", "type": { - "$id": "4667", + "$id": "4786", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57918,13 +59358,13 @@ "serializationOptions": {} }, { - "$id": "4668", + "$id": "4787", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "4669", + "$id": "4788", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57939,16 +59379,16 @@ "serializationOptions": {} }, { - "$id": "4670", + "$id": "4789", "kind": "property", "name": "param", "serializedName": "param", "doc": "The error parameter.", "type": { - "$id": "4671", + "$id": "4790", "kind": "nullable", "type": { - "$id": "4672", + "$id": "4791", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57967,7 +59407,7 @@ ] }, "response.file_search_call.completed": { - "$id": "4673", + "$id": "4792", "kind": "model", "name": "ResponseFileSearchCallCompletedEvent", "namespace": "OpenAI", @@ -57977,17 +59417,17 @@ "discriminatorValue": "response.file_search_call.completed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4674", + "$id": "4793", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.completed`.", "type": { - "$ref": "761" + "$ref": "747" }, "optional": false, "readOnly": false, @@ -57998,13 +59438,13 @@ "serializationOptions": {} }, { - "$id": "4675", + "$id": "4794", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "4676", + "$id": "4795", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58019,13 +59459,13 @@ "serializationOptions": {} }, { - "$id": "4677", + "$id": "4796", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "4678", + "$id": "4797", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58042,7 +59482,7 @@ ] }, "response.file_search_call.in_progress": { - "$id": "4679", + "$id": "4798", "kind": "model", "name": "ResponseFileSearchCallInProgressEvent", "namespace": "OpenAI", @@ -58052,17 +59492,17 @@ "discriminatorValue": "response.file_search_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4680", + "$id": "4799", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.in_progress`.", "type": { - "$ref": "762" + "$ref": "748" }, "optional": false, "readOnly": false, @@ -58073,13 +59513,13 @@ "serializationOptions": {} }, { - "$id": "4681", + "$id": "4800", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "4682", + "$id": "4801", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58094,13 +59534,13 @@ "serializationOptions": {} }, { - "$id": "4683", + "$id": "4802", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "4684", + "$id": "4803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58117,7 +59557,7 @@ ] }, "response.file_search_call.searching": { - "$id": "4685", + "$id": "4804", "kind": "model", "name": "ResponseFileSearchCallSearchingEvent", "namespace": "OpenAI", @@ -58127,17 +59567,17 @@ "discriminatorValue": "response.file_search_call.searching", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4686", + "$id": "4805", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.file_search_call.searching`.", "type": { - "$ref": "763" + "$ref": "749" }, "optional": false, "readOnly": false, @@ -58148,13 +59588,13 @@ "serializationOptions": {} }, { - "$id": "4687", + "$id": "4806", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the file search call is searching.", "type": { - "$id": "4688", + "$id": "4807", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58169,13 +59609,13 @@ "serializationOptions": {} }, { - "$id": "4689", + "$id": "4808", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "4690", + "$id": "4809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58192,7 +59632,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "4691", + "$id": "4810", "kind": "model", "name": "ResponseFunctionCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -58202,17 +59642,17 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4692", + "$id": "4811", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.function_call_arguments.delta`.", "type": { - "$ref": "764" + "$ref": "750" }, "optional": false, "readOnly": false, @@ -58223,13 +59663,13 @@ "serializationOptions": {} }, { - "$id": "4693", + "$id": "4812", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the function-call arguments delta is added to.", "type": { - "$id": "4694", + "$id": "4813", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58244,13 +59684,13 @@ "serializationOptions": {} }, { - "$id": "4695", + "$id": "4814", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the function-call arguments delta is added to.", "type": { - "$id": "4696", + "$id": "4815", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58265,13 +59705,13 @@ "serializationOptions": {} }, { - "$id": "4697", + "$id": "4816", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The function-call arguments delta that is added.", "type": { - "$id": "4698", + "$id": "4817", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58288,7 +59728,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "4699", + "$id": "4818", "kind": "model", "name": "ResponseFunctionCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -58298,16 +59738,16 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4700", + "$id": "4819", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "765" + "$ref": "751" }, "optional": false, "readOnly": false, @@ -58318,13 +59758,13 @@ "serializationOptions": {} }, { - "$id": "4701", + "$id": "4820", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "4702", + "$id": "4821", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58339,13 +59779,13 @@ "serializationOptions": {} }, { - "$id": "4703", + "$id": "4822", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item.", "type": { - "$id": "4704", + "$id": "4823", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58360,13 +59800,13 @@ "serializationOptions": {} }, { - "$id": "4705", + "$id": "4824", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The function-call arguments.", "type": { - "$id": "4706", + "$id": "4825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58383,7 +59823,7 @@ ] }, "response.in_progress": { - "$id": "4707", + "$id": "4826", "kind": "model", "name": "ResponseInProgressEvent", "namespace": "OpenAI", @@ -58393,17 +59833,17 @@ "discriminatorValue": "response.in_progress", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4708", + "$id": "4827", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.in_progress`.", "type": { - "$ref": "766" + "$ref": "752" }, "optional": false, "readOnly": false, @@ -58414,13 +59854,13 @@ "serializationOptions": {} }, { - "$id": "4709", + "$id": "4828", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that is in progress.", "type": { - "$ref": "4454" + "$ref": "4573" }, "optional": false, "readOnly": false, @@ -58433,7 +59873,7 @@ ] }, "response.failed": { - "$id": "4710", + "$id": "4829", "kind": "model", "name": "ResponseFailedEvent", "namespace": "OpenAI", @@ -58443,17 +59883,17 @@ "discriminatorValue": "response.failed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4711", + "$id": "4830", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.failed`.", "type": { - "$ref": "767" + "$ref": "753" }, "optional": false, "readOnly": false, @@ -58464,13 +59904,13 @@ "serializationOptions": {} }, { - "$id": "4712", + "$id": "4831", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that failed.", "type": { - "$ref": "4454" + "$ref": "4573" }, "optional": false, "readOnly": false, @@ -58483,7 +59923,7 @@ ] }, "response.incomplete": { - "$id": "4713", + "$id": "4832", "kind": "model", "name": "ResponseIncompleteEvent", "namespace": "OpenAI", @@ -58493,17 +59933,17 @@ "discriminatorValue": "response.incomplete", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4714", + "$id": "4833", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.incomplete`.", "type": { - "$ref": "768" + "$ref": "754" }, "optional": false, "readOnly": false, @@ -58514,13 +59954,13 @@ "serializationOptions": {} }, { - "$id": "4715", + "$id": "4834", "kind": "property", "name": "response", "serializedName": "response", "doc": "The response that was incomplete.", "type": { - "$ref": "4454" + "$ref": "4573" }, "optional": false, "readOnly": false, @@ -58533,7 +59973,7 @@ ] }, "response.output_item.added": { - "$id": "4716", + "$id": "4835", "kind": "model", "name": "ResponseOutputItemAddedEvent", "namespace": "OpenAI", @@ -58543,17 +59983,17 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4717", + "$id": "4836", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_item.added`.", "type": { - "$ref": "769" + "$ref": "755" }, "optional": false, "readOnly": false, @@ -58564,13 +60004,13 @@ "serializationOptions": {} }, { - "$id": "4718", + "$id": "4837", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was added.", "type": { - "$id": "4719", + "$id": "4838", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58585,13 +60025,13 @@ "serializationOptions": {} }, { - "$id": "4720", + "$id": "4839", "kind": "property", "name": "item", "serializedName": "item", "doc": "The output item that was added.", "type": { - "$ref": "4495" + "$ref": "4614" }, "optional": false, "readOnly": false, @@ -58604,7 +60044,7 @@ ] }, "response.output_item.done": { - "$id": "4721", + "$id": "4840", "kind": "model", "name": "ResponseOutputItemDoneEvent", "namespace": "OpenAI", @@ -58614,17 +60054,17 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4722", + "$id": "4841", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_item.done`.", "type": { - "$ref": "770" + "$ref": "756" }, "optional": false, "readOnly": false, @@ -58635,13 +60075,13 @@ "serializationOptions": {} }, { - "$id": "4723", + "$id": "4842", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that was marked done.", "type": { - "$id": "4724", + "$id": "4843", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58656,13 +60096,13 @@ "serializationOptions": {} }, { - "$id": "4725", + "$id": "4844", "kind": "property", "name": "item", "serializedName": "item", "doc": "The output item that was marked done.", "type": { - "$ref": "4495" + "$ref": "4614" }, "optional": false, "readOnly": false, @@ -58675,7 +60115,7 @@ ] }, "response.refusal.delta": { - "$id": "4726", + "$id": "4845", "kind": "model", "name": "ResponseRefusalDeltaEvent", "namespace": "OpenAI", @@ -58685,17 +60125,17 @@ "discriminatorValue": "response.refusal.delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4727", + "$id": "4846", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.refusal.delta`.", "type": { - "$ref": "771" + "$ref": "757" }, "optional": false, "readOnly": false, @@ -58706,13 +60146,13 @@ "serializationOptions": {} }, { - "$id": "4728", + "$id": "4847", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the refusal text is added to.", "type": { - "$id": "4729", + "$id": "4848", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58727,13 +60167,13 @@ "serializationOptions": {} }, { - "$id": "4730", + "$id": "4849", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the refusal text is added to.", "type": { - "$id": "4731", + "$id": "4850", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58748,13 +60188,13 @@ "serializationOptions": {} }, { - "$id": "4732", + "$id": "4851", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the refusal text is added to.", "type": { - "$id": "4733", + "$id": "4852", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58769,13 +60209,13 @@ "serializationOptions": {} }, { - "$id": "4734", + "$id": "4853", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The refusal text that is added.", "type": { - "$id": "4735", + "$id": "4854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58792,7 +60232,7 @@ ] }, "response.refusal.done": { - "$id": "4736", + "$id": "4855", "kind": "model", "name": "ResponseRefusalDoneEvent", "namespace": "OpenAI", @@ -58802,17 +60242,17 @@ "discriminatorValue": "response.refusal.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4737", + "$id": "4856", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.refusal.done`.", "type": { - "$ref": "772" + "$ref": "758" }, "optional": false, "readOnly": false, @@ -58823,13 +60263,13 @@ "serializationOptions": {} }, { - "$id": "4738", + "$id": "4857", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the refusal text is finalized.", "type": { - "$id": "4739", + "$id": "4858", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58844,13 +60284,13 @@ "serializationOptions": {} }, { - "$id": "4740", + "$id": "4859", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the refusal text is finalized.", "type": { - "$id": "4741", + "$id": "4860", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58865,13 +60305,13 @@ "serializationOptions": {} }, { - "$id": "4742", + "$id": "4861", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the refusal text is finalized.", "type": { - "$id": "4743", + "$id": "4862", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58886,13 +60326,13 @@ "serializationOptions": {} }, { - "$id": "4744", + "$id": "4863", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal text that is finalized.", "type": { - "$id": "4745", + "$id": "4864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58909,7 +60349,7 @@ ] }, "response.output_text.delta": { - "$id": "4746", + "$id": "4865", "kind": "model", "name": "ResponseTextDeltaEvent", "namespace": "OpenAI", @@ -58919,17 +60359,17 @@ "discriminatorValue": "response.output_text.delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4747", + "$id": "4866", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_text.delta`.", "type": { - "$ref": "774" + "$ref": "760" }, "optional": false, "readOnly": false, @@ -58940,13 +60380,13 @@ "serializationOptions": {} }, { - "$id": "4748", + "$id": "4867", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the text delta was added to.", "type": { - "$id": "4749", + "$id": "4868", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58961,13 +60401,13 @@ "serializationOptions": {} }, { - "$id": "4750", + "$id": "4869", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the text delta was added to.", "type": { - "$id": "4751", + "$id": "4870", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58982,13 +60422,13 @@ "serializationOptions": {} }, { - "$id": "4752", + "$id": "4871", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the text delta was added to.", "type": { - "$id": "4753", + "$id": "4872", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59003,13 +60443,13 @@ "serializationOptions": {} }, { - "$id": "4754", + "$id": "4873", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added.", "type": { - "$id": "4755", + "$id": "4874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59026,7 +60466,7 @@ ] }, "response.output_text.done": { - "$id": "4756", + "$id": "4875", "kind": "model", "name": "ResponseTextDoneEvent", "namespace": "OpenAI", @@ -59036,17 +60476,17 @@ "discriminatorValue": "response.output_text.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4757", + "$id": "4876", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.output_text.done`.", "type": { - "$ref": "775" + "$ref": "761" }, "optional": false, "readOnly": false, @@ -59057,13 +60497,13 @@ "serializationOptions": {} }, { - "$id": "4758", + "$id": "4877", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the output item that the text content is finalized.", "type": { - "$id": "4759", + "$id": "4878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59078,13 +60518,13 @@ "serializationOptions": {} }, { - "$id": "4760", + "$id": "4879", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the text content is finalized.", "type": { - "$id": "4761", + "$id": "4880", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59099,13 +60539,13 @@ "serializationOptions": {} }, { - "$id": "4762", + "$id": "4881", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that the text content is finalized.", "type": { - "$id": "4763", + "$id": "4882", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59120,13 +60560,13 @@ "serializationOptions": {} }, { - "$id": "4764", + "$id": "4883", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content that is finalized.", "type": { - "$id": "4765", + "$id": "4884", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59143,7 +60583,7 @@ ] }, "response.reasoning_summary_part.added": { - "$id": "4766", + "$id": "4885", "kind": "model", "name": "ResponseReasoningSummaryPartAddedEvent", "namespace": "OpenAI", @@ -59153,17 +60593,17 @@ "discriminatorValue": "response.reasoning_summary_part.added", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4767", + "$id": "4886", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.added`.", "type": { - "$ref": "776" + "$ref": "762" }, "optional": false, "readOnly": false, @@ -59174,13 +60614,13 @@ "serializationOptions": {} }, { - "$id": "4768", + "$id": "4887", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "4769", + "$id": "4888", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59195,13 +60635,13 @@ "serializationOptions": {} }, { - "$id": "4770", + "$id": "4889", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "4771", + "$id": "4890", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59216,13 +60656,13 @@ "serializationOptions": {} }, { - "$id": "4772", + "$id": "4891", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "4773", + "$id": "4892", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59237,13 +60677,13 @@ "serializationOptions": {} }, { - "$id": "4774", + "$id": "4893", "kind": "property", "name": "part", "serializedName": "part", "doc": "The summary part that was added.", "type": { - "$ref": "4317" + "$ref": "4436" }, "optional": false, "readOnly": false, @@ -59256,7 +60696,7 @@ ] }, "response.reasoning_summary_part.done": { - "$id": "4775", + "$id": "4894", "kind": "model", "name": "ResponseReasoningSummaryPartDoneEvent", "namespace": "OpenAI", @@ -59266,17 +60706,17 @@ "discriminatorValue": "response.reasoning_summary_part.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4776", + "$id": "4895", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.done`.", "type": { - "$ref": "777" + "$ref": "763" }, "optional": false, "readOnly": false, @@ -59287,13 +60727,13 @@ "serializationOptions": {} }, { - "$id": "4777", + "$id": "4896", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "4778", + "$id": "4897", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59308,13 +60748,13 @@ "serializationOptions": {} }, { - "$id": "4779", + "$id": "4898", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "4780", + "$id": "4899", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59329,13 +60769,13 @@ "serializationOptions": {} }, { - "$id": "4781", + "$id": "4900", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "4782", + "$id": "4901", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59350,13 +60790,13 @@ "serializationOptions": {} }, { - "$id": "4783", + "$id": "4902", "kind": "property", "name": "part", "serializedName": "part", "doc": "The completed summary part.", "type": { - "$ref": "4317" + "$ref": "4436" }, "optional": false, "readOnly": false, @@ -59369,7 +60809,7 @@ ] }, "response.reasoning_summary_text.delta": { - "$id": "4784", + "$id": "4903", "kind": "model", "name": "ResponseReasoningSummaryTextDeltaEvent", "namespace": "OpenAI", @@ -59379,17 +60819,17 @@ "discriminatorValue": "response.reasoning_summary_text.delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4785", + "$id": "4904", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.delta`.", "type": { - "$ref": "778" + "$ref": "764" }, "optional": false, "readOnly": false, @@ -59400,13 +60840,13 @@ "serializationOptions": {} }, { - "$id": "4786", + "$id": "4905", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary text delta is associated with.", "type": { - "$id": "4787", + "$id": "4906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59421,13 +60861,13 @@ "serializationOptions": {} }, { - "$id": "4788", + "$id": "4907", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary text delta is associated with.", "type": { - "$id": "4789", + "$id": "4908", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59442,13 +60882,13 @@ "serializationOptions": {} }, { - "$id": "4790", + "$id": "4909", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "4791", + "$id": "4910", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59463,13 +60903,13 @@ "serializationOptions": {} }, { - "$id": "4792", + "$id": "4911", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta that was added to the summary.", "type": { - "$id": "4793", + "$id": "4912", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59486,7 +60926,7 @@ ] }, "response.reasoning_summary_text.done": { - "$id": "4794", + "$id": "4913", "kind": "model", "name": "ResponseReasoningSummaryTextDoneEvent", "namespace": "OpenAI", @@ -59496,17 +60936,17 @@ "discriminatorValue": "response.reasoning_summary_text.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4795", + "$id": "4914", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.done`.", "type": { - "$ref": "779" + "$ref": "765" }, "optional": false, "readOnly": false, @@ -59517,13 +60957,13 @@ "serializationOptions": {} }, { - "$id": "4796", + "$id": "4915", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item this summary text is associated with.", "type": { - "$id": "4797", + "$id": "4916", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59538,13 +60978,13 @@ "serializationOptions": {} }, { - "$id": "4798", + "$id": "4917", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item this summary text is associated with.", "type": { - "$id": "4799", + "$id": "4918", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59559,13 +60999,13 @@ "serializationOptions": {} }, { - "$id": "4800", + "$id": "4919", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "4801", + "$id": "4920", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59580,13 +61020,13 @@ "serializationOptions": {} }, { - "$id": "4802", + "$id": "4921", "kind": "property", "name": "text", "serializedName": "text", "doc": "The full text of the completed reasoning summary.", "type": { - "$id": "4803", + "$id": "4922", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59603,7 +61043,7 @@ ] }, "response.web_search_call.completed": { - "$id": "4804", + "$id": "4923", "kind": "model", "name": "ResponseWebSearchCallCompletedEvent", "namespace": "OpenAI", @@ -59613,17 +61053,17 @@ "discriminatorValue": "response.web_search_call.completed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4805", + "$id": "4924", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.completed`.", "type": { - "$ref": "780" + "$ref": "766" }, "optional": false, "readOnly": false, @@ -59634,13 +61074,13 @@ "serializationOptions": {} }, { - "$id": "4806", + "$id": "4925", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "4807", + "$id": "4926", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59655,13 +61095,13 @@ "serializationOptions": {} }, { - "$id": "4808", + "$id": "4927", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "4809", + "$id": "4928", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59678,7 +61118,7 @@ ] }, "response.web_search_call.in_progress": { - "$id": "4810", + "$id": "4929", "kind": "model", "name": "ResponseWebSearchCallInProgressEvent", "namespace": "OpenAI", @@ -59688,17 +61128,17 @@ "discriminatorValue": "response.web_search_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4811", + "$id": "4930", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.in_progress`.", "type": { - "$ref": "781" + "$ref": "767" }, "optional": false, "readOnly": false, @@ -59709,13 +61149,13 @@ "serializationOptions": {} }, { - "$id": "4812", + "$id": "4931", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "4813", + "$id": "4932", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59730,13 +61170,13 @@ "serializationOptions": {} }, { - "$id": "4814", + "$id": "4933", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "4815", + "$id": "4934", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59753,7 +61193,7 @@ ] }, "response.web_search_call.searching": { - "$id": "4816", + "$id": "4935", "kind": "model", "name": "ResponseWebSearchCallSearchingEvent", "namespace": "OpenAI", @@ -59763,17 +61203,17 @@ "discriminatorValue": "response.web_search_call.searching", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4817", + "$id": "4936", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.web_search_call.searching`.", "type": { - "$ref": "782" + "$ref": "768" }, "optional": false, "readOnly": false, @@ -59784,13 +61224,13 @@ "serializationOptions": {} }, { - "$id": "4818", + "$id": "4937", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "4819", + "$id": "4938", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59805,13 +61245,13 @@ "serializationOptions": {} }, { - "$id": "4820", + "$id": "4939", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "4821", + "$id": "4940", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59828,7 +61268,7 @@ ] }, "response.image_generation_call.completed": { - "$id": "4822", + "$id": "4941", "kind": "model", "name": "ResponseImageGenCallCompletedEvent", "namespace": "OpenAI", @@ -59838,17 +61278,17 @@ "discriminatorValue": "response.image_generation_call.completed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4823", + "$id": "4942", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.completed'.", "type": { - "$ref": "783" + "$ref": "769" }, "optional": false, "readOnly": false, @@ -59859,13 +61299,13 @@ "serializationOptions": {} }, { - "$id": "4824", + "$id": "4943", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4825", + "$id": "4944", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59880,13 +61320,13 @@ "serializationOptions": {} }, { - "$id": "4826", + "$id": "4945", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "4827", + "$id": "4946", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59903,7 +61343,7 @@ ] }, "response.image_generation_call.generating": { - "$id": "4828", + "$id": "4947", "kind": "model", "name": "ResponseImageGenCallGeneratingEvent", "namespace": "OpenAI", @@ -59913,17 +61353,17 @@ "discriminatorValue": "response.image_generation_call.generating", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4829", + "$id": "4948", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.generating'.", "type": { - "$ref": "784" + "$ref": "770" }, "optional": false, "readOnly": false, @@ -59934,13 +61374,13 @@ "serializationOptions": {} }, { - "$id": "4830", + "$id": "4949", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4831", + "$id": "4950", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59955,13 +61395,13 @@ "serializationOptions": {} }, { - "$id": "4832", + "$id": "4951", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "4833", + "$id": "4952", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59978,7 +61418,7 @@ ] }, "response.image_generation_call.in_progress": { - "$id": "4834", + "$id": "4953", "kind": "model", "name": "ResponseImageGenCallInProgressEvent", "namespace": "OpenAI", @@ -59988,17 +61428,17 @@ "discriminatorValue": "response.image_generation_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4835", + "$id": "4954", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.in_progress'.", "type": { - "$ref": "785" + "$ref": "771" }, "optional": false, "readOnly": false, @@ -60009,13 +61449,13 @@ "serializationOptions": {} }, { - "$id": "4836", + "$id": "4955", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4837", + "$id": "4956", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60030,13 +61470,13 @@ "serializationOptions": {} }, { - "$id": "4838", + "$id": "4957", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "4839", + "$id": "4958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60053,7 +61493,7 @@ ] }, "response.image_generation_call.partial_image": { - "$id": "4840", + "$id": "4959", "kind": "model", "name": "ResponseImageGenCallPartialImageEvent", "namespace": "OpenAI", @@ -60063,17 +61503,17 @@ "discriminatorValue": "response.image_generation_call.partial_image", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4841", + "$id": "4960", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.image_generation_call.partial_image'.", "type": { - "$ref": "786" + "$ref": "772" }, "optional": false, "readOnly": false, @@ -60084,13 +61524,13 @@ "serializationOptions": {} }, { - "$id": "4842", + "$id": "4961", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4843", + "$id": "4962", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60105,13 +61545,13 @@ "serializationOptions": {} }, { - "$id": "4844", + "$id": "4963", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "4845", + "$id": "4964", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60126,13 +61566,13 @@ "serializationOptions": {} }, { - "$id": "4846", + "$id": "4965", "kind": "property", "name": "partial_image_index", "serializedName": "partial_image_index", "doc": "0-based index for the partial image (backend is 1-based, but this is 0-based for the user).", "type": { - "$id": "4847", + "$id": "4966", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60147,13 +61587,13 @@ "serializationOptions": {} }, { - "$id": "4848", + "$id": "4967", "kind": "property", "name": "partial_image_b64", "serializedName": "partial_image_b64", "doc": "Base64-encoded partial image data, suitable for rendering as an image.", "type": { - "$id": "4849", + "$id": "4968", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60170,7 +61610,7 @@ ] }, "response.mcp_call.arguments_delta": { - "$id": "4850", + "$id": "4969", "kind": "model", "name": "ResponseMCPCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -60180,17 +61620,17 @@ "discriminatorValue": "response.mcp_call.arguments_delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4851", + "$id": "4970", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_delta'.", "type": { - "$ref": "787" + "$ref": "773" }, "optional": false, "readOnly": false, @@ -60201,13 +61641,13 @@ "serializationOptions": {} }, { - "$id": "4852", + "$id": "4971", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4853", + "$id": "4972", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60222,13 +61662,13 @@ "serializationOptions": {} }, { - "$id": "4854", + "$id": "4973", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "4855", + "$id": "4974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60243,13 +61683,13 @@ "serializationOptions": {} }, { - "$id": "4856", + "$id": "4975", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the arguments for the MCP tool call.", "type": { - "$id": "4857", + "$id": "4976", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -60266,7 +61706,7 @@ ] }, "response.mcp_call.arguments_done": { - "$id": "4858", + "$id": "4977", "kind": "model", "name": "ResponseMCPCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -60276,17 +61716,17 @@ "discriminatorValue": "response.mcp_call.arguments_done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4859", + "$id": "4978", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_done'.", "type": { - "$ref": "788" + "$ref": "774" }, "optional": false, "readOnly": false, @@ -60297,13 +61737,13 @@ "serializationOptions": {} }, { - "$id": "4860", + "$id": "4979", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4861", + "$id": "4980", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60318,13 +61758,13 @@ "serializationOptions": {} }, { - "$id": "4862", + "$id": "4981", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "4863", + "$id": "4982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60339,13 +61779,13 @@ "serializationOptions": {} }, { - "$id": "4864", + "$id": "4983", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The finalized arguments for the MCP tool call.", "type": { - "$id": "4865", + "$id": "4984", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -60362,7 +61802,7 @@ ] }, "response.mcp_call.completed": { - "$id": "4866", + "$id": "4985", "kind": "model", "name": "ResponseMCPCallCompletedEvent", "namespace": "OpenAI", @@ -60372,17 +61812,17 @@ "discriminatorValue": "response.mcp_call.completed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4867", + "$id": "4986", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.completed'.", "type": { - "$ref": "789" + "$ref": "775" }, "optional": false, "readOnly": false, @@ -60395,7 +61835,7 @@ ] }, "response.mcp_call.failed": { - "$id": "4868", + "$id": "4987", "kind": "model", "name": "ResponseMCPCallFailedEvent", "namespace": "OpenAI", @@ -60405,17 +61845,17 @@ "discriminatorValue": "response.mcp_call.failed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4869", + "$id": "4988", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.failed'.", "type": { - "$ref": "790" + "$ref": "776" }, "optional": false, "readOnly": false, @@ -60428,7 +61868,7 @@ ] }, "response.mcp_call.in_progress": { - "$id": "4870", + "$id": "4989", "kind": "model", "name": "ResponseMCPCallInProgressEvent", "namespace": "OpenAI", @@ -60438,17 +61878,17 @@ "discriminatorValue": "response.mcp_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4871", + "$id": "4990", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_call.in_progress'.", "type": { - "$ref": "791" + "$ref": "777" }, "optional": false, "readOnly": false, @@ -60459,13 +61899,13 @@ "serializationOptions": {} }, { - "$id": "4872", + "$id": "4991", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4873", + "$id": "4992", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60480,13 +61920,13 @@ "serializationOptions": {} }, { - "$id": "4874", + "$id": "4993", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "4875", + "$id": "4994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60503,7 +61943,7 @@ ] }, "response.mcp_list_tools.completed": { - "$id": "4876", + "$id": "4995", "kind": "model", "name": "ResponseMCPListToolsCompletedEvent", "namespace": "OpenAI", @@ -60513,17 +61953,17 @@ "discriminatorValue": "response.mcp_list_tools.completed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4877", + "$id": "4996", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.completed'.", "type": { - "$ref": "792" + "$ref": "778" }, "optional": false, "readOnly": false, @@ -60536,7 +61976,7 @@ ] }, "response.mcp_list_tools.failed": { - "$id": "4878", + "$id": "4997", "kind": "model", "name": "ResponseMCPListToolsFailedEvent", "namespace": "OpenAI", @@ -60546,17 +61986,17 @@ "discriminatorValue": "response.mcp_list_tools.failed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4879", + "$id": "4998", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.failed'.", "type": { - "$ref": "793" + "$ref": "779" }, "optional": false, "readOnly": false, @@ -60569,7 +62009,7 @@ ] }, "response.mcp_list_tools.in_progress": { - "$id": "4880", + "$id": "4999", "kind": "model", "name": "ResponseMCPListToolsInProgressEvent", "namespace": "OpenAI", @@ -60579,17 +62019,17 @@ "discriminatorValue": "response.mcp_list_tools.in_progress", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4881", + "$id": "5000", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.in_progress'.", "type": { - "$ref": "794" + "$ref": "780" }, "optional": false, "readOnly": false, @@ -60602,7 +62042,7 @@ ] }, "response.output_text.annotation.added": { - "$id": "4882", + "$id": "5001", "kind": "model", "name": "ResponseOutputTextAnnotationAddedEvent", "namespace": "OpenAI", @@ -60612,17 +62052,17 @@ "discriminatorValue": "response.output_text.annotation.added", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4883", + "$id": "5002", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.output_text_annotation.added'.", "type": { - "$ref": "773" + "$ref": "759" }, "optional": false, "readOnly": false, @@ -60633,13 +62073,13 @@ "serializationOptions": {} }, { - "$id": "4884", + "$id": "5003", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item to which the annotation is being added.", "type": { - "$id": "4885", + "$id": "5004", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60654,13 +62094,13 @@ "serializationOptions": {} }, { - "$id": "4886", + "$id": "5005", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4887", + "$id": "5006", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60675,13 +62115,13 @@ "serializationOptions": {} }, { - "$id": "4888", + "$id": "5007", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part within the output item.", "type": { - "$id": "4889", + "$id": "5008", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60696,13 +62136,13 @@ "serializationOptions": {} }, { - "$id": "4890", + "$id": "5009", "kind": "property", "name": "annotation_index", "serializedName": "annotation_index", "doc": "The index of the annotation within the content part.", "type": { - "$id": "4891", + "$id": "5010", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60717,13 +62157,13 @@ "serializationOptions": {} }, { - "$id": "4892", + "$id": "5011", "kind": "property", "name": "annotation", "serializedName": "annotation", "doc": "The annotation object being added. (See annotation schema for details.)", "type": { - "$id": "4893", + "$id": "5012", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -60740,7 +62180,7 @@ ] }, "response.queued": { - "$id": "4894", + "$id": "5013", "kind": "model", "name": "ResponseQueuedEvent", "namespace": "OpenAI", @@ -60750,17 +62190,17 @@ "discriminatorValue": "response.queued", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4895", + "$id": "5014", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.queued'.", "type": { - "$ref": "795" + "$ref": "781" }, "optional": false, "readOnly": false, @@ -60771,13 +62211,13 @@ "serializationOptions": {} }, { - "$id": "4896", + "$id": "5015", "kind": "property", "name": "response", "serializedName": "response", "doc": "The full response object that is queued.", "type": { - "$ref": "4454" + "$ref": "4573" }, "optional": false, "readOnly": false, @@ -60790,7 +62230,7 @@ ] }, "response.reasoning.delta": { - "$id": "4897", + "$id": "5016", "kind": "model", "name": "ResponseReasoningDeltaEvent", "namespace": "OpenAI", @@ -60800,17 +62240,17 @@ "discriminatorValue": "response.reasoning.delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4898", + "$id": "5017", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning.delta'.", "type": { - "$ref": "796" + "$ref": "782" }, "optional": false, "readOnly": false, @@ -60821,13 +62261,13 @@ "serializationOptions": {} }, { - "$id": "4899", + "$id": "5018", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which reasoning is being updated.", "type": { - "$id": "4900", + "$id": "5019", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60842,13 +62282,13 @@ "serializationOptions": {} }, { - "$id": "4901", + "$id": "5020", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4902", + "$id": "5021", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60863,13 +62303,13 @@ "serializationOptions": {} }, { - "$id": "4903", + "$id": "5022", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "4904", + "$id": "5023", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60884,13 +62324,13 @@ "serializationOptions": {} }, { - "$id": "4905", + "$id": "5024", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the reasoning content.", "type": { - "$id": "4906", + "$id": "5025", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -60907,7 +62347,7 @@ ] }, "response.reasoning.done": { - "$id": "4907", + "$id": "5026", "kind": "model", "name": "ResponseReasoningDoneEvent", "namespace": "OpenAI", @@ -60917,17 +62357,17 @@ "discriminatorValue": "response.reasoning.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4908", + "$id": "5027", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning.done'.", "type": { - "$ref": "797" + "$ref": "783" }, "optional": false, "readOnly": false, @@ -60938,13 +62378,13 @@ "serializationOptions": {} }, { - "$id": "4909", + "$id": "5028", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which reasoning is finalized.", "type": { - "$id": "4910", + "$id": "5029", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60959,13 +62399,13 @@ "serializationOptions": {} }, { - "$id": "4911", + "$id": "5030", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4912", + "$id": "5031", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60980,13 +62420,13 @@ "serializationOptions": {} }, { - "$id": "4913", + "$id": "5032", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "4914", + "$id": "5033", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61001,13 +62441,13 @@ "serializationOptions": {} }, { - "$id": "4915", + "$id": "5034", "kind": "property", "name": "text", "serializedName": "text", "doc": "The finalized reasoning text.", "type": { - "$id": "4916", + "$id": "5035", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61024,7 +62464,7 @@ ] }, "response.reasoning_summary.delta": { - "$id": "4917", + "$id": "5036", "kind": "model", "name": "ResponseReasoningSummaryDeltaEvent", "namespace": "OpenAI", @@ -61034,17 +62474,17 @@ "discriminatorValue": "response.reasoning_summary.delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4918", + "$id": "5037", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning_summary.delta'.", "type": { - "$ref": "798" + "$ref": "784" }, "optional": false, "readOnly": false, @@ -61055,13 +62495,13 @@ "serializationOptions": {} }, { - "$id": "4919", + "$id": "5038", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is being updated.", "type": { - "$id": "4920", + "$id": "5039", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61076,13 +62516,13 @@ "serializationOptions": {} }, { - "$id": "4921", + "$id": "5040", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4922", + "$id": "5041", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61097,13 +62537,13 @@ "serializationOptions": {} }, { - "$id": "4923", + "$id": "5042", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "4924", + "$id": "5043", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61118,13 +62558,13 @@ "serializationOptions": {} }, { - "$id": "4925", + "$id": "5044", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial update to the reasoning summary content.", "type": { - "$id": "4926", + "$id": "5045", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -61141,7 +62581,7 @@ ] }, "response.reasoning_summary.done": { - "$id": "4927", + "$id": "5046", "kind": "model", "name": "ResponseReasoningSummaryDoneEvent", "namespace": "OpenAI", @@ -61151,17 +62591,17 @@ "discriminatorValue": "response.reasoning_summary.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4928", + "$id": "5047", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always 'response.reasoning_summary.done'.", "type": { - "$ref": "799" + "$ref": "785" }, "optional": false, "readOnly": false, @@ -61172,13 +62612,13 @@ "serializationOptions": {} }, { - "$id": "4929", + "$id": "5048", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is finalized.", "type": { - "$id": "4930", + "$id": "5049", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61193,13 +62633,13 @@ "serializationOptions": {} }, { - "$id": "4931", + "$id": "5050", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "4932", + "$id": "5051", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61214,13 +62654,13 @@ "serializationOptions": {} }, { - "$id": "4933", + "$id": "5052", "kind": "property", "name": "summary_index", "serializedName": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "4934", + "$id": "5053", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61235,13 +62675,13 @@ "serializationOptions": {} }, { - "$id": "4935", + "$id": "5054", "kind": "property", "name": "text", "serializedName": "text", "doc": "The finalized reasoning summary text.", "type": { - "$id": "4936", + "$id": "5055", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61258,7 +62698,7 @@ ] }, "response.code_interpreter_call_code.delta": { - "$id": "4937", + "$id": "5056", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDeltaEvent", "namespace": "OpenAI", @@ -61268,17 +62708,17 @@ "discriminatorValue": "response.code_interpreter_call_code.delta", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4938", + "$id": "5057", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.delta`.", "type": { - "$ref": "751" + "$ref": "737" }, "optional": false, "readOnly": false, @@ -61289,13 +62729,13 @@ "serializationOptions": {} }, { - "$id": "4939", + "$id": "5058", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "4940", + "$id": "5059", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61310,13 +62750,13 @@ "serializationOptions": {} }, { - "$id": "4941", + "$id": "5060", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The partial code snippet added by the code interpreter.", "type": { - "$id": "4942", + "$id": "5061", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61333,7 +62773,7 @@ ] }, "response.code_interpreter_call_code.done": { - "$id": "4943", + "$id": "5062", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDoneEvent", "namespace": "OpenAI", @@ -61343,17 +62783,17 @@ "discriminatorValue": "response.code_interpreter_call_code.done", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4944", + "$id": "5063", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.done`.", "type": { - "$ref": "752" + "$ref": "738" }, "optional": false, "readOnly": false, @@ -61364,13 +62804,13 @@ "serializationOptions": {} }, { - "$id": "4945", + "$id": "5064", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "4946", + "$id": "5065", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61385,13 +62825,13 @@ "serializationOptions": {} }, { - "$id": "4947", + "$id": "5066", "kind": "property", "name": "code", "serializedName": "code", "doc": "The final code snippet output by the code interpreter.", "type": { - "$id": "4948", + "$id": "5067", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61408,7 +62848,7 @@ ] }, "response.code_interpreter_call.completed": { - "$id": "4949", + "$id": "5068", "kind": "model", "name": "ResponseCodeInterpreterCallCompletedEvent", "namespace": "OpenAI", @@ -61418,17 +62858,17 @@ "discriminatorValue": "response.code_interpreter_call.completed", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4950", + "$id": "5069", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.completed`.", "type": { - "$ref": "753" + "$ref": "739" }, "optional": false, "readOnly": false, @@ -61439,13 +62879,13 @@ "serializationOptions": {} }, { - "$id": "4951", + "$id": "5070", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "4952", + "$id": "5071", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61460,12 +62900,12 @@ "serializationOptions": {} }, { - "$id": "4953", + "$id": "5072", "kind": "property", "name": "code_interpreter_call", "serializedName": "code_interpreter_call", "type": { - "$ref": "4546" + "$ref": "4665" }, "optional": false, "readOnly": false, @@ -61478,7 +62918,7 @@ ] }, "response.code_interpreter_call.in_progress": { - "$id": "4954", + "$id": "5073", "kind": "model", "name": "ResponseCodeInterpreterCallInProgressEvent", "namespace": "OpenAI", @@ -61488,17 +62928,17 @@ "discriminatorValue": "response.code_interpreter_call.in_progress", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4955", + "$id": "5074", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.in_progress`.", "type": { - "$ref": "754" + "$ref": "740" }, "optional": false, "readOnly": false, @@ -61509,13 +62949,13 @@ "serializationOptions": {} }, { - "$id": "4956", + "$id": "5075", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "4957", + "$id": "5076", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61530,12 +62970,12 @@ "serializationOptions": {} }, { - "$id": "4958", + "$id": "5077", "kind": "property", "name": "code_interpreter_call", "serializedName": "code_interpreter_call", "type": { - "$ref": "4546" + "$ref": "4665" }, "optional": false, "readOnly": false, @@ -61548,7 +62988,7 @@ ] }, "response.code_interpreter_call.interpreting": { - "$id": "4959", + "$id": "5078", "kind": "model", "name": "ResponseCodeInterpreterCallInterpretingEvent", "namespace": "OpenAI", @@ -61558,17 +62998,17 @@ "discriminatorValue": "response.code_interpreter_call.interpreting", "decorators": [], "baseModel": { - "$ref": "4635" + "$ref": "4754" }, "properties": [ { - "$id": "4960", + "$id": "5079", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the event. Always `response.code_interpreter_call.interpreting`.", "type": { - "$ref": "755" + "$ref": "741" }, "optional": false, "readOnly": false, @@ -61579,13 +63019,13 @@ "serializationOptions": {} }, { - "$id": "4961", + "$id": "5080", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "4962", + "$id": "5081", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -61600,12 +63040,12 @@ "serializationOptions": {} }, { - "$id": "4963", + "$id": "5082", "kind": "property", "name": "code_interpreter_call", "serializedName": "code_interpreter_call", "type": { - "$ref": "4546" + "$ref": "4665" }, "optional": false, "readOnly": false, @@ -61620,154 +63060,154 @@ } }, { - "$ref": "4639" + "$ref": "4758" }, { - "$ref": "4642" + "$ref": "4761" }, { - "$ref": "4651" + "$ref": "4770" }, { - "$ref": "4660" + "$ref": "4779" }, { - "$ref": "4663" + "$ref": "4782" }, { - "$ref": "4673" + "$ref": "4792" }, { - "$ref": "4679" + "$ref": "4798" }, { - "$ref": "4685" + "$ref": "4804" }, { - "$ref": "4691" + "$ref": "4810" }, { - "$ref": "4699" + "$ref": "4818" }, { - "$ref": "4707" + "$ref": "4826" }, { - "$ref": "4710" + "$ref": "4829" }, { - "$ref": "4713" + "$ref": "4832" }, { - "$ref": "4716" + "$ref": "4835" }, { - "$ref": "4721" + "$ref": "4840" }, { - "$ref": "4726" + "$ref": "4845" }, { - "$ref": "4736" + "$ref": "4855" }, { - "$ref": "4746" + "$ref": "4865" }, { - "$ref": "4756" + "$ref": "4875" }, { - "$ref": "4766" + "$ref": "4885" }, { - "$ref": "4775" + "$ref": "4894" }, { - "$ref": "4784" + "$ref": "4903" }, { - "$ref": "4794" + "$ref": "4913" }, { - "$ref": "4804" + "$ref": "4923" }, { - "$ref": "4810" + "$ref": "4929" }, { - "$ref": "4816" + "$ref": "4935" }, { - "$ref": "4822" + "$ref": "4941" }, { - "$ref": "4828" + "$ref": "4947" }, { - "$ref": "4834" + "$ref": "4953" }, { - "$ref": "4840" + "$ref": "4959" }, { - "$ref": "4850" + "$ref": "4969" }, { - "$ref": "4858" + "$ref": "4977" }, { - "$ref": "4866" + "$ref": "4985" }, { - "$ref": "4868" + "$ref": "4987" }, { - "$ref": "4870" + "$ref": "4989" }, { - "$ref": "4876" + "$ref": "4995" }, { - "$ref": "4878" + "$ref": "4997" }, { - "$ref": "4880" + "$ref": "4999" }, { - "$ref": "4882" + "$ref": "5001" }, { - "$ref": "4894" + "$ref": "5013" }, { - "$ref": "4897" + "$ref": "5016" }, { - "$ref": "4907" + "$ref": "5026" }, { - "$ref": "4917" + "$ref": "5036" }, { - "$ref": "4927" + "$ref": "5046" }, { - "$ref": "4937" + "$ref": "5056" }, { - "$ref": "4943" + "$ref": "5062" }, { - "$ref": "4949" + "$ref": "5068" }, { - "$ref": "4954" + "$ref": "5073" }, { - "$ref": "4959" + "$ref": "5078" }, { - "$id": "4964", + "$id": "5083", "kind": "model", "name": "ResponseErrorResponse", "namespace": "OpenAI", @@ -61776,12 +63216,12 @@ "decorators": [], "properties": [ { - "$id": "4965", + "$id": "5084", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "4485" + "$ref": "4604" }, "optional": false, "readOnly": false, @@ -61798,7 +63238,7 @@ ] }, { - "$id": "4966", + "$id": "5085", "kind": "model", "name": "DeleteResponseResponse", "namespace": "OpenAI", @@ -61807,12 +63247,12 @@ "decorators": [], "properties": [ { - "$id": "4967", + "$id": "5086", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "4968", + "$id": "5087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61831,12 +63271,12 @@ } }, { - "$id": "4969", + "$id": "5088", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1425" + "$ref": "1565" }, "optional": false, "readOnly": false, @@ -61851,12 +63291,12 @@ } }, { - "$id": "4970", + "$id": "5089", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$ref": "1427" + "$ref": "1567" }, "optional": false, "readOnly": false, @@ -61873,7 +63313,7 @@ ] }, { - "$id": "4971", + "$id": "5090", "kind": "model", "name": "ResponseItemList", "namespace": "OpenAI", @@ -61883,13 +63323,13 @@ "decorators": [], "properties": [ { - "$id": "4972", + "$id": "5091", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of object returned, must be `list`.", "type": { - "$ref": "1429" + "$ref": "1569" }, "optional": false, "readOnly": false, @@ -61904,13 +63344,13 @@ } }, { - "$id": "4973", + "$id": "5092", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of items used to generate this response.", "type": { - "$ref": "4494" + "$ref": "4613" }, "optional": false, "readOnly": false, @@ -61925,13 +63365,13 @@ } }, { - "$id": "4974", + "$id": "5093", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "4975", + "$id": "5094", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -61950,13 +63390,13 @@ } }, { - "$id": "4976", + "$id": "5095", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "4977", + "$id": "5096", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61975,13 +63415,13 @@ } }, { - "$id": "4978", + "$id": "5097", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "4979", + "$id": "5098", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62002,7 +63442,7 @@ ] }, { - "$id": "4980", + "$id": "5099", "kind": "model", "name": "CreateImageRequest", "namespace": "OpenAI", @@ -62011,13 +63451,13 @@ "decorators": [], "properties": [ { - "$id": "4981", + "$id": "5100", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "A text description of the desired image(s). The maximum length is 32000 characters for `gpt-image-1`, 1000 characters for `dall-e-2` and 4000 characters for `dall-e-3`.", "type": { - "$id": "4982", + "$id": "5101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62036,72 +63476,16 @@ } }, { - "$id": "4983", + "$id": "5102", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for image generation. One of `dall-e-2`, `dall-e-3`, or `gpt-image-1`. Defaults to `dall-e-2` unless a parameter specific to `gpt-image-1` is used.", "type": { - "$id": "4984", + "$id": "5103", "kind": "nullable", "type": { - "$id": "4985", - "kind": "enum", - "name": "CreateImageRequestModel", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.model.anonymous", - "valueType": { - "$id": "4986", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "4987", - "kind": "enumvalue", - "name": "dall-e-2", - "value": "dall-e-2", - "valueType": { - "$ref": "4986" - }, - "enumType": { - "$ref": "4985" - }, - "decorators": [] - }, - { - "$id": "4988", - "kind": "enumvalue", - "name": "dall-e-3", - "value": "dall-e-3", - "valueType": { - "$ref": "4986" - }, - "enumType": { - "$ref": "4985" - }, - "decorators": [] - }, - { - "$id": "4989", - "kind": "enumvalue", - "name": "gpt-image-1", - "value": "gpt-image-1", - "valueType": { - "$ref": "4986" - }, - "enumType": { - "$ref": "4985" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": false, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "786" }, "namespace": "" }, @@ -62118,16 +63502,16 @@ } }, { - "$id": "4990", + "$id": "5104", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10. For `dall-e-3`, only `n=1` is supported.", "type": { - "$id": "4991", + "$id": "5105", "kind": "nullable", "type": { - "$id": "4992", + "$id": "5106", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62148,111 +63532,16 @@ } }, { - "$id": "4993", + "$id": "5107", "kind": "property", "name": "quality", "serializedName": "quality", "doc": "The quality of the image that will be generated.\n\n- `auto` (default value) will automatically select the best quality for the given model.\n- `high`, `medium` and `low` are supported for `gpt-image-1`.\n- `hd` and `standard` are supported for `dall-e-3`.\n- `standard` is the only option for `dall-e-2`.", "type": { - "$id": "4994", + "$id": "5108", "kind": "nullable", "type": { - "$id": "4995", - "kind": "enum", - "name": "CreateImageRequestQuality", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.quality.anonymous", - "valueType": { - "$id": "4996", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "4997", - "kind": "enumvalue", - "name": "standard", - "value": "standard", - "valueType": { - "$ref": "4996" - }, - "enumType": { - "$ref": "4995" - }, - "decorators": [] - }, - { - "$id": "4998", - "kind": "enumvalue", - "name": "hd", - "value": "hd", - "valueType": { - "$ref": "4996" - }, - "enumType": { - "$ref": "4995" - }, - "decorators": [] - }, - { - "$id": "4999", - "kind": "enumvalue", - "name": "low", - "value": "low", - "valueType": { - "$ref": "4996" - }, - "enumType": { - "$ref": "4995" - }, - "decorators": [] - }, - { - "$id": "5000", - "kind": "enumvalue", - "name": "medium", - "value": "medium", - "valueType": { - "$ref": "4996" - }, - "enumType": { - "$ref": "4995" - }, - "decorators": [] - }, - { - "$id": "5001", - "kind": "enumvalue", - "name": "high", - "value": "high", - "valueType": { - "$ref": "4996" - }, - "enumType": { - "$ref": "4995" - }, - "decorators": [] - }, - { - "$id": "5002", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "4996" - }, - "enumType": { - "$ref": "4995" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "791" }, "namespace": "" }, @@ -62269,59 +63558,16 @@ } }, { - "$id": "5003", + "$id": "5109", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "The format in which generated images with `dall-e-2` and `dall-e-3` are returned. Must be one of `url` or `b64_json`. URLs are only valid for 60 minutes after the image has been generated. This parameter isn't supported for `gpt-image-1` which will always return base64-encoded images.", "type": { - "$id": "5004", + "$id": "5110", "kind": "nullable", "type": { - "$id": "5005", - "kind": "enum", - "name": "CreateImageRequestResponseFormat", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.response_format.anonymous", - "valueType": { - "$id": "5006", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5007", - "kind": "enumvalue", - "name": "url", - "value": "url", - "valueType": { - "$ref": "5006" - }, - "enumType": { - "$ref": "5005" - }, - "decorators": [] - }, - { - "$id": "5008", - "kind": "enumvalue", - "name": "b64_json", - "value": "b64_json", - "valueType": { - "$ref": "5006" - }, - "enumType": { - "$ref": "5005" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "799" }, "namespace": "" }, @@ -62338,72 +63584,16 @@ } }, { - "$id": "5009", + "$id": "5111", "kind": "property", "name": "output_format", "serializedName": "output_format", "doc": "The format in which the generated images are returned. This parameter is only supported for `gpt-image-1`. Must be one of `png`, `jpeg`, or `webp`.", "type": { - "$id": "5010", + "$id": "5112", "kind": "nullable", "type": { - "$id": "5011", - "kind": "enum", - "name": "CreateImageRequestOutputFormat", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.output_format.anonymous", - "valueType": { - "$id": "5012", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5013", - "kind": "enumvalue", - "name": "png", - "value": "png", - "valueType": { - "$ref": "5012" - }, - "enumType": { - "$ref": "5011" - }, - "decorators": [] - }, - { - "$id": "5014", - "kind": "enumvalue", - "name": "jpeg", - "value": "jpeg", - "valueType": { - "$ref": "5012" - }, - "enumType": { - "$ref": "5011" - }, - "decorators": [] - }, - { - "$id": "5015", - "kind": "enumvalue", - "name": "webp", - "value": "webp", - "valueType": { - "$ref": "5012" - }, - "enumType": { - "$ref": "5011" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "803" }, "namespace": "" }, @@ -62420,16 +63610,16 @@ } }, { - "$id": "5016", + "$id": "5113", "kind": "property", "name": "output_compression", "serializedName": "output_compression", "doc": "The compression level (0-100%) for the generated images. This parameter is only supported for `gpt-image-1` with the `webp` or `jpeg` output formats, and defaults to 100.", "type": { - "$id": "5017", + "$id": "5114", "kind": "nullable", "type": { - "$id": "5018", + "$id": "5115", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62450,137 +63640,16 @@ } }, { - "$id": "5019", + "$id": "5116", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for `gpt-image-1`, one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`, and one of `1024x1024`, `1792x1024`, or `1024x1792` for `dall-e-3`.", "type": { - "$id": "5020", + "$id": "5117", "kind": "nullable", "type": { - "$id": "5021", - "kind": "enum", - "name": "CreateImageRequestSize", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.size.anonymous", - "valueType": { - "$id": "5022", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5023", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - }, - { - "$id": "5024", - "kind": "enumvalue", - "name": "1024x1024", - "value": "1024x1024", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - }, - { - "$id": "5025", - "kind": "enumvalue", - "name": "1536x1024", - "value": "1536x1024", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - }, - { - "$id": "5026", - "kind": "enumvalue", - "name": "1024x1536", - "value": "1024x1536", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - }, - { - "$id": "5027", - "kind": "enumvalue", - "name": "256x256", - "value": "256x256", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - }, - { - "$id": "5028", - "kind": "enumvalue", - "name": "512x512", - "value": "512x512", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - }, - { - "$id": "5029", - "kind": "enumvalue", - "name": "1792x1024", - "value": "1792x1024", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - }, - { - "$id": "5030", - "kind": "enumvalue", - "name": "1024x1792", - "value": "1024x1792", - "valueType": { - "$ref": "5022" - }, - "enumType": { - "$ref": "5021" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "808" }, "namespace": "" }, @@ -62597,59 +63666,16 @@ } }, { - "$id": "5031", + "$id": "5118", "kind": "property", "name": "moderation", "serializedName": "moderation", "doc": "Control the content-moderation level for images generated by `gpt-image-1`. Must be either `low` for less restrictive filtering or `auto` (default value).", "type": { - "$id": "5032", + "$id": "5119", "kind": "nullable", "type": { - "$id": "5033", - "kind": "enum", - "name": "CreateImageRequestModeration", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.moderation.anonymous", - "valueType": { - "$id": "5034", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5035", - "kind": "enumvalue", - "name": "low", - "value": "low", - "valueType": { - "$ref": "5034" - }, - "enumType": { - "$ref": "5033" - }, - "decorators": [] - }, - { - "$id": "5036", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "5034" - }, - "enumType": { - "$ref": "5033" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "818" }, "namespace": "" }, @@ -62666,72 +63692,16 @@ } }, { - "$id": "5037", + "$id": "5120", "kind": "property", "name": "background", "serializedName": "background", "doc": "Allows to set transparency for the background of the generated image(s).\nThis parameter is only supported for `gpt-image-1`. Must be one of\n`transparent`, `opaque` or `auto` (default value). When `auto` is used, the\nmodel will automatically determine the best background for the image.\n\nIf `transparent`, the output format needs to support transparency, so it\nshould be set to either `png` (default value) or `webp`.", "type": { - "$id": "5038", + "$id": "5121", "kind": "nullable", "type": { - "$id": "5039", - "kind": "enum", - "name": "CreateImageRequestBackground", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.background.anonymous", - "valueType": { - "$id": "5040", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5041", - "kind": "enumvalue", - "name": "transparent", - "value": "transparent", - "valueType": { - "$ref": "5040" - }, - "enumType": { - "$ref": "5039" - }, - "decorators": [] - }, - { - "$id": "5042", - "kind": "enumvalue", - "name": "opaque", - "value": "opaque", - "valueType": { - "$ref": "5040" - }, - "enumType": { - "$ref": "5039" - }, - "decorators": [] - }, - { - "$id": "5043", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "5040" - }, - "enumType": { - "$ref": "5039" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "822" }, "namespace": "" }, @@ -62748,59 +63718,16 @@ } }, { - "$id": "5044", + "$id": "5122", "kind": "property", "name": "style", "serializedName": "style", "doc": "The style of the generated images. This parameter is only supported for `dall-e-3`. Must be one of `vivid` or `natural`. Vivid causes the model to lean towards generating hyper-real and dramatic images. Natural causes the model to produce more natural, less hyper-real looking images.", "type": { - "$id": "5045", + "$id": "5123", "kind": "nullable", "type": { - "$id": "5046", - "kind": "enum", - "name": "CreateImageRequestStyle", - "crossLanguageDefinitionId": "OpenAI.CreateImageRequest.style.anonymous", - "valueType": { - "$id": "5047", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5048", - "kind": "enumvalue", - "name": "vivid", - "value": "vivid", - "valueType": { - "$ref": "5047" - }, - "enumType": { - "$ref": "5046" - }, - "decorators": [] - }, - { - "$id": "5049", - "kind": "enumvalue", - "name": "natural", - "value": "natural", - "valueType": { - "$ref": "5047" - }, - "enumType": { - "$ref": "5046" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "827" }, "namespace": "" }, @@ -62817,13 +63744,13 @@ } }, { - "$id": "5050", + "$id": "5124", "kind": "property", "name": "user", "serializedName": "user", "doc": "A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices#end-user-ids).", "type": { - "$id": "5051", + "$id": "5125", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62844,7 +63771,7 @@ ] }, { - "$id": "5052", + "$id": "5126", "kind": "model", "name": "ImagesResponse", "namespace": "OpenAI", @@ -62854,18 +63781,18 @@ "decorators": [], "properties": [ { - "$id": "5053", + "$id": "5127", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the image was created.", "type": { - "$id": "5054", + "$id": "5128", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5055", + "$id": "5129", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62887,17 +63814,17 @@ } }, { - "$id": "5056", + "$id": "5130", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of generated images.", "type": { - "$id": "5057", + "$id": "5131", "kind": "array", "name": "ArrayImage", "valueType": { - "$id": "5058", + "$id": "5132", "kind": "model", "name": "Image", "namespace": "OpenAI", @@ -62907,13 +63834,13 @@ "decorators": [], "properties": [ { - "$id": "5059", + "$id": "5133", "kind": "property", "name": "b64_json", "serializedName": "b64_json", "doc": "The base64-encoded JSON of the generated image. Default value for `gpt-image-1`, and only present if `response_format` is set to `b64_json` for `dall-e-2` and `dall-e-3`.", "type": { - "$id": "5060", + "$id": "5134", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -62933,13 +63860,13 @@ } }, { - "$id": "5061", + "$id": "5135", "kind": "property", "name": "url", "serializedName": "url", "doc": "When using `dall-e-2` or `dall-e-3`, the URL of the generated image if `response_format` is set to `url` (default value). Unsupported for `gpt-image-1`.", "type": { - "$id": "5062", + "$id": "5136", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -62958,13 +63885,13 @@ } }, { - "$id": "5063", + "$id": "5137", "kind": "property", "name": "revised_prompt", "serializedName": "revised_prompt", "doc": "For `dall-e-3` only, the revised prompt that was used to generate the image.", "type": { - "$id": "5064", + "$id": "5138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63000,13 +63927,13 @@ } }, { - "$id": "5065", + "$id": "5139", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "For `gpt-image-1` only, the token usage information for the image generation.", "type": { - "$id": "5066", + "$id": "5140", "kind": "model", "name": "ImagesResponseUsage", "namespace": "OpenAI", @@ -63015,13 +63942,13 @@ "decorators": [], "properties": [ { - "$id": "5067", + "$id": "5141", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens (images and text) used for the image generation.", "type": { - "$id": "5068", + "$id": "5142", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63040,13 +63967,13 @@ } }, { - "$id": "5069", + "$id": "5143", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of tokens (images and text) in the input prompt.", "type": { - "$id": "5070", + "$id": "5144", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63065,13 +63992,13 @@ } }, { - "$id": "5071", + "$id": "5145", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of image tokens in the output image.", "type": { - "$id": "5072", + "$id": "5146", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63090,13 +64017,13 @@ } }, { - "$id": "5073", + "$id": "5147", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "The input tokens detailed information for the image generation.", "type": { - "$id": "5074", + "$id": "5148", "kind": "model", "name": "ImagesResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -63105,13 +64032,13 @@ "decorators": [], "properties": [ { - "$id": "5075", + "$id": "5149", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens in the input prompt.", "type": { - "$id": "5076", + "$id": "5150", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63130,13 +64057,13 @@ } }, { - "$id": "5077", + "$id": "5151", "kind": "property", "name": "image_tokens", "serializedName": "image_tokens", "doc": "The number of image tokens in the input prompt.", "type": { - "$id": "5078", + "$id": "5152", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63185,16 +64112,16 @@ ] }, { - "$ref": "5058" + "$ref": "5132" }, { - "$ref": "5066" + "$ref": "5140" }, { - "$ref": "5074" + "$ref": "5148" }, { - "$id": "5079", + "$id": "5153", "kind": "model", "name": "CreateImageEditRequest", "namespace": "OpenAI", @@ -63203,18 +64130,18 @@ "decorators": [], "properties": [ { - "$id": "5080", + "$id": "5154", "kind": "property", "name": "image", "serializedName": "image", "doc": "The image(s) to edit. Must be a supported image file or an array of images.\n\nFor `gpt-image-1`, each image should be a `png`, `webp`, or `jpg` file less\nthan 50MB. You can provide up to 16 images.\n\nFor `dall-e-2`, you can only provide one image, and it should be a square\n`png` file less than 4MB.", "type": { - "$id": "5081", + "$id": "5155", "kind": "union", "name": "CreateImageEditRequestImage", "variantTypes": [ { - "$id": "5082", + "$id": "5156", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -63222,11 +64149,11 @@ "decorators": [] }, { - "$id": "5083", + "$id": "5157", "kind": "array", "name": "Array26", "valueType": { - "$id": "5084", + "$id": "5158", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -63254,19 +64181,18 @@ "application/octet-stream", "application/json" ], - "name": "image", - "headers": [] + "name": "image" } } }, { - "$id": "5085", + "$id": "5159", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "A text description of the desired image(s). The maximum length is 1000 characters for `dall-e-2`, and 32000 characters for `gpt-image-1`.", "type": { - "$id": "5086", + "$id": "5160", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63285,19 +64211,18 @@ "defaultContentTypes": [ "text/plain" ], - "name": "prompt", - "headers": [] + "name": "prompt" } } }, { - "$id": "5087", + "$id": "5161", "kind": "property", "name": "mask", "serializedName": "mask", "doc": "An additional image whose fully transparent areas (e.g. where alpha is zero) indicate where `image` should be edited. If there are multiple images provided, the mask will be applied on the first image. Must be a valid PNG file, less than 4MB, and have the same dimensions as `image`.", "type": { - "$id": "5088", + "$id": "5162", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -63317,78 +64242,21 @@ "defaultContentTypes": [ "application/octet-stream" ], - "name": "mask", - "headers": [] + "name": "mask" } } }, { - "$id": "5089", + "$id": "5163", "kind": "property", "name": "background", "serializedName": "background", "doc": "Allows to set transparency for the background of the generated image(s).\nThis parameter is only supported for `gpt-image-1`. Must be one of\n`transparent`, `opaque` or `auto` (default value). When `auto` is used, the\nmodel will automatically determine the best background for the image.\n\nIf `transparent`, the output format needs to support transparency, so it\nshould be set to either `png` (default value) or `webp`.", "type": { - "$id": "5090", + "$id": "5164", "kind": "nullable", "type": { - "$id": "5091", - "kind": "enum", - "name": "CreateImageEditRequestBackground", - "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.background.anonymous", - "valueType": { - "$id": "5092", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5093", - "kind": "enumvalue", - "name": "transparent", - "value": "transparent", - "valueType": { - "$ref": "5092" - }, - "enumType": { - "$ref": "5091" - }, - "decorators": [] - }, - { - "$id": "5094", - "kind": "enumvalue", - "name": "opaque", - "value": "opaque", - "valueType": { - "$ref": "5092" - }, - "enumType": { - "$ref": "5091" - }, - "decorators": [] - }, - { - "$id": "5095", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "5092" - }, - "enumType": { - "$ref": "5091" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "831" }, "namespace": "" }, @@ -63405,65 +64273,21 @@ "defaultContentTypes": [ "application/json" ], - "name": "background", - "headers": [] + "name": "background" } } }, { - "$id": "5096", + "$id": "5165", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for image generation. Only `dall-e-2` and `gpt-image-1` are supported. Defaults to `dall-e-2` unless a parameter specific to `gpt-image-1` is used.", "type": { - "$id": "5097", + "$id": "5166", "kind": "nullable", "type": { - "$id": "5098", - "kind": "enum", - "name": "CreateImageEditRequestModel", - "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.model.anonymous", - "valueType": { - "$id": "5099", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5100", - "kind": "enumvalue", - "name": "dall-e-2", - "value": "dall-e-2", - "valueType": { - "$ref": "5099" - }, - "enumType": { - "$ref": "5098" - }, - "decorators": [] - }, - { - "$id": "5101", - "kind": "enumvalue", - "name": "gpt-image-1", - "value": "gpt-image-1", - "valueType": { - "$ref": "5099" - }, - "enumType": { - "$ref": "5098" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": false, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "836" }, "namespace": "" }, @@ -63480,27 +64304,26 @@ "defaultContentTypes": [ "application/json" ], - "name": "model", - "headers": [] + "name": "model" } } }, { - "$id": "5102", + "$id": "5167", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5103", + "$id": "5168", "kind": "nullable", "type": { - "$id": "5104", + "$id": "5169", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5105", + "$id": "5170", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -63523,117 +64346,21 @@ "defaultContentTypes": [ "application/json" ], - "name": "n", - "headers": [] + "name": "n" } } }, { - "$id": "5106", + "$id": "5171", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `1024x1024`, `1536x1024` (landscape), `1024x1536` (portrait), or `auto` (default value) for `gpt-image-1`, and one of `256x256`, `512x512`, or `1024x1024` for `dall-e-2`.", "type": { - "$id": "5107", + "$id": "5172", "kind": "nullable", "type": { - "$id": "5108", - "kind": "enum", - "name": "CreateImageEditRequestSize", - "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.size.anonymous", - "valueType": { - "$id": "5109", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5110", - "kind": "enumvalue", - "name": "256x256", - "value": "256x256", - "valueType": { - "$ref": "5109" - }, - "enumType": { - "$ref": "5108" - }, - "decorators": [] - }, - { - "$id": "5111", - "kind": "enumvalue", - "name": "512x512", - "value": "512x512", - "valueType": { - "$ref": "5109" - }, - "enumType": { - "$ref": "5108" - }, - "decorators": [] - }, - { - "$id": "5112", - "kind": "enumvalue", - "name": "1024x1024", - "value": "1024x1024", - "valueType": { - "$ref": "5109" - }, - "enumType": { - "$ref": "5108" - }, - "decorators": [] - }, - { - "$id": "5113", - "kind": "enumvalue", - "name": "1536x1024", - "value": "1536x1024", - "valueType": { - "$ref": "5109" - }, - "enumType": { - "$ref": "5108" - }, - "decorators": [] - }, - { - "$id": "5114", - "kind": "enumvalue", - "name": "1024x1536", - "value": "1024x1536", - "valueType": { - "$ref": "5109" - }, - "enumType": { - "$ref": "5108" - }, - "decorators": [] - }, - { - "$id": "5115", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "5109" - }, - "enumType": { - "$ref": "5108" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "840" }, "namespace": "" }, @@ -63650,65 +64377,21 @@ "defaultContentTypes": [ "application/json" ], - "name": "size", - "headers": [] + "name": "size" } } }, { - "$id": "5116", + "$id": "5173", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "The format in which the generated images are returned. Must be one of `url` or `b64_json`. URLs are only valid for 60 minutes after the image has been generated. This parameter is only supported for `dall-e-2`, as `gpt-image-1` will always return base64-encoded images.", "type": { - "$id": "5117", + "$id": "5174", "kind": "nullable", "type": { - "$id": "5118", - "kind": "enum", - "name": "CreateImageEditRequestResponseFormat", - "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.response_format.anonymous", - "valueType": { - "$id": "5119", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5120", - "kind": "enumvalue", - "name": "url", - "value": "url", - "valueType": { - "$ref": "5119" - }, - "enumType": { - "$ref": "5118" - }, - "decorators": [] - }, - { - "$id": "5121", - "kind": "enumvalue", - "name": "b64_json", - "value": "b64_json", - "valueType": { - "$ref": "5119" - }, - "enumType": { - "$ref": "5118" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "848" }, "namespace": "" }, @@ -63725,19 +64408,18 @@ "defaultContentTypes": [ "application/json" ], - "name": "response_format", - "headers": [] + "name": "response_format" } } }, { - "$id": "5122", + "$id": "5175", "kind": "property", "name": "user", "serializedName": "user", "doc": "A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices#end-user-ids).", "type": { - "$id": "5123", + "$id": "5176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63756,104 +64438,21 @@ "defaultContentTypes": [ "text/plain" ], - "name": "user", - "headers": [] + "name": "user" } } }, { - "$id": "5124", + "$id": "5177", "kind": "property", "name": "quality", "serializedName": "quality", "doc": "The quality of the image that will be generated. `high`, `medium` and `low` are only supported for `gpt-image-1`. `dall-e-2` only supports `standard` quality. Defaults to `auto`.", "type": { - "$id": "5125", + "$id": "5178", "kind": "nullable", "type": { - "$id": "5126", - "kind": "enum", - "name": "CreateImageEditRequestQuality", - "crossLanguageDefinitionId": "OpenAI.CreateImageEditRequest.quality.anonymous", - "valueType": { - "$id": "5127", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5128", - "kind": "enumvalue", - "name": "standard", - "value": "standard", - "valueType": { - "$ref": "5127" - }, - "enumType": { - "$ref": "5126" - }, - "decorators": [] - }, - { - "$id": "5129", - "kind": "enumvalue", - "name": "low", - "value": "low", - "valueType": { - "$ref": "5127" - }, - "enumType": { - "$ref": "5126" - }, - "decorators": [] - }, - { - "$id": "5130", - "kind": "enumvalue", - "name": "medium", - "value": "medium", - "valueType": { - "$ref": "5127" - }, - "enumType": { - "$ref": "5126" - }, - "decorators": [] - }, - { - "$id": "5131", - "kind": "enumvalue", - "name": "high", - "value": "high", - "valueType": { - "$ref": "5127" - }, - "enumType": { - "$ref": "5126" - }, - "decorators": [] - }, - { - "$id": "5132", - "kind": "enumvalue", - "name": "auto", - "value": "auto", - "valueType": { - "$ref": "5127" - }, - "enumType": { - "$ref": "5126" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "852" }, "namespace": "" }, @@ -63870,15 +64469,14 @@ "defaultContentTypes": [ "application/json" ], - "name": "quality", - "headers": [] + "name": "quality" } } } ] }, { - "$id": "5133", + "$id": "5179", "kind": "model", "name": "CreateImageVariationRequest", "namespace": "OpenAI", @@ -63887,13 +64485,13 @@ "decorators": [], "properties": [ { - "$id": "5134", + "$id": "5180", "kind": "property", "name": "image", "serializedName": "image", "doc": "The image to use as the basis for the variation(s). Must be a valid PNG file, less than 4MB, and square.", "type": { - "$id": "5135", + "$id": "5181", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -63913,52 +64511,21 @@ "defaultContentTypes": [ "application/octet-stream" ], - "name": "image", - "headers": [] + "name": "image" } } }, { - "$id": "5136", + "$id": "5182", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for image generation. Only `dall-e-2` is supported at this time.", "type": { - "$id": "5137", + "$id": "5183", "kind": "nullable", "type": { - "$id": "5138", - "kind": "enum", - "name": "CreateImageVariationRequestModel", - "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.model.anonymous", - "valueType": { - "$id": "5139", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5140", - "kind": "enumvalue", - "name": "dall-e-2", - "value": "dall-e-2", - "valueType": { - "$ref": "5139" - }, - "enumType": { - "$ref": "5138" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": false, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "859" }, "namespace": "" }, @@ -63975,27 +64542,26 @@ "defaultContentTypes": [ "application/json" ], - "name": "model", - "headers": [] + "name": "model" } } }, { - "$id": "5141", + "$id": "5184", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5142", + "$id": "5185", "kind": "nullable", "type": { - "$id": "5143", + "$id": "5186", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5144", + "$id": "5187", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64018,65 +64584,21 @@ "defaultContentTypes": [ "application/json" ], - "name": "n", - "headers": [] + "name": "n" } } }, { - "$id": "5145", + "$id": "5188", "kind": "property", "name": "response_format", "serializedName": "response_format", "doc": "The format in which the generated images are returned. Must be one of `url` or `b64_json`. URLs are only valid for 60 minutes after the image has been generated.", "type": { - "$id": "5146", + "$id": "5189", "kind": "nullable", "type": { - "$id": "5147", - "kind": "enum", - "name": "CreateImageVariationRequestResponseFormat", - "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.response_format.anonymous", - "valueType": { - "$id": "5148", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5149", - "kind": "enumvalue", - "name": "url", - "value": "url", - "valueType": { - "$ref": "5148" - }, - "enumType": { - "$ref": "5147" - }, - "decorators": [] - }, - { - "$id": "5150", - "kind": "enumvalue", - "name": "b64_json", - "value": "b64_json", - "valueType": { - "$ref": "5148" - }, - "enumType": { - "$ref": "5147" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "862" }, "namespace": "" }, @@ -64093,78 +64615,21 @@ "defaultContentTypes": [ "application/json" ], - "name": "response_format", - "headers": [] + "name": "response_format" } } }, { - "$id": "5151", + "$id": "5190", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`.", "type": { - "$id": "5152", + "$id": "5191", "kind": "nullable", "type": { - "$id": "5153", - "kind": "enum", - "name": "CreateImageVariationRequestSize", - "crossLanguageDefinitionId": "OpenAI.CreateImageVariationRequest.size.anonymous", - "valueType": { - "$id": "5154", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5155", - "kind": "enumvalue", - "name": "256x256", - "value": "256x256", - "valueType": { - "$ref": "5154" - }, - "enumType": { - "$ref": "5153" - }, - "decorators": [] - }, - { - "$id": "5156", - "kind": "enumvalue", - "name": "512x512", - "value": "512x512", - "valueType": { - "$ref": "5154" - }, - "enumType": { - "$ref": "5153" - }, - "decorators": [] - }, - { - "$id": "5157", - "kind": "enumvalue", - "name": "1024x1024", - "value": "1024x1024", - "valueType": { - "$ref": "5154" - }, - "enumType": { - "$ref": "5153" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": true, - "isFlags": false, - "usage": "Input", - "decorators": [] + "$ref": "866" }, "namespace": "" }, @@ -64181,19 +64646,18 @@ "defaultContentTypes": [ "application/json" ], - "name": "size", - "headers": [] + "name": "size" } } }, { - "$id": "5158", + "$id": "5192", "kind": "property", "name": "user", "serializedName": "user", "doc": "A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse. [Learn more](/docs/guides/safety-best-practices#end-user-ids).", "type": { - "$id": "5159", + "$id": "5193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64212,15 +64676,14 @@ "defaultContentTypes": [ "text/plain" ], - "name": "user", - "headers": [] + "name": "user" } } } ] }, { - "$id": "5160", + "$id": "5194", "kind": "model", "name": "CreateMessageRequest", "namespace": "OpenAI", @@ -64229,13 +64692,13 @@ "decorators": [], "properties": [ { - "$id": "5161", + "$id": "5195", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the entity that is creating the message. Allowed values include:\n- `user`: Indicates the message is sent by an actual user and should be used in most cases to represent user-generated messages.\n- `assistant`: Indicates the message is generated by the assistant. Use this value to insert messages from the assistant into the conversation.", "type": { - "$ref": "800" + "$ref": "871" }, "optional": false, "readOnly": false, @@ -64250,16 +64713,16 @@ } }, { - "$id": "5162", + "$id": "5196", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "5163", + "$id": "5197", "kind": "array", "name": "ArrayMessageContent", "valueType": { - "$id": "5164", + "$id": "5198", "kind": "model", "name": "MessageContent", "namespace": "OpenAI", @@ -64269,12 +64732,12 @@ "doc": "Represents a single piece of content in an Assistants API message.", "decorators": [], "discriminatorProperty": { - "$id": "5165", + "$id": "5199", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "804" + "$ref": "875" }, "optional": false, "readOnly": false, @@ -64290,12 +64753,12 @@ }, "properties": [ { - "$ref": "5165" + "$ref": "5199" } ], "discriminatedSubtypes": { "image_file": { - "$id": "5166", + "$id": "5200", "kind": "model", "name": "MessageContentImageFileObject", "namespace": "OpenAI", @@ -64306,17 +64769,17 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "5164" + "$ref": "5198" }, "properties": [ { - "$id": "5167", + "$id": "5201", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$ref": "807" + "$ref": "878" }, "optional": false, "readOnly": false, @@ -64331,12 +64794,12 @@ } }, { - "$id": "5168", + "$id": "5202", "kind": "property", "name": "image_file", "serializedName": "image_file", "type": { - "$id": "5169", + "$id": "5203", "kind": "model", "name": "MessageContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -64345,13 +64808,13 @@ "decorators": [], "properties": [ { - "$id": "5170", + "$id": "5204", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The [File](/docs/api-reference/files) ID of the image in the message content. Set `purpose=\"vision\"` when uploading the File if you need to later display the file content.", "type": { - "$id": "5171", + "$id": "5205", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64370,13 +64833,13 @@ } }, { - "$id": "5172", + "$id": "5206", "kind": "property", "name": "detail", "serializedName": "detail", "doc": "Specifies the detail level of the image if specified by the user. `low` uses fewer tokens, you can opt in to high resolution using `high`.", "type": { - "$ref": "810" + "$ref": "881" }, "optional": true, "readOnly": false, @@ -64407,7 +64870,7 @@ ] }, "text": { - "$id": "5173", + "$id": "5207", "kind": "model", "name": "MessageContentTextObject", "namespace": "OpenAI", @@ -64418,17 +64881,17 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "5164" + "$ref": "5198" }, "properties": [ { - "$id": "5174", + "$id": "5208", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$ref": "806" + "$ref": "877" }, "optional": false, "readOnly": false, @@ -64443,24 +64906,24 @@ } }, { - "$id": "5175", + "$id": "5209", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5176", + "$id": "5210", "kind": "union", "name": "MessageContentTextObjectText", "variantTypes": [ { - "$id": "5177", + "$id": "5211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "5178", + "$id": "5212", "kind": "model", "name": "MessageContentTextObjectText1", "namespace": "OpenAI", @@ -64469,12 +64932,12 @@ "decorators": [], "properties": [ { - "$id": "5179", + "$id": "5213", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "5180", + "$id": "5214", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64493,16 +64956,16 @@ } }, { - "$id": "5181", + "$id": "5215", "kind": "property", "name": "annotations", "serializedName": "annotations", "type": { - "$id": "5182", + "$id": "5216", "kind": "array", "name": "ArrayMessageContentTextObjectAnnotation", "valueType": { - "$id": "5183", + "$id": "5217", "kind": "model", "name": "MessageContentTextObjectAnnotation", "namespace": "OpenAI", @@ -64511,13 +64974,13 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "5184", + "$id": "5218", "kind": "property", "name": "type", "serializedName": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "815" + "$ref": "886" }, "optional": false, "readOnly": false, @@ -64533,12 +64996,12 @@ }, "properties": [ { - "$ref": "5184" + "$ref": "5218" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "5185", + "$id": "5219", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -64549,17 +65012,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "5183" + "$ref": "5217" }, "properties": [ { - "$id": "5186", + "$id": "5220", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "817" + "$ref": "888" }, "optional": false, "readOnly": false, @@ -64574,13 +65037,13 @@ } }, { - "$id": "5187", + "$id": "5221", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5188", + "$id": "5222", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64599,12 +65062,12 @@ } }, { - "$id": "5189", + "$id": "5223", "kind": "property", "name": "file_citation", "serializedName": "file_citation", "type": { - "$id": "5190", + "$id": "5224", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -64613,13 +65076,13 @@ "decorators": [], "properties": [ { - "$id": "5191", + "$id": "5225", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "5192", + "$id": "5226", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64652,12 +65115,12 @@ } }, { - "$id": "5193", + "$id": "5227", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5194", + "$id": "5228", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64676,12 +65139,12 @@ } }, { - "$id": "5195", + "$id": "5229", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5196", + "$id": "5230", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64702,7 +65165,7 @@ ] }, "file_path": { - "$id": "5197", + "$id": "5231", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -64713,17 +65176,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "5183" + "$ref": "5217" }, "properties": [ { - "$id": "5198", + "$id": "5232", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$ref": "818" + "$ref": "889" }, "optional": false, "readOnly": false, @@ -64738,13 +65201,13 @@ } }, { - "$id": "5199", + "$id": "5233", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5200", + "$id": "5234", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64763,12 +65226,12 @@ } }, { - "$id": "5201", + "$id": "5235", "kind": "property", "name": "file_path", "serializedName": "file_path", "type": { - "$id": "5202", + "$id": "5236", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -64777,13 +65240,13 @@ "decorators": [], "properties": [ { - "$id": "5203", + "$id": "5237", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "5204", + "$id": "5238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64816,12 +65279,12 @@ } }, { - "$id": "5205", + "$id": "5239", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5206", + "$id": "5240", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64840,12 +65303,12 @@ } }, { - "$id": "5207", + "$id": "5241", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5208", + "$id": "5242", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64903,7 +65366,7 @@ ] }, "refusal": { - "$id": "5209", + "$id": "5243", "kind": "model", "name": "MessageContentRefusalObject", "namespace": "OpenAI", @@ -64914,17 +65377,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "5164" + "$ref": "5198" }, "properties": [ { - "$id": "5210", + "$id": "5244", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$ref": "809" + "$ref": "880" }, "optional": false, "readOnly": false, @@ -64939,12 +65402,12 @@ } }, { - "$id": "5211", + "$id": "5245", "kind": "property", "name": "refusal", "serializedName": "refusal", "type": { - "$id": "5212", + "$id": "5246", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64965,7 +65428,7 @@ ] }, "image_url": { - "$id": "5213", + "$id": "5247", "kind": "model", "name": "MessageContentImageUrlObject", "namespace": "OpenAI", @@ -64976,17 +65439,17 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "5164" + "$ref": "5198" }, "properties": [ { - "$id": "5214", + "$id": "5248", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$ref": "808" + "$ref": "879" }, "optional": false, "readOnly": false, @@ -65001,12 +65464,12 @@ } }, { - "$id": "5215", + "$id": "5249", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "5216", + "$id": "5250", "kind": "model", "name": "MessageContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -65015,13 +65478,13 @@ "decorators": [], "properties": [ { - "$id": "5217", + "$id": "5251", "kind": "property", "name": "url", "serializedName": "url", "doc": "The external URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.", "type": { - "$id": "5218", + "$id": "5252", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -65040,13 +65503,13 @@ } }, { - "$id": "5219", + "$id": "5253", "kind": "property", "name": "detail", "serializedName": "detail", "doc": "Specifies the detail level of the image. `low` uses fewer tokens, you can opt in to high resolution using `high`. Default value is `auto`", "type": { - "$ref": "819" + "$ref": "890" }, "optional": true, "readOnly": false, @@ -65094,20 +65557,20 @@ } }, { - "$id": "5220", + "$id": "5254", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they should be added to.", "type": { - "$id": "5221", + "$id": "5255", "kind": "nullable", "type": { - "$id": "5222", + "$id": "5256", "kind": "array", "name": "Array27", "valueType": { - "$id": "5223", + "$id": "5257", "kind": "model", "name": "CreateMessageRequestAttachment", "namespace": "OpenAI", @@ -65116,13 +65579,13 @@ "decorators": [], "properties": [ { - "$id": "5224", + "$id": "5258", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "5225", + "$id": "5259", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65141,25 +65604,25 @@ } }, { - "$id": "5226", + "$id": "5260", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "5227", + "$id": "5261", "kind": "array", "name": "Array28", "valueType": { - "$id": "5228", + "$id": "5262", "kind": "union", "name": "CreateMessageRequestAttachmentTool", "variantTypes": [ { - "$ref": "2123" + "$ref": "2263" }, { - "$id": "5229", + "$id": "5263", "kind": "model", "name": "AssistantToolsFileSearchTypeOnly", "namespace": "OpenAI", @@ -65168,13 +65631,13 @@ "decorators": [], "properties": [ { - "$id": "5230", + "$id": "5264", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool being defined: `file_search`", "type": { - "$ref": "1431" + "$ref": "1571" }, "optional": false, "readOnly": false, @@ -65229,13 +65692,13 @@ } }, { - "$id": "5231", + "$id": "5265", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -65252,52 +65715,52 @@ ] }, { - "$ref": "5164" + "$ref": "5198" }, { - "$ref": "5166" + "$ref": "5200" }, { - "$ref": "5169" + "$ref": "5203" }, { - "$ref": "5173" + "$ref": "5207" }, { - "$ref": "5178" + "$ref": "5212" }, { - "$ref": "5183" + "$ref": "5217" }, { - "$ref": "5185" + "$ref": "5219" }, { - "$ref": "5190" + "$ref": "5224" }, { - "$ref": "5197" + "$ref": "5231" }, { - "$ref": "5202" + "$ref": "5236" }, { - "$ref": "5209" + "$ref": "5243" }, { - "$ref": "5213" + "$ref": "5247" }, { - "$ref": "5216" + "$ref": "5250" }, { - "$ref": "5223" + "$ref": "5257" }, { - "$ref": "5229" + "$ref": "5263" }, { - "$id": "5232", + "$id": "5266", "kind": "model", "name": "MessageObject", "namespace": "OpenAI", @@ -65307,13 +65770,13 @@ "decorators": [], "properties": [ { - "$id": "5233", + "$id": "5267", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "5234", + "$id": "5268", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65332,13 +65795,13 @@ } }, { - "$id": "5235", + "$id": "5269", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, which is always `thread.message`.", "type": { - "$ref": "1433" + "$ref": "1573" }, "optional": false, "readOnly": false, @@ -65353,18 +65816,18 @@ } }, { - "$id": "5236", + "$id": "5270", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the message was created.", "type": { - "$id": "5237", + "$id": "5271", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5238", + "$id": "5272", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65386,13 +65849,13 @@ } }, { - "$id": "5239", + "$id": "5273", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The [thread](/docs/api-reference/threads) ID that this message belongs to.", "type": { - "$id": "5240", + "$id": "5274", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65411,13 +65874,13 @@ } }, { - "$id": "5241", + "$id": "5275", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the message, which can be either `in_progress`, `incomplete`, or `completed`.", "type": { - "$ref": "824" + "$ref": "895" }, "optional": false, "readOnly": false, @@ -65432,16 +65895,16 @@ } }, { - "$id": "5242", + "$id": "5276", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "On an incomplete message, details about why the message is incomplete.", "type": { - "$id": "5243", + "$id": "5277", "kind": "nullable", "type": { - "$id": "5244", + "$id": "5278", "kind": "model", "name": "MessageObjectIncompleteDetails1", "namespace": "OpenAI", @@ -65450,13 +65913,13 @@ "decorators": [], "properties": [ { - "$id": "5245", + "$id": "5279", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "The reason the message is incomplete.", "type": { - "$ref": "829" + "$ref": "900" }, "optional": false, "readOnly": false, @@ -65487,21 +65950,21 @@ } }, { - "$id": "5246", + "$id": "5280", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the message was completed.", "type": { - "$id": "5247", + "$id": "5281", "kind": "nullable", "type": { - "$id": "5248", + "$id": "5282", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5249", + "$id": "5283", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65525,21 +65988,21 @@ } }, { - "$id": "5250", + "$id": "5284", "kind": "property", "name": "incomplete_at", "serializedName": "incomplete_at", "doc": "The Unix timestamp (in seconds) for when the message was marked as incomplete.", "type": { - "$id": "5251", + "$id": "5285", "kind": "nullable", "type": { - "$id": "5252", + "$id": "5286", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5253", + "$id": "5287", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -65563,13 +66026,13 @@ } }, { - "$id": "5254", + "$id": "5288", "kind": "property", "name": "role", "serializedName": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", "type": { - "$ref": "836" + "$ref": "907" }, "optional": false, "readOnly": false, @@ -65584,13 +66047,13 @@ } }, { - "$id": "5255", + "$id": "5289", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$ref": "5163" + "$ref": "5197" }, "optional": false, "readOnly": true, @@ -65605,16 +66068,16 @@ } }, { - "$id": "5256", + "$id": "5290", "kind": "property", "name": "assistant_id", "serializedName": "assistant_id", "doc": "If applicable, the ID of the [assistant](/docs/api-reference/assistants) that authored this message.", "type": { - "$id": "5257", + "$id": "5291", "kind": "nullable", "type": { - "$id": "5258", + "$id": "5292", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65635,16 +66098,16 @@ } }, { - "$id": "5259", + "$id": "5293", "kind": "property", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the [run](/docs/api-reference/runs) associated with the creation of this message. Value is `null` when messages are created manually using the create message or create thread endpoints.", "type": { - "$id": "5260", + "$id": "5294", "kind": "nullable", "type": { - "$id": "5261", + "$id": "5295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65665,20 +66128,20 @@ } }, { - "$id": "5262", + "$id": "5296", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they were added to.", "type": { - "$id": "5263", + "$id": "5297", "kind": "nullable", "type": { - "$id": "5264", + "$id": "5298", "kind": "array", "name": "Array29", "valueType": { - "$id": "5265", + "$id": "5299", "kind": "model", "name": "MessageObjectAttachment", "namespace": "OpenAI", @@ -65687,13 +66150,13 @@ "decorators": [], "properties": [ { - "$id": "5266", + "$id": "5300", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "5267", + "$id": "5301", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65712,25 +66175,25 @@ } }, { - "$id": "5268", + "$id": "5302", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "5269", + "$id": "5303", "kind": "array", "name": "Array30", "valueType": { - "$id": "5270", + "$id": "5304", "kind": "union", "name": "MessageObjectAttachmentTool", "variantTypes": [ { - "$ref": "2123" + "$ref": "2263" }, { - "$ref": "5229" + "$ref": "5263" } ], "namespace": "", @@ -65771,13 +66234,13 @@ } }, { - "$id": "5271", + "$id": "5305", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": true, @@ -65794,13 +66257,13 @@ ] }, { - "$ref": "5244" + "$ref": "5278" }, { - "$ref": "5265" + "$ref": "5299" }, { - "$id": "5272", + "$id": "5306", "kind": "model", "name": "ListMessagesResponse", "namespace": "OpenAI", @@ -65809,12 +66272,12 @@ "decorators": [], "properties": [ { - "$id": "5273", + "$id": "5307", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1435" + "$ref": "1575" }, "optional": false, "readOnly": false, @@ -65829,16 +66292,16 @@ } }, { - "$id": "5274", + "$id": "5308", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "5275", + "$id": "5309", "kind": "array", "name": "ArrayMessageObject", "valueType": { - "$ref": "5232" + "$ref": "5266" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -65856,12 +66319,12 @@ } }, { - "$id": "5276", + "$id": "5310", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "5277", + "$id": "5311", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65880,12 +66343,12 @@ } }, { - "$id": "5278", + "$id": "5312", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "5279", + "$id": "5313", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65904,12 +66367,12 @@ } }, { - "$id": "5280", + "$id": "5314", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "5281", + "$id": "5315", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -65930,7 +66393,7 @@ ] }, { - "$id": "5282", + "$id": "5316", "kind": "model", "name": "ModifyMessageRequest", "namespace": "OpenAI", @@ -65939,13 +66402,13 @@ "decorators": [], "properties": [ { - "$id": "5283", + "$id": "5317", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -65962,7 +66425,7 @@ ] }, { - "$id": "5284", + "$id": "5318", "kind": "model", "name": "DeleteMessageResponse", "namespace": "OpenAI", @@ -65971,12 +66434,12 @@ "decorators": [], "properties": [ { - "$id": "5285", + "$id": "5319", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5286", + "$id": "5320", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65995,12 +66458,12 @@ } }, { - "$id": "5287", + "$id": "5321", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "5288", + "$id": "5322", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66019,12 +66482,12 @@ } }, { - "$id": "5289", + "$id": "5323", "kind": "property", "name": "object", "serializedName": "object", "type": { - "$ref": "1437" + "$ref": "1577" }, "optional": false, "readOnly": false, @@ -66041,7 +66504,7 @@ ] }, { - "$id": "5290", + "$id": "5324", "kind": "model", "name": "CreateModerationRequest", "namespace": "OpenAI", @@ -66050,37 +66513,37 @@ "decorators": [], "properties": [ { - "$id": "5291", + "$id": "5325", "kind": "property", "name": "input", "serializedName": "input", "doc": "Input (or inputs) to classify. Can be a single string, an array of strings, or\nan array of multi-modal input objects similar to other models.", "type": { - "$id": "5292", + "$id": "5326", "kind": "union", "name": "CreateModerationRequestInput", "variantTypes": [ { - "$id": "5293", + "$id": "5327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$ref": "2155" + "$ref": "2295" }, { - "$id": "5294", + "$id": "5328", "kind": "array", "name": "Array31", "valueType": { - "$id": "5295", + "$id": "5329", "kind": "union", "name": "CreateModerationRequestInput1", "variantTypes": [ { - "$id": "5296", + "$id": "5330", "kind": "model", "name": "CreateModerationRequestInput2", "namespace": "OpenAI", @@ -66089,13 +66552,13 @@ "decorators": [], "properties": [ { - "$id": "5297", + "$id": "5331", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_url`.", "type": { - "$ref": "1439" + "$ref": "1579" }, "optional": false, "readOnly": false, @@ -66110,13 +66573,13 @@ } }, { - "$id": "5298", + "$id": "5332", "kind": "property", "name": "image_url", "serializedName": "image_url", "doc": "Contains either an image URL or a data URL for a base64 encoded image.", "type": { - "$id": "5299", + "$id": "5333", "kind": "model", "name": "CreateModerationRequestInputImageUrl", "namespace": "OpenAI", @@ -66125,13 +66588,13 @@ "decorators": [], "properties": [ { - "$id": "5300", + "$id": "5334", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "5301", + "$id": "5335", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66166,7 +66629,7 @@ ] }, { - "$id": "5302", + "$id": "5336", "kind": "model", "name": "CreateModerationRequestInput3", "namespace": "OpenAI", @@ -66175,13 +66638,13 @@ "decorators": [], "properties": [ { - "$id": "5303", + "$id": "5337", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$ref": "1441" + "$ref": "1581" }, "optional": false, "readOnly": false, @@ -66196,13 +66659,13 @@ } }, { - "$id": "5304", + "$id": "5338", "kind": "property", "name": "text", "serializedName": "text", "doc": "A string of text to classify.", "type": { - "$id": "5305", + "$id": "5339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66246,13 +66709,13 @@ } }, { - "$id": "5306", + "$id": "5340", "kind": "property", "name": "model", "serializedName": "model", "doc": "The content moderation model you would like to use. Learn more in\n[the moderation guide](/docs/guides/moderation), and learn about\navailable models [here](/docs/models#moderation).", "type": { - "$ref": "840" + "$ref": "911" }, "optional": true, "readOnly": false, @@ -66269,16 +66732,16 @@ ] }, { - "$ref": "5296" + "$ref": "5330" }, { - "$ref": "5299" + "$ref": "5333" }, { - "$ref": "5302" + "$ref": "5336" }, { - "$id": "5307", + "$id": "5341", "kind": "model", "name": "CreateModerationResponse", "namespace": "OpenAI", @@ -66288,13 +66751,13 @@ "decorators": [], "properties": [ { - "$id": "5308", + "$id": "5342", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique identifier for the moderation request.", "type": { - "$id": "5309", + "$id": "5343", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66313,13 +66776,13 @@ } }, { - "$id": "5310", + "$id": "5344", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used to generate the moderation results.", "type": { - "$id": "5311", + "$id": "5345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66338,17 +66801,17 @@ } }, { - "$id": "5312", + "$id": "5346", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of moderation objects.", "type": { - "$id": "5313", + "$id": "5347", "kind": "array", "name": "ArrayCreateModerationResponseResult", "valueType": { - "$id": "5314", + "$id": "5348", "kind": "model", "name": "CreateModerationResponseResult", "namespace": "OpenAI", @@ -66357,13 +66820,13 @@ "decorators": [], "properties": [ { - "$id": "5315", + "$id": "5349", "kind": "property", "name": "flagged", "serializedName": "flagged", "doc": "Whether any of the below categories are flagged.", "type": { - "$id": "5316", + "$id": "5350", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66382,13 +66845,13 @@ } }, { - "$id": "5317", + "$id": "5351", "kind": "property", "name": "categories", "serializedName": "categories", "doc": "A list of the categories, and whether they are flagged or not.", "type": { - "$id": "5318", + "$id": "5352", "kind": "model", "name": "CreateModerationResponseResultCategories", "namespace": "OpenAI", @@ -66397,13 +66860,13 @@ "decorators": [], "properties": [ { - "$id": "5319", + "$id": "5353", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "Content that expresses, incites, or promotes hate based on race, gender, ethnicity, religion, nationality, sexual orientation, disability status, or caste. Hateful content aimed at non-protected groups (e.g., chess players) is harassment.", "type": { - "$id": "5320", + "$id": "5354", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66422,13 +66885,13 @@ } }, { - "$id": "5321", + "$id": "5355", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "Hateful content that also includes violence or serious harm towards the targeted group based on race, gender, ethnicity, religion, nationality, sexual orientation, disability status, or caste.", "type": { - "$id": "5322", + "$id": "5356", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66447,13 +66910,13 @@ } }, { - "$id": "5323", + "$id": "5357", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "Content that expresses, incites, or promotes harassing language towards any target.", "type": { - "$id": "5324", + "$id": "5358", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66472,13 +66935,13 @@ } }, { - "$id": "5325", + "$id": "5359", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "Harassment content that also includes violence or serious harm towards any target.", "type": { - "$id": "5326", + "$id": "5360", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66497,13 +66960,13 @@ } }, { - "$id": "5327", + "$id": "5361", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "Content that includes instructions or advice that facilitate the planning or execution of wrongdoing, or that gives advice or instruction on how to commit illicit acts. For example, \"how to shoplift\" would fit this category.", "type": { - "$id": "5328", + "$id": "5362", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66522,13 +66985,13 @@ } }, { - "$id": "5329", + "$id": "5363", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "Content that includes instructions or advice that facilitate the planning or execution of wrongdoing that also includes violence, or that gives advice or instruction on the procurement of any weapon.", "type": { - "$id": "5330", + "$id": "5364", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66547,13 +67010,13 @@ } }, { - "$id": "5331", + "$id": "5365", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "Content that promotes, encourages, or depicts acts of self-harm, such as suicide, cutting, and eating disorders.", "type": { - "$id": "5332", + "$id": "5366", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66572,13 +67035,13 @@ } }, { - "$id": "5333", + "$id": "5367", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "Content where the speaker expresses that they are engaging or intend to engage in acts of self-harm, such as suicide, cutting, and eating disorders.", "type": { - "$id": "5334", + "$id": "5368", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66597,13 +67060,13 @@ } }, { - "$id": "5335", + "$id": "5369", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "Content that encourages performing acts of self-harm, such as suicide, cutting, and eating disorders, or that gives instructions or advice on how to commit such acts.", "type": { - "$id": "5336", + "$id": "5370", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66622,13 +67085,13 @@ } }, { - "$id": "5337", + "$id": "5371", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "Content meant to arouse sexual excitement, such as the description of sexual activity, or that promotes sexual services (excluding sex education and wellness).", "type": { - "$id": "5338", + "$id": "5372", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66647,13 +67110,13 @@ } }, { - "$id": "5339", + "$id": "5373", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "Sexual content that includes an individual who is under 18 years old.", "type": { - "$id": "5340", + "$id": "5374", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66672,13 +67135,13 @@ } }, { - "$id": "5341", + "$id": "5375", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "Content that depicts death, violence, or physical injury.", "type": { - "$id": "5342", + "$id": "5376", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66697,13 +67160,13 @@ } }, { - "$id": "5343", + "$id": "5377", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "Content that depicts death, violence, or physical injury in graphic detail.", "type": { - "$id": "5344", + "$id": "5378", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66736,13 +67199,13 @@ } }, { - "$id": "5345", + "$id": "5379", "kind": "property", "name": "category_scores", "serializedName": "category_scores", "doc": "A list of the categories along with their scores as predicted by model.", "type": { - "$id": "5346", + "$id": "5380", "kind": "model", "name": "CreateModerationResponseResultCategoryScores", "namespace": "OpenAI", @@ -66751,13 +67214,13 @@ "decorators": [], "properties": [ { - "$id": "5347", + "$id": "5381", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The score for the category 'hate'.", "type": { - "$id": "5348", + "$id": "5382", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66776,13 +67239,13 @@ } }, { - "$id": "5349", + "$id": "5383", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The score for the category 'hate/threatening'.", "type": { - "$id": "5350", + "$id": "5384", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66801,13 +67264,13 @@ } }, { - "$id": "5351", + "$id": "5385", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The score for the category 'harassment'.", "type": { - "$id": "5352", + "$id": "5386", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66826,13 +67289,13 @@ } }, { - "$id": "5353", + "$id": "5387", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The score for the category 'harassment/threatening'.", "type": { - "$id": "5354", + "$id": "5388", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66851,13 +67314,13 @@ } }, { - "$id": "5355", + "$id": "5389", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The score for the category 'illicit'.", "type": { - "$id": "5356", + "$id": "5390", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66876,13 +67339,13 @@ } }, { - "$id": "5357", + "$id": "5391", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The score for the category 'illicit/violent'.", "type": { - "$id": "5358", + "$id": "5392", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66901,13 +67364,13 @@ } }, { - "$id": "5359", + "$id": "5393", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The score for the category 'self-harm'.", "type": { - "$id": "5360", + "$id": "5394", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66926,13 +67389,13 @@ } }, { - "$id": "5361", + "$id": "5395", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The score for the category 'self-harm/intent'.", "type": { - "$id": "5362", + "$id": "5396", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66951,13 +67414,13 @@ } }, { - "$id": "5363", + "$id": "5397", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The score for the category 'self-harm/instructions'.", "type": { - "$id": "5364", + "$id": "5398", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -66976,13 +67439,13 @@ } }, { - "$id": "5365", + "$id": "5399", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The score for the category 'sexual'.", "type": { - "$id": "5366", + "$id": "5400", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -67001,13 +67464,13 @@ } }, { - "$id": "5367", + "$id": "5401", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The score for the category 'sexual/minors'.", "type": { - "$id": "5368", + "$id": "5402", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -67026,13 +67489,13 @@ } }, { - "$id": "5369", + "$id": "5403", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The score for the category 'violence'.", "type": { - "$id": "5370", + "$id": "5404", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -67051,13 +67514,13 @@ } }, { - "$id": "5371", + "$id": "5405", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The score for the category 'violence/graphic'.", "type": { - "$id": "5372", + "$id": "5406", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -67090,13 +67553,13 @@ } }, { - "$id": "5373", + "$id": "5407", "kind": "property", "name": "category_applied_input_types", "serializedName": "category_applied_input_types", "doc": "A list of the categories along with the input type(s) that the score applies to.", "type": { - "$id": "5374", + "$id": "5408", "kind": "model", "name": "CreateModerationResponseResultCategoryAppliedInputTypes", "namespace": "OpenAI", @@ -67105,25 +67568,25 @@ "decorators": [], "properties": [ { - "$id": "5375", + "$id": "5409", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The applied input type(s) for the category 'hate'.", "type": { - "$id": "5376", + "$id": "5410", "kind": "array", "name": "Array32", "valueType": { - "$id": "5377", + "$id": "5411", "kind": "enumvalue", "name": "text", "value": "text", "valueType": { - "$ref": "847" + "$ref": "918" }, "enumType": { - "$ref": "846" + "$ref": "917" }, "decorators": [] }, @@ -67143,13 +67606,13 @@ } }, { - "$id": "5378", + "$id": "5412", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The applied input type(s) for the category 'hate/threatening'.", "type": { - "$ref": "5376" + "$ref": "5410" }, "optional": false, "readOnly": false, @@ -67164,13 +67627,13 @@ } }, { - "$id": "5379", + "$id": "5413", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The applied input type(s) for the category 'harassment'.", "type": { - "$ref": "5376" + "$ref": "5410" }, "optional": false, "readOnly": false, @@ -67185,13 +67648,13 @@ } }, { - "$id": "5380", + "$id": "5414", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The applied input type(s) for the category 'harassment/threatening'.", "type": { - "$ref": "5376" + "$ref": "5410" }, "optional": false, "readOnly": false, @@ -67206,13 +67669,13 @@ } }, { - "$id": "5381", + "$id": "5415", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The applied input type(s) for the category 'illicit'.", "type": { - "$ref": "5376" + "$ref": "5410" }, "optional": false, "readOnly": false, @@ -67227,13 +67690,13 @@ } }, { - "$id": "5382", + "$id": "5416", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The applied input type(s) for the category 'illicit/violent'.", "type": { - "$ref": "5376" + "$ref": "5410" }, "optional": false, "readOnly": false, @@ -67248,25 +67711,25 @@ } }, { - "$id": "5383", + "$id": "5417", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The applied input type(s) for the category 'self-harm'.", "type": { - "$id": "5384", + "$id": "5418", "kind": "array", "name": "Array33", "valueType": { - "$id": "5385", + "$id": "5419", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarm", "variantTypes": [ { - "$ref": "5377" + "$ref": "5411" }, { - "$ref": "849" + "$ref": "920" } ], "namespace": "", @@ -67288,25 +67751,25 @@ } }, { - "$id": "5386", + "$id": "5420", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The applied input type(s) for the category 'self-harm/intent'.", "type": { - "$id": "5387", + "$id": "5421", "kind": "array", "name": "Array34", "valueType": { - "$id": "5388", + "$id": "5422", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntent", "variantTypes": [ { - "$ref": "5377" + "$ref": "5411" }, { - "$ref": "849" + "$ref": "920" } ], "namespace": "", @@ -67328,25 +67791,25 @@ } }, { - "$id": "5389", + "$id": "5423", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The applied input type(s) for the category 'self-harm/instructions'.", "type": { - "$id": "5390", + "$id": "5424", "kind": "array", "name": "Array35", "valueType": { - "$id": "5391", + "$id": "5425", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction", "variantTypes": [ { - "$ref": "5377" + "$ref": "5411" }, { - "$ref": "849" + "$ref": "920" } ], "namespace": "", @@ -67368,25 +67831,25 @@ } }, { - "$id": "5392", + "$id": "5426", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The applied input type(s) for the category 'sexual'.", "type": { - "$id": "5393", + "$id": "5427", "kind": "array", "name": "Array36", "valueType": { - "$id": "5394", + "$id": "5428", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSexual", "variantTypes": [ { - "$ref": "5377" + "$ref": "5411" }, { - "$ref": "849" + "$ref": "920" } ], "namespace": "", @@ -67408,13 +67871,13 @@ } }, { - "$id": "5395", + "$id": "5429", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The applied input type(s) for the category 'sexual/minors'.", "type": { - "$ref": "5376" + "$ref": "5410" }, "optional": false, "readOnly": false, @@ -67429,25 +67892,25 @@ } }, { - "$id": "5396", + "$id": "5430", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The applied input type(s) for the category 'violence'.", "type": { - "$id": "5397", + "$id": "5431", "kind": "array", "name": "Array37", "valueType": { - "$id": "5398", + "$id": "5432", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolence", "variantTypes": [ { - "$ref": "5377" + "$ref": "5411" }, { - "$ref": "849" + "$ref": "920" } ], "namespace": "", @@ -67469,25 +67932,25 @@ } }, { - "$id": "5399", + "$id": "5433", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The applied input type(s) for the category 'violence/graphic'.", "type": { - "$id": "5400", + "$id": "5434", "kind": "array", "name": "Array38", "valueType": { - "$id": "5401", + "$id": "5435", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphic", "variantTypes": [ { - "$ref": "5377" + "$ref": "5411" }, { - "$ref": "849" + "$ref": "920" } ], "namespace": "", @@ -67542,19 +68005,19 @@ ] }, { - "$ref": "5314" + "$ref": "5348" }, { - "$ref": "5318" + "$ref": "5352" }, { - "$ref": "5346" + "$ref": "5380" }, { - "$ref": "5374" + "$ref": "5408" }, { - "$id": "5402", + "$id": "5436", "kind": "model", "name": "CreateThreadAndRunRequest", "namespace": "OpenAI", @@ -67563,13 +68026,13 @@ "decorators": [], "properties": [ { - "$id": "5403", + "$id": "5437", "kind": "property", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the [assistant](/docs/api-reference/assistants) to use to execute this run.", "type": { - "$id": "5404", + "$id": "5438", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67588,12 +68051,12 @@ } }, { - "$id": "5405", + "$id": "5439", "kind": "property", "name": "thread", "serializedName": "thread", "type": { - "$id": "5406", + "$id": "5440", "kind": "model", "name": "CreateThreadRequest", "namespace": "OpenAI", @@ -67603,17 +68066,17 @@ "decorators": [], "properties": [ { - "$id": "5407", + "$id": "5441", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of [messages](/docs/api-reference/messages) to start the thread with.", "type": { - "$id": "5408", + "$id": "5442", "kind": "array", "name": "ArrayCreateMessageRequest", "valueType": { - "$ref": "5160" + "$ref": "5194" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -67631,16 +68094,16 @@ } }, { - "$id": "5409", + "$id": "5443", "kind": "property", "name": "tool_resources", "serializedName": "tool_resources", "doc": "A set of resources that are made available to the assistant's tools in this thread. The resources are specific to the type of tool. For example, the `code_interpreter` tool requires a list of file IDs, while the `file_search` tool requires a list of vector store IDs.", "type": { - "$id": "5410", + "$id": "5444", "kind": "nullable", "type": { - "$id": "5411", + "$id": "5445", "kind": "model", "name": "CreateThreadRequestToolResources1", "namespace": "OpenAI", @@ -67649,12 +68112,12 @@ "decorators": [], "properties": [ { - "$id": "5412", + "$id": "5446", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "5413", + "$id": "5447", "kind": "model", "name": "CreateThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -67663,13 +68126,13 @@ "decorators": [], "properties": [ { - "$id": "5414", + "$id": "5448", "kind": "property", "name": "file_ids", "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -67698,12 +68161,12 @@ } }, { - "$id": "5415", + "$id": "5449", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2235" + "$ref": "2375" }, "optional": true, "readOnly": false, @@ -67734,13 +68197,13 @@ } }, { - "$id": "5416", + "$id": "5450", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -67769,449 +68232,16 @@ } }, { - "$id": "5417", + "$id": "5451", "kind": "property", "name": "model", "serializedName": "model", "doc": "The ID of the [Model](/docs/api-reference/models) to be used to execute this run. If a value is provided here, it will override the model associated with the assistant. If not, the model associated with the assistant will be used.", "type": { - "$id": "5418", + "$id": "5452", "kind": "nullable", "type": { - "$id": "5419", - "kind": "enum", - "name": "CreateThreadAndRunRequestModel", - "crossLanguageDefinitionId": "OpenAI.CreateThreadAndRunRequest.model.anonymous", - "valueType": { - "$id": "5420", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "values": [ - { - "$id": "5421", - "kind": "enumvalue", - "name": "gpt-4.1", - "value": "gpt-4.1", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5422", - "kind": "enumvalue", - "name": "gpt-4.1-mini", - "value": "gpt-4.1-mini", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5423", - "kind": "enumvalue", - "name": "gpt-4.1-nano", - "value": "gpt-4.1-nano", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5424", - "kind": "enumvalue", - "name": "gpt-4.1-2025-04-14", - "value": "gpt-4.1-2025-04-14", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5425", - "kind": "enumvalue", - "name": "gpt-4.1-mini-2025-04-14", - "value": "gpt-4.1-mini-2025-04-14", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5426", - "kind": "enumvalue", - "name": "gpt-4.1-nano-2025-04-14", - "value": "gpt-4.1-nano-2025-04-14", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5427", - "kind": "enumvalue", - "name": "gpt-4o", - "value": "gpt-4o", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5428", - "kind": "enumvalue", - "name": "gpt-4o-2024-11-20", - "value": "gpt-4o-2024-11-20", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5429", - "kind": "enumvalue", - "name": "gpt-4o-2024-08-06", - "value": "gpt-4o-2024-08-06", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5430", - "kind": "enumvalue", - "name": "gpt-4o-2024-05-13", - "value": "gpt-4o-2024-05-13", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5431", - "kind": "enumvalue", - "name": "gpt-4o-mini", - "value": "gpt-4o-mini", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5432", - "kind": "enumvalue", - "name": "gpt-4o-mini-2024-07-18", - "value": "gpt-4o-mini-2024-07-18", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5433", - "kind": "enumvalue", - "name": "gpt-4.5-preview", - "value": "gpt-4.5-preview", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5434", - "kind": "enumvalue", - "name": "gpt-4.5-preview-2025-02-27", - "value": "gpt-4.5-preview-2025-02-27", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5435", - "kind": "enumvalue", - "name": "gpt-4-turbo", - "value": "gpt-4-turbo", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5436", - "kind": "enumvalue", - "name": "gpt-4-turbo-2024-04-09", - "value": "gpt-4-turbo-2024-04-09", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5437", - "kind": "enumvalue", - "name": "gpt-4-0125-preview", - "value": "gpt-4-0125-preview", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5438", - "kind": "enumvalue", - "name": "gpt-4-turbo-preview", - "value": "gpt-4-turbo-preview", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5439", - "kind": "enumvalue", - "name": "gpt-4-1106-preview", - "value": "gpt-4-1106-preview", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5440", - "kind": "enumvalue", - "name": "gpt-4-vision-preview", - "value": "gpt-4-vision-preview", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5441", - "kind": "enumvalue", - "name": "gpt-4", - "value": "gpt-4", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5442", - "kind": "enumvalue", - "name": "gpt-4-0314", - "value": "gpt-4-0314", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5443", - "kind": "enumvalue", - "name": "gpt-4-0613", - "value": "gpt-4-0613", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5444", - "kind": "enumvalue", - "name": "gpt-4-32k", - "value": "gpt-4-32k", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5445", - "kind": "enumvalue", - "name": "gpt-4-32k-0314", - "value": "gpt-4-32k-0314", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5446", - "kind": "enumvalue", - "name": "gpt-4-32k-0613", - "value": "gpt-4-32k-0613", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5447", - "kind": "enumvalue", - "name": "gpt-3.5-turbo", - "value": "gpt-3.5-turbo", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5448", - "kind": "enumvalue", - "name": "gpt-3.5-turbo-16k", - "value": "gpt-3.5-turbo-16k", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5449", - "kind": "enumvalue", - "name": "gpt-3.5-turbo-0613", - "value": "gpt-3.5-turbo-0613", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5450", - "kind": "enumvalue", - "name": "gpt-3.5-turbo-1106", - "value": "gpt-3.5-turbo-1106", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5451", - "kind": "enumvalue", - "name": "gpt-3.5-turbo-0125", - "value": "gpt-3.5-turbo-0125", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - }, - { - "$id": "5452", - "kind": "enumvalue", - "name": "gpt-3.5-turbo-16k-0613", - "value": "gpt-3.5-turbo-16k-0613", - "valueType": { - "$ref": "5420" - }, - "enumType": { - "$ref": "5419" - }, - "decorators": [] - } - ], - "namespace": "", - "isFixed": false, - "isFlags": false, - "usage": "Input,Json", - "decorators": [] + "$ref": "921" }, "namespace": "" }, @@ -68267,7 +68297,7 @@ "$id": "5457", "kind": "nullable", "type": { - "$ref": "2120" + "$ref": "2260" }, "namespace": "" }, @@ -68322,7 +68352,7 @@ "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -68356,7 +68386,7 @@ "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2158" + "$ref": "2298" }, "optional": true, "readOnly": false, @@ -68393,7 +68423,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -68582,7 +68612,7 @@ "serializedName": "type", "doc": "The truncation strategy to use for the thread. The default is `auto`. If set to `last_messages`, the thread will be truncated to the n most recent messages in the thread. When set to `auto`, messages in the middle of the thread will be dropped to fit the context length of the model, `max_prompt_tokens`.", "type": { - "$ref": "850" + "$ref": "955" }, "optional": false, "readOnly": false, @@ -68656,7 +68686,7 @@ "name": "AssistantsApiToolChoiceOption", "variantTypes": [ { - "$ref": "854" + "$ref": "959" }, { "$id": "5491", @@ -68675,7 +68705,7 @@ "serializedName": "type", "doc": "The type of the tool. If type is `function`, the function name must be set", "type": { - "$ref": "859" + "$ref": "964" }, "optional": false, "readOnly": false, @@ -68802,7 +68832,7 @@ "$id": "5501", "kind": "nullable", "type": { - "$ref": "2173" + "$ref": "2313" }, "namespace": "" }, @@ -68821,13 +68851,13 @@ ] }, { - "$ref": "5406" + "$ref": "5440" }, { - "$ref": "5411" + "$ref": "5445" }, { - "$ref": "5413" + "$ref": "5447" }, { "$ref": "5460" @@ -68886,7 +68916,7 @@ "serializedName": "object", "doc": "The object type, which is always `thread.run`.", "type": { - "$ref": "1443" + "$ref": "1583" }, "optional": false, "readOnly": false, @@ -68990,7 +69020,7 @@ "serializedName": "status", "doc": "The status of the run, which can be either `queued`, `in_progress`, `requires_action`, `cancelling`, `cancelled`, `failed`, `completed`, `incomplete`, or `expired`.", "type": { - "$ref": "864" + "$ref": "969" }, "optional": false, "readOnly": false, @@ -69029,7 +69059,7 @@ "serializedName": "type", "doc": "For now, this is always `submit_tool_outputs`.", "type": { - "$ref": "1445" + "$ref": "1585" }, "optional": false, "readOnly": false, @@ -69110,7 +69140,7 @@ "serializedName": "type", "doc": "The type of tool call the output is required for. For now, this is always `function`.", "type": { - "$ref": "1447" + "$ref": "1587" }, "optional": false, "readOnly": false, @@ -69275,7 +69305,7 @@ "serializedName": "code", "doc": "One of `server_error`, `rate_limit_exceeded`, or `invalid_prompt`.", "type": { - "$ref": "875" + "$ref": "980" }, "optional": false, "readOnly": false, @@ -69545,7 +69575,7 @@ "serializedName": "reason", "doc": "The reason why the run is incomplete. This will point to which specific token limit was reached over the course of the run.", "type": { - "$ref": "880" + "$ref": "985" }, "optional": true, "readOnly": false, @@ -69632,7 +69662,7 @@ "serializedName": "tools", "doc": "The list of tools that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$ref": "2120" + "$ref": "2260" }, "optional": false, "readOnly": true, @@ -69653,7 +69683,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": true, @@ -69986,7 +70016,7 @@ "$id": "5597", "kind": "nullable", "type": { - "$ref": "2173" + "$ref": "2313" }, "namespace": "" }, @@ -70069,7 +70099,7 @@ "$id": "5602", "kind": "nullable", "type": { - "$ref": "19" + "$ref": "15" }, "namespace": "" }, @@ -70094,7 +70124,7 @@ "$id": "5604", "kind": "nullable", "type": { - "$ref": "57" + "$ref": "53" }, "namespace": "" }, @@ -70180,7 +70210,7 @@ "$id": "5612", "kind": "nullable", "type": { - "$ref": "5408" + "$ref": "5442" }, "namespace": "" }, @@ -70206,7 +70236,7 @@ "$id": "5614", "kind": "nullable", "type": { - "$ref": "2120" + "$ref": "2260" }, "namespace": "" }, @@ -70229,7 +70259,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -70483,7 +70513,7 @@ "$id": "5639", "kind": "nullable", "type": { - "$ref": "2173" + "$ref": "2313" }, "namespace": "" }, @@ -70516,7 +70546,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1449" + "$ref": "1589" }, "optional": false, "readOnly": false, @@ -70647,7 +70677,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -70808,7 +70838,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1451" + "$ref": "1591" }, "optional": false, "readOnly": false, @@ -70873,7 +70903,7 @@ "serializedName": "object", "doc": "The object type, which is always `thread.run.step`.", "type": { - "$ref": "1453" + "$ref": "1593" }, "optional": false, "readOnly": false, @@ -71002,7 +71032,7 @@ "serializedName": "type", "doc": "The type of run step, which can be either `message_creation` or `tool_calls`.", "type": { - "$ref": "887" + "$ref": "989" }, "optional": false, "readOnly": false, @@ -71023,7 +71053,7 @@ "serializedName": "status", "doc": "The status of the run step, which can be either `in_progress`, `cancelled`, `failed`, `completed`, or `expired`.", "type": { - "$ref": "891" + "$ref": "993" }, "optional": false, "readOnly": false, @@ -71059,7 +71089,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "898" + "$ref": "1000" }, "optional": false, "readOnly": false, @@ -71100,7 +71130,7 @@ "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "900" + "$ref": "1002" }, "optional": false, "readOnly": false, @@ -71190,7 +71220,7 @@ "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "901" + "$ref": "1003" }, "optional": false, "readOnly": false, @@ -71230,7 +71260,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "902" + "$ref": "1004" }, "optional": false, "readOnly": false, @@ -71296,7 +71326,7 @@ "serializedName": "type", "doc": "The type of tool call. This is always going to be `code_interpreter` for this type of tool call.", "type": { - "$ref": "904" + "$ref": "1006" }, "optional": false, "readOnly": false, @@ -71376,7 +71406,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "907" + "$ref": "1009" }, "optional": false, "readOnly": false, @@ -71417,7 +71447,7 @@ "serializedName": "type", "doc": "Always `logs`.", "type": { - "$ref": "909" + "$ref": "1011" }, "optional": false, "readOnly": false, @@ -71478,7 +71508,7 @@ "serializedName": "type", "doc": "Always `image`.", "type": { - "$ref": "910" + "$ref": "1012" }, "optional": false, "readOnly": false, @@ -71600,7 +71630,7 @@ "serializedName": "type", "doc": "The type of tool call. This is always going to be `file_search` for this type of tool call.", "type": { - "$ref": "905" + "$ref": "1007" }, "optional": false, "readOnly": false, @@ -71650,7 +71680,7 @@ "name": "ranker", "serializedName": "ranker", "type": { - "$ref": "10" + "$ref": "6" }, "optional": false, "readOnly": false, @@ -71829,10 +71859,10 @@ "name": "text", "value": "text", "valueType": { - "$ref": "912" + "$ref": "1014" }, "enumType": { - "$ref": "911" + "$ref": "1013" }, "decorators": [] }, @@ -71943,7 +71973,7 @@ "serializedName": "type", "doc": "The type of tool call. This is always going to be `function` for this type of tool call.", "type": { - "$ref": "906" + "$ref": "1008" }, "optional": false, "readOnly": false, @@ -72126,7 +72156,7 @@ "serializedName": "code", "doc": "One of `server_error` or `rate_limit_exceeded`.", "type": { - "$ref": "914" + "$ref": "1016" }, "optional": false, "readOnly": false, @@ -72340,7 +72370,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": true, @@ -72659,7 +72689,7 @@ "serializedName": "object", "doc": "The object type, which is always `thread`.", "type": { - "$ref": "1455" + "$ref": "1595" }, "optional": false, "readOnly": false, @@ -72745,7 +72775,7 @@ "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -72794,7 +72824,7 @@ "serializedName": "vector_store_ids", "doc": "The [vector store](/docs/api-reference/vector-stores/object) attached to this thread. There can be a maximum of 1 vector store attached to the thread.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -72845,7 +72875,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": true, @@ -72918,7 +72948,7 @@ "serializedName": "file_ids", "doc": "A list of [file](/docs/api-reference/files) IDs made available to the `code_interpreter` tool. There can be a maximum of 20 files associated with the tool.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -72952,7 +72982,7 @@ "name": "file_search", "serializedName": "file_search", "type": { - "$ref": "2158" + "$ref": "2298" }, "optional": true, "readOnly": false, @@ -72989,7 +73019,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -73074,7 +73104,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1457" + "$ref": "1597" }, "optional": false, "readOnly": false, @@ -73105,7 +73135,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1459" + "$ref": "1599" }, "optional": false, "readOnly": false, @@ -73170,7 +73200,7 @@ "serializedName": "object", "doc": "The object type, which is always `vector_store`.", "type": { - "$ref": "1461" + "$ref": "1601" }, "optional": false, "readOnly": false, @@ -73427,7 +73457,7 @@ "serializedName": "status", "doc": "The status of the vector store, which can be either `expired`, `in_progress`, or `completed`. A status of `completed` indicates that the vector store is ready for use.", "type": { - "$ref": "918" + "$ref": "1020" }, "optional": false, "readOnly": false, @@ -73468,10 +73498,10 @@ "name": "last_active_at", "value": "last_active_at", "valueType": { - "$ref": "924" + "$ref": "1026" }, "enumType": { - "$ref": "923" + "$ref": "1025" }, "decorators": [] }, @@ -73609,7 +73639,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": true, @@ -73739,7 +73769,7 @@ "serializedName": "file_ids", "doc": "A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -73810,10 +73840,10 @@ "name": "CreateVectorStoreRequestChunkingStrategy", "variantTypes": [ { - "$ref": "2244" + "$ref": "2384" }, { - "$ref": "2246" + "$ref": "2386" } ], "namespace": "", @@ -73838,7 +73868,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -73925,7 +73955,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -74004,7 +74034,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1463" + "$ref": "1603" }, "optional": false, "readOnly": false, @@ -74036,7 +74066,7 @@ "serializedName": "file_ids", "doc": "A list of [File](/docs/api-reference/files) IDs that the vector store should use. Useful for tools like `file_search` that can access files.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -74056,7 +74086,7 @@ "name": "chunking_strategy", "serializedName": "chunking_strategy", "type": { - "$ref": "2242" + "$ref": "2382" }, "optional": true, "readOnly": false, @@ -74079,7 +74109,7 @@ "$id": "5899", "kind": "nullable", "type": { - "$ref": "3442" + "$ref": "3575" }, "namespace": "" }, @@ -74139,7 +74169,7 @@ "serializedName": "object", "doc": "The object type, which is always `vector_store.file_batch`.", "type": { - "$ref": "1465" + "$ref": "1605" }, "optional": false, "readOnly": false, @@ -74218,7 +74248,7 @@ "serializedName": "status", "doc": "The status of the vector store files batch, which can be either `in_progress`, `completed`, `cancelled` or `failed`.", "type": { - "$ref": "926" + "$ref": "1028" }, "optional": false, "readOnly": false, @@ -74405,7 +74435,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1467" + "$ref": "1607" }, "optional": false, "readOnly": false, @@ -74470,7 +74500,7 @@ "serializedName": "object", "doc": "The object type, which is always `vector_store.file`.", "type": { - "$ref": "1469" + "$ref": "1609" }, "optional": false, "readOnly": false, @@ -74574,7 +74604,7 @@ "serializedName": "status", "doc": "The status of the vector store file, which can be either `in_progress`, `completed`, `cancelled`, or `failed`. The status `completed` indicates that the vector store file is ready for use.", "type": { - "$ref": "938" + "$ref": "1034" }, "optional": false, "readOnly": false, @@ -74613,7 +74643,7 @@ "serializedName": "code", "doc": "One of `server_error` or `rate_limit_exceeded`.", "type": { - "$ref": "944" + "$ref": "1040" }, "optional": false, "readOnly": false, @@ -74688,7 +74718,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "949" + "$ref": "1045" }, "optional": false, "readOnly": false, @@ -74729,7 +74759,7 @@ "serializedName": "type", "doc": "Always `other`.", "type": { - "$ref": "952" + "$ref": "1048" }, "optional": false, "readOnly": false, @@ -74765,7 +74795,7 @@ "serializedName": "type", "doc": "Always `static`.", "type": { - "$ref": "951" + "$ref": "1047" }, "optional": false, "readOnly": false, @@ -74785,7 +74815,7 @@ "name": "static", "serializedName": "static", "type": { - "$ref": "2249" + "$ref": "2389" }, "optional": false, "readOnly": false, @@ -74824,7 +74854,7 @@ "$id": "5953", "kind": "nullable", "type": { - "$ref": "3442" + "$ref": "3575" }, "namespace": "" }, @@ -74986,7 +75016,7 @@ "name": "chunking_strategy", "serializedName": "chunking_strategy", "type": { - "$ref": "2242" + "$ref": "2382" }, "optional": true, "readOnly": false, @@ -75009,7 +75039,7 @@ "$id": "5965", "kind": "nullable", "type": { - "$ref": "3442" + "$ref": "3575" }, "namespace": "" }, @@ -75090,7 +75120,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1471" + "$ref": "1611" }, "optional": false, "readOnly": false, @@ -75124,7 +75154,7 @@ "$id": "5974", "kind": "nullable", "type": { - "$ref": "3442" + "$ref": "3575" }, "namespace": "" }, @@ -75159,7 +75189,7 @@ "serializedName": "object", "doc": "The object type, which is always `vector_store.file_content.page`", "type": { - "$ref": "1473" + "$ref": "1613" }, "optional": false, "readOnly": false, @@ -75334,7 +75364,7 @@ "name": "ranker", "serializedName": "ranker", "type": { - "$ref": "953" + "$ref": "1049" }, "optional": true, "readOnly": false, @@ -75402,7 +75432,7 @@ "decorators": [] }, { - "$ref": "2155" + "$ref": "2295" } ], "namespace": "", @@ -75482,10 +75512,10 @@ "name": "VectorStoreSearchRequestFilters", "variantTypes": [ { - "$ref": "3844" + "$ref": "3977" }, { - "$ref": "3865" + "$ref": "3998" } ], "namespace": "", @@ -75542,7 +75572,7 @@ "serializedName": "object", "doc": "The object type, which is always `vector_store.search_results.page`", "type": { - "$ref": "1475" + "$ref": "1615" }, "optional": false, "readOnly": false, @@ -75562,7 +75592,7 @@ "name": "search_query", "serializedName": "search_query", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -75679,7 +75709,7 @@ "$id": "6017", "kind": "nullable", "type": { - "$ref": "3442" + "$ref": "3575" }, "namespace": "" }, @@ -75721,7 +75751,7 @@ "serializedName": "type", "doc": "The type of content.", "type": { - "$ref": "1477" + "$ref": "1617" }, "optional": false, "readOnly": false, @@ -75873,7 +75903,7 @@ "serializedName": "model", "doc": "ID of the model to use. You can use the [List models](/docs/api-reference/models/list) API to see all of your available models, or see our [Model overview](/docs/models) for descriptions of them.", "type": { - "$ref": "957" + "$ref": "1053" }, "optional": false, "readOnly": false, @@ -75909,13 +75939,13 @@ "decorators": [] }, { - "$ref": "2155" + "$ref": "2295" }, { - "$ref": "2375" + "$ref": "2515" }, { - "$ref": "3012" + "$ref": "3145" } ], "namespace": "", @@ -76035,7 +76065,7 @@ "$id": "6045", "kind": "nullable", "type": { - "$ref": "2843" + "$ref": "2983" }, "namespace": "" }, @@ -76210,7 +76240,7 @@ "$id": "6062", "kind": "nullable", "type": { - "$ref": "2839" + "$ref": "2979" }, "namespace": "" }, @@ -76265,7 +76295,7 @@ "$id": "6067", "kind": "nullable", "type": { - "$ref": "2869" + "$ref": "3009" }, "namespace": "" }, @@ -76459,7 +76489,7 @@ "serializedName": "finish_reason", "doc": "The reason the model stopped generating tokens. This will be `stop` if the model hit a natural stop point or a provided stop sequence,\n`length` if the maximum number of tokens specified in the request was reached,\nor `content_filter` if content was omitted due to a flag from our content filters.", "type": { - "$ref": "962" + "$ref": "1058" }, "optional": false, "readOnly": false, @@ -76520,7 +76550,7 @@ "name": "text_offset", "serializedName": "text_offset", "type": { - "$ref": "2375" + "$ref": "2515" }, "optional": true, "readOnly": false, @@ -76540,7 +76570,7 @@ "name": "token_logprobs", "serializedName": "token_logprobs", "type": { - "$ref": "2396" + "$ref": "2536" }, "optional": true, "readOnly": false, @@ -76560,7 +76590,7 @@ "name": "tokens", "serializedName": "tokens", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -76764,7 +76794,7 @@ "serializedName": "object", "doc": "The object type, which is always \"text_completion\"", "type": { - "$ref": "1479" + "$ref": "1619" }, "optional": false, "readOnly": false, @@ -76784,7 +76814,7 @@ "name": "usage", "serializedName": "usage", "type": { - "$ref": "2633" + "$ref": "2773" }, "optional": true, "readOnly": false, @@ -76821,7 +76851,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1481" + "$ref": "1621" }, "optional": false, "readOnly": false, @@ -76919,7 +76949,7 @@ "serializedName": "object", "doc": "The object type, which is always \"model\".", "type": { - "$ref": "1483" + "$ref": "1623" }, "optional": false, "readOnly": false, @@ -77043,7 +77073,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1485" + "$ref": "1625" }, "optional": false, "readOnly": false, @@ -77075,7 +77105,7 @@ "serializedName": "type", "doc": "The type of event.", "type": { - "$ref": "967" + "$ref": "1063" }, "optional": false, "readOnly": false, @@ -77140,7 +77170,7 @@ "serializedName": "type", "doc": "The event type, must be `session.update`.", "type": { - "$ref": "969" + "$ref": "1065" }, "optional": false, "readOnly": false, @@ -77178,7 +77208,7 @@ "kind": "array", "name": "ArrayRealtimeModality", "valueType": { - "$ref": "981" + "$ref": "1077" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -77225,7 +77255,7 @@ "name": "model", "serializedName": "model", "type": { - "$ref": "985" + "$ref": "1081" }, "optional": true, "readOnly": false, @@ -77245,7 +77275,7 @@ "name": "voice", "serializedName": "voice", "type": { - "$ref": "71" + "$ref": "67" }, "optional": true, "readOnly": false, @@ -77265,7 +77295,7 @@ "name": "input_audio_format", "serializedName": "input_audio_format", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": true, "readOnly": false, @@ -77285,7 +77315,7 @@ "name": "output_audio_format", "serializedName": "output_audio_format", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": true, "readOnly": false, @@ -77322,7 +77352,7 @@ "name": "model", "serializedName": "model", "type": { - "$ref": "997" + "$ref": "1093" }, "optional": true, "readOnly": false, @@ -77422,7 +77452,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1000" + "$ref": "1096" }, "optional": false, "readOnly": false, @@ -77511,7 +77541,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1002" + "$ref": "1098" }, "optional": false, "readOnly": false, @@ -77637,7 +77667,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1003" + "$ref": "1099" }, "optional": false, "readOnly": false, @@ -77658,7 +77688,7 @@ "serializedName": "eagerness", "doc": "Used only for `semantic_vad` mode. The eagerness of the model to respond. `low` will wait longer for the user to continue speaking, `high` will respond more quickly. `auto` is the default and is equivalent to `medium`.", "type": { - "$ref": "1004" + "$ref": "1100" }, "optional": true, "readOnly": false, @@ -77709,7 +77739,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1010" + "$ref": "1106" }, "optional": false, "readOnly": false, @@ -77748,7 +77778,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1012" + "$ref": "1108" }, "optional": false, "readOnly": false, @@ -77783,7 +77813,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1013" + "$ref": "1109" }, "optional": false, "readOnly": false, @@ -77837,7 +77867,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1014" + "$ref": "1110" }, "optional": false, "readOnly": false, @@ -77877,7 +77907,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1016" + "$ref": "1112" }, "optional": false, "readOnly": false, @@ -77993,7 +78023,7 @@ "name": "RealtimeToolChoice", "variantTypes": [ { - "$ref": "1017" + "$ref": "1113" }, { "$id": "6195", @@ -78010,7 +78040,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1014" + "$ref": "1110" }, "optional": false, "readOnly": false, @@ -78050,7 +78080,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1016" + "$ref": "1112" }, "optional": false, "readOnly": false, @@ -78178,7 +78208,7 @@ "decorators": [] }, { - "$ref": "1487" + "$ref": "1627" } ], "namespace": "", @@ -78233,7 +78263,7 @@ "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.append`.", "type": { - "$ref": "970" + "$ref": "1066" }, "optional": false, "readOnly": false, @@ -78296,7 +78326,7 @@ "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.commit`.", "type": { - "$ref": "971" + "$ref": "1067" }, "optional": false, "readOnly": false, @@ -78333,7 +78363,7 @@ "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.clear`.", "type": { - "$ref": "972" + "$ref": "1068" }, "optional": false, "readOnly": false, @@ -78370,7 +78400,7 @@ "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.clear`.", "type": { - "$ref": "973" + "$ref": "1069" }, "optional": false, "readOnly": false, @@ -78407,7 +78437,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.create`.", "type": { - "$ref": "974" + "$ref": "1070" }, "optional": false, "readOnly": false, @@ -78465,7 +78495,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1022" + "$ref": "1118" }, "optional": false, "readOnly": false, @@ -78524,7 +78554,7 @@ "name": "role", "serializedName": "role", "type": { - "$ref": "1027" + "$ref": "1123" }, "optional": false, "readOnly": false, @@ -78548,7 +78578,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1024" + "$ref": "1120" }, "optional": false, "readOnly": false, @@ -78571,7 +78601,7 @@ "name": "status", "serializedName": "status", "type": { - "$ref": "1032" + "$ref": "1128" }, "optional": true, "readOnly": false, @@ -78606,7 +78636,7 @@ "name": "role", "serializedName": "role", "type": { - "$ref": "1029" + "$ref": "1125" }, "optional": false, "readOnly": false, @@ -78652,7 +78682,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1037" + "$ref": "1133" }, "optional": false, "readOnly": false, @@ -78694,7 +78724,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1040" + "$ref": "1136" }, "optional": false, "readOnly": false, @@ -78753,7 +78783,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1041" + "$ref": "1137" }, "optional": false, "readOnly": false, @@ -78812,7 +78842,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1042" + "$ref": "1138" }, "optional": false, "readOnly": false, @@ -78871,10 +78901,10 @@ "name": "input_text", "value": "input_text", "valueType": { - "$ref": "1038" + "$ref": "1134" }, "enumType": { - "$ref": "1037" + "$ref": "1133" }, "decorators": [] }, @@ -78952,7 +78982,7 @@ "name": "role", "serializedName": "role", "type": { - "$ref": "1030" + "$ref": "1126" }, "optional": false, "readOnly": false, @@ -79026,7 +79056,7 @@ "name": "role", "serializedName": "role", "type": { - "$ref": "1031" + "$ref": "1127" }, "optional": false, "readOnly": false, @@ -79083,7 +79113,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1025" + "$ref": "1121" }, "optional": false, "readOnly": false, @@ -79175,7 +79205,7 @@ "name": "status", "serializedName": "status", "type": { - "$ref": "1032" + "$ref": "1128" }, "optional": true, "readOnly": false, @@ -79210,7 +79240,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1026" + "$ref": "1122" }, "optional": false, "readOnly": false, @@ -79311,7 +79341,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.truncate`.", "type": { - "$ref": "976" + "$ref": "1072" }, "optional": false, "readOnly": false, @@ -79423,7 +79453,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.delete`.", "type": { - "$ref": "977" + "$ref": "1073" }, "optional": false, "readOnly": false, @@ -79485,7 +79515,7 @@ "serializedName": "type", "doc": "The event type, must be `response.create`.", "type": { - "$ref": "978" + "$ref": "1074" }, "optional": false, "readOnly": false, @@ -79567,7 +79597,7 @@ "serializedName": "voice", "doc": "The voice the model uses to respond. Voice cannot be changed during the\nsession once the model has responded with audio at least once. Current\nvoice options are `alloy`, `ash`, `ballad`, `coral`, `echo`, `fable`,\n`onyx`, `nova`, `sage`, `shimmer`, and `verse`.", "type": { - "$ref": "71" + "$ref": "67" }, "optional": true, "readOnly": false, @@ -79588,7 +79618,7 @@ "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": true, "readOnly": false, @@ -79692,7 +79722,7 @@ "decorators": [] }, { - "$ref": "1489" + "$ref": "1629" } ], "namespace": "", @@ -79717,7 +79747,7 @@ "serializedName": "conversation", "doc": "Controls which conversation the response is added to. Currently supports\n`auto` and `none`, with `auto` as the default value. The `auto` value\nmeans that the contents of the response will be added to the default\nconversation. Set this to `none` to create an out-of-band response which\nwill not add items to default conversation.", "type": { - "$ref": "1043" + "$ref": "1139" }, "optional": true, "readOnly": false, @@ -79738,7 +79768,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, @@ -79817,7 +79847,7 @@ "serializedName": "type", "doc": "The event type, must be `response.cancel`.", "type": { - "$ref": "979" + "$ref": "1075" }, "optional": false, "readOnly": false, @@ -79879,7 +79909,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieve`.", "type": { - "$ref": "975" + "$ref": "1071" }, "optional": false, "readOnly": false, @@ -79941,7 +79971,7 @@ "serializedName": "type", "doc": "The event type, must be `transcription_session.update`.", "type": { - "$ref": "980" + "$ref": "1076" }, "optional": false, "readOnly": false, @@ -79981,7 +80011,7 @@ "kind": "array", "name": "Array44", "valueType": { - "$ref": "1047" + "$ref": "1143" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -80005,7 +80035,7 @@ "serializedName": "input_audio_format", "doc": "The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.\nFor `pcm16`, input audio must be 16-bit PCM at a 24kHz sample rate,\nsingle channel (mono), and little-endian byte order.", "type": { - "$ref": "1051" + "$ref": "1147" }, "optional": true, "readOnly": false, @@ -80041,7 +80071,7 @@ "serializedName": "model", "doc": "The model to use for transcription, current options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, and `whisper-1`.", "type": { - "$ref": "1056" + "$ref": "1152" }, "optional": true, "readOnly": false, @@ -80141,7 +80171,7 @@ "serializedName": "type", "doc": "Type of turn detection.", "type": { - "$ref": "1061" + "$ref": "1157" }, "optional": true, "readOnly": false, @@ -80162,7 +80192,7 @@ "serializedName": "eagerness", "doc": "Used only for `semantic_vad` mode. The eagerness of the model to respond. `low` will wait longer for the user to continue speaking, `high` will respond more quickly. `auto` is the default and is equivalent to `medium`.", "type": { - "$ref": "1065" + "$ref": "1161" }, "optional": true, "readOnly": false, @@ -80340,7 +80370,7 @@ "serializedName": "type", "doc": "Type of noise reduction. `near_field` is for close-talking microphones such as headphones, `far_field` is for far-field microphones such as laptop or conference room microphones.", "type": { - "$ref": "1071" + "$ref": "1167" }, "optional": true, "readOnly": false, @@ -80377,7 +80407,7 @@ "serializedName": "include", "doc": "The set of items to include in the transcription. Current available items are:\n- `item.input_audio_transcription.logprobs`", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": true, "readOnly": false, @@ -80428,7 +80458,7 @@ "serializedName": "anchor", "doc": "The anchor point for the ephemeral token expiration. Only `created_at` is currently supported.", "type": { - "$ref": "1491" + "$ref": "1631" }, "optional": true, "readOnly": false, @@ -80661,7 +80691,7 @@ "serializedName": "type", "doc": "The type of event.", "type": { - "$ref": "1075" + "$ref": "1171" }, "optional": false, "readOnly": false, @@ -80726,7 +80756,7 @@ "serializedName": "type", "doc": "The event type, must be `error`.", "type": { - "$ref": "1077" + "$ref": "1173" }, "optional": false, "readOnly": false, @@ -80932,7 +80962,7 @@ "serializedName": "type", "doc": "The event type, must be `session.created`.", "type": { - "$ref": "1078" + "$ref": "1174" }, "optional": false, "readOnly": false, @@ -80966,7 +80996,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1493" + "$ref": "1633" }, "optional": false, "readOnly": false, @@ -81078,7 +81108,7 @@ "name": "voice", "serializedName": "voice", "type": { - "$ref": "71" + "$ref": "67" }, "optional": false, "readOnly": false, @@ -81098,7 +81128,7 @@ "name": "input_audio_format", "serializedName": "input_audio_format", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": false, "readOnly": false, @@ -81118,7 +81148,7 @@ "name": "output_audio_format", "serializedName": "output_audio_format", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": false, "readOnly": false, @@ -81282,7 +81312,7 @@ "decorators": [] }, { - "$ref": "1495" + "$ref": "1635" } ], "namespace": "", @@ -81339,7 +81369,7 @@ "serializedName": "type", "doc": "The event type, must be `session.updated`.", "type": { - "$ref": "1079" + "$ref": "1175" }, "optional": false, "readOnly": false, @@ -81396,7 +81426,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.created`.", "type": { - "$ref": "1080" + "$ref": "1176" }, "optional": false, "readOnly": false, @@ -81512,7 +81542,7 @@ "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.committed`.", "type": { - "$ref": "1088" + "$ref": "1184" }, "optional": false, "readOnly": false, @@ -81599,7 +81629,7 @@ "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.cleared`.", "type": { - "$ref": "1089" + "$ref": "1185" }, "optional": false, "readOnly": false, @@ -81636,7 +81666,7 @@ "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_started`.", "type": { - "$ref": "1090" + "$ref": "1186" }, "optional": false, "readOnly": false, @@ -81723,7 +81753,7 @@ "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_stopped`.", "type": { - "$ref": "1091" + "$ref": "1187" }, "optional": false, "readOnly": false, @@ -81810,7 +81840,7 @@ "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.cleared`.", "type": { - "$ref": "1092" + "$ref": "1188" }, "optional": false, "readOnly": false, @@ -81872,7 +81902,7 @@ "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.started`.", "type": { - "$ref": "1093" + "$ref": "1189" }, "optional": false, "readOnly": false, @@ -81934,7 +81964,7 @@ "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.stopped`.", "type": { - "$ref": "1094" + "$ref": "1190" }, "optional": false, "readOnly": false, @@ -81996,7 +82026,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.created`.", "type": { - "$ref": "1084" + "$ref": "1180" }, "optional": false, "readOnly": false, @@ -82054,7 +82084,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1022" + "$ref": "1118" }, "optional": false, "readOnly": false, @@ -82075,7 +82105,7 @@ "name": "object", "serializedName": "object", "type": { - "$ref": "1497" + "$ref": "1637" }, "optional": false, "readOnly": false, @@ -82142,7 +82172,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1024" + "$ref": "1120" }, "optional": false, "readOnly": false, @@ -82162,7 +82192,7 @@ "name": "role", "serializedName": "role", "type": { - "$ref": "1027" + "$ref": "1123" }, "optional": false, "readOnly": false, @@ -82209,7 +82239,7 @@ "name": "status", "serializedName": "status", "type": { - "$ref": "1032" + "$ref": "1128" }, "optional": false, "readOnly": false, @@ -82244,7 +82274,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1025" + "$ref": "1121" }, "optional": false, "readOnly": false, @@ -82336,7 +82366,7 @@ "name": "status", "serializedName": "status", "type": { - "$ref": "1032" + "$ref": "1128" }, "optional": false, "readOnly": false, @@ -82371,7 +82401,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "1026" + "$ref": "1122" }, "optional": false, "readOnly": false, @@ -82472,7 +82502,7 @@ "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.completed`.", "type": { - "$ref": "1081" + "$ref": "1177" }, "optional": false, "readOnly": false, @@ -82641,7 +82671,7 @@ "serializedName": "bytes", "doc": "The bytes that were used to generate the log probability.", "type": { - "$ref": "2375" + "$ref": "2515" }, "optional": false, "readOnly": false, @@ -82697,7 +82727,7 @@ "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.failed`.", "type": { - "$ref": "1083" + "$ref": "1179" }, "optional": false, "readOnly": false, @@ -82913,7 +82943,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.truncated`.", "type": { - "$ref": "1086" + "$ref": "1182" }, "optional": false, "readOnly": false, @@ -83025,7 +83055,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.deleted`.", "type": { - "$ref": "1087" + "$ref": "1183" }, "optional": false, "readOnly": false, @@ -83087,7 +83117,7 @@ "serializedName": "type", "doc": "The event type, must be `response.created`.", "type": { - "$ref": "1095" + "$ref": "1191" }, "optional": false, "readOnly": false, @@ -83148,7 +83178,7 @@ "serializedName": "object", "doc": "The object type, must be `realtime.response`.", "type": { - "$ref": "1499" + "$ref": "1639" }, "optional": true, "readOnly": false, @@ -83169,7 +83199,7 @@ "serializedName": "status", "doc": "The final status of the response (`completed`, `cancelled`, `failed`, or\n`incomplete`).", "type": { - "$ref": "1111" + "$ref": "1207" }, "optional": true, "readOnly": false, @@ -83205,7 +83235,7 @@ "serializedName": "type", "doc": "The type of error that caused the response to fail, corresponding\nwith the `status` field (`completed`, `cancelled`, `incomplete`,\n`failed`).", "type": { - "$ref": "1117" + "$ref": "1213" }, "optional": true, "readOnly": false, @@ -83226,7 +83256,7 @@ "serializedName": "reason", "doc": "The reason the Response did not complete. For a `cancelled` Response,\none of `turn_detected` (the server VAD detected a new start of speech)\nor `client_cancelled` (the client sent a cancel event). For an\n`incomplete` Response, one of `max_output_tokens` or `content_filter`\n(the server-side safety filter activated and cut off the response).", "type": { - "$ref": "1123" + "$ref": "1219" }, "optional": true, "readOnly": false, @@ -83368,7 +83398,7 @@ "serializedName": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2161" + "$ref": "2301" }, "optional": false, "readOnly": false, @@ -83701,7 +83731,7 @@ "serializedName": "voice", "doc": "The voice the model used to respond.\nCurrent voice options are `alloy`, `ash`, `ballad`, `coral`, `echo`, `fable`,\n`onyx`, `nova`, `sage`, `shimmer`, and `verse`.", "type": { - "$ref": "71" + "$ref": "67" }, "optional": true, "readOnly": false, @@ -83726,7 +83756,7 @@ "kind": "array", "name": "Array45", "valueType": { - "$ref": "1129" + "$ref": "1225" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -83750,7 +83780,7 @@ "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$ref": "1133" + "$ref": "1229" }, "optional": true, "readOnly": false, @@ -83808,7 +83838,7 @@ "decorators": [] }, { - "$ref": "1501" + "$ref": "1641" } ], "namespace": "", @@ -83863,7 +83893,7 @@ "serializedName": "type", "doc": "The event type, must be `response.done`.", "type": { - "$ref": "1096" + "$ref": "1192" }, "optional": false, "readOnly": false, @@ -83920,7 +83950,7 @@ "serializedName": "type", "doc": "The event type, must be `response.output_item.added`.", "type": { - "$ref": "1097" + "$ref": "1193" }, "optional": false, "readOnly": false, @@ -84027,7 +84057,7 @@ "serializedName": "type", "doc": "The event type, must be `response.output_item.done`.", "type": { - "$ref": "1098" + "$ref": "1194" }, "optional": false, "readOnly": false, @@ -84134,7 +84164,7 @@ "serializedName": "type", "doc": "The event type, must be `response.content_part.added`.", "type": { - "$ref": "1099" + "$ref": "1195" }, "optional": false, "readOnly": false, @@ -84292,7 +84322,7 @@ "serializedName": "type", "doc": "The event type, must be `response.content_part.done`.", "type": { - "$ref": "1100" + "$ref": "1196" }, "optional": false, "readOnly": false, @@ -84450,7 +84480,7 @@ "serializedName": "type", "doc": "The event type, must be `response.text.delta`.", "type": { - "$ref": "1101" + "$ref": "1197" }, "optional": false, "readOnly": false, @@ -84612,7 +84642,7 @@ "serializedName": "type", "doc": "The event type, must be `response.text.done`.", "type": { - "$ref": "1102" + "$ref": "1198" }, "optional": false, "readOnly": false, @@ -84774,7 +84804,7 @@ "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.delta`.", "type": { - "$ref": "1103" + "$ref": "1199" }, "optional": false, "readOnly": false, @@ -84936,7 +84966,7 @@ "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.done`.", "type": { - "$ref": "1104" + "$ref": "1200" }, "optional": false, "readOnly": false, @@ -85098,7 +85128,7 @@ "serializedName": "type", "doc": "The event type, must be `response.audio.delta`.", "type": { - "$ref": "1105" + "$ref": "1201" }, "optional": false, "readOnly": false, @@ -85261,7 +85291,7 @@ "serializedName": "type", "doc": "The event type, must be `response.audio.done`.", "type": { - "$ref": "1106" + "$ref": "1202" }, "optional": false, "readOnly": false, @@ -85398,7 +85428,7 @@ "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.delta`.", "type": { - "$ref": "1107" + "$ref": "1203" }, "optional": false, "readOnly": false, @@ -85560,7 +85590,7 @@ "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.done`.", "type": { - "$ref": "1108" + "$ref": "1204" }, "optional": false, "readOnly": false, @@ -85722,7 +85752,7 @@ "serializedName": "type", "doc": "The event type, must be `rate_limits.updated`.", "type": { - "$ref": "1110" + "$ref": "1206" }, "optional": false, "readOnly": false, @@ -85903,7 +85933,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.input_audio_transcription.delta`.", "type": { - "$ref": "1082" + "$ref": "1178" }, "optional": false, "readOnly": false, @@ -86041,7 +86071,7 @@ "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieved`.", "type": { - "$ref": "1085" + "$ref": "1181" }, "optional": false, "readOnly": false, @@ -86098,7 +86128,7 @@ "serializedName": "type", "doc": "The event type, must be `transcription_session.updated`.", "type": { - "$ref": "1109" + "$ref": "1205" }, "optional": false, "readOnly": false, @@ -86225,7 +86255,7 @@ "kind": "array", "name": "Array46", "valueType": { - "$ref": "1138" + "$ref": "1234" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -86289,7 +86319,7 @@ "serializedName": "model", "doc": "The model to use for transcription. Can be `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, or `whisper-1`.", "type": { - "$ref": "1142" + "$ref": "1238" }, "optional": true, "readOnly": false, @@ -86714,7 +86744,7 @@ "serializedName": "model", "doc": "The Realtime model used for this session.", "type": { - "$ref": "1147" + "$ref": "1243" }, "optional": true, "readOnly": false, @@ -86760,7 +86790,7 @@ "serializedName": "voice", "doc": "The voice the model uses to respond. Voice cannot be changed during the\nsession once the model has responded with audio at least once. Current\nvoice options are `alloy`, `ash`, `ballad`, `coral`, `echo`, `fable`,\n`onyx`, `nova`, `sage`, `shimmer`, and `verse`.", "type": { - "$ref": "71" + "$ref": "67" }, "optional": true, "readOnly": false, @@ -86781,7 +86811,7 @@ "serializedName": "input_audio_format", "doc": "The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.\nFor `pcm16`, input audio must be 16-bit PCM at a 24kHz sample rate,\nsingle channel (mono), and little-endian byte order.", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": true, "readOnly": false, @@ -86802,7 +86832,7 @@ "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.\nFor `pcm16`, output audio is sampled at a rate of 24kHz.", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": true, "readOnly": false, @@ -86942,7 +86972,7 @@ "serializedName": "type", "doc": "Type of turn detection.", "type": { - "$ref": "1155" + "$ref": "1251" }, "optional": true, "readOnly": false, @@ -86963,7 +86993,7 @@ "serializedName": "eagerness", "doc": "Used only for `semantic_vad` mode. The eagerness of the model to respond. `low` will wait longer for the user to continue speaking, `high` will respond more quickly. `auto` is the default and is equivalent to `medium`.", "type": { - "$ref": "1159" + "$ref": "1255" }, "optional": true, "readOnly": false, @@ -87141,7 +87171,7 @@ "serializedName": "type", "doc": "Type of noise reduction. `near_field` is for close-talking microphones such as headphones, `far_field` is for far-field microphones such as laptop or conference room microphones.", "type": { - "$ref": "1165" + "$ref": "1261" }, "optional": true, "readOnly": false, @@ -87208,7 +87238,7 @@ "name": "RealtimeSessionCreateRequestTracing", "variantTypes": [ { - "$ref": "1503" + "$ref": "1643" }, { "$id": "6811", @@ -87402,7 +87432,7 @@ "decorators": [] }, { - "$ref": "1505" + "$ref": "1645" } ], "namespace": "", @@ -87457,7 +87487,7 @@ "serializedName": "anchor", "doc": "The anchor point for the ephemeral token expiration. Only `created_at` is currently supported.", "type": { - "$ref": "1507" + "$ref": "1647" }, "optional": true, "readOnly": false, @@ -87694,7 +87724,7 @@ "serializedName": "voice", "doc": "The voice the model uses to respond. Voice cannot be changed during the\nsession once the model has responded with audio at least once. Current\nvoice options are `alloy`, `ash`, `ballad`, `coral`, `echo` `sage`,\n`shimmer` and `verse`.", "type": { - "$ref": "71" + "$ref": "67" }, "optional": true, "readOnly": false, @@ -87715,7 +87745,7 @@ "serializedName": "input_audio_format", "doc": "The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": true, "readOnly": false, @@ -87736,7 +87766,7 @@ "serializedName": "output_audio_format", "doc": "The format of output audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$ref": "992" + "$ref": "1088" }, "optional": true, "readOnly": false, @@ -87841,7 +87871,7 @@ "name": "RealtimeSessionCreateResponseTracing", "variantTypes": [ { - "$ref": "1509" + "$ref": "1649" }, { "$id": "6855", @@ -88164,7 +88194,7 @@ "decorators": [] }, { - "$ref": "1511" + "$ref": "1651" } ], "namespace": "", @@ -88237,7 +88267,7 @@ "serializedName": "purpose", "doc": "The intended purpose of the uploaded file.\n\nSee the [documentation on File purposes](/docs/api-reference/files/create#files-create-purpose).", "type": { - "$ref": "1169" + "$ref": "1265" }, "optional": false, "readOnly": false, @@ -88453,7 +88483,7 @@ "serializedName": "status", "doc": "The status of the Upload.", "type": { - "$ref": "1175" + "$ref": "1271" }, "optional": false, "readOnly": false, @@ -88507,7 +88537,7 @@ "serializedName": "object", "doc": "The object type, which is always \"upload\".", "type": { - "$ref": "1513" + "$ref": "1653" }, "optional": true, "readOnly": false, @@ -88530,7 +88560,7 @@ "$id": "6906", "kind": "nullable", "type": { - "$ref": "3044" + "$ref": "3177" }, "namespace": "" }, @@ -88584,8 +88614,7 @@ "defaultContentTypes": [ "application/octet-stream" ], - "name": "data", - "headers": [] + "name": "data" } } } @@ -88691,7 +88720,7 @@ "serializedName": "object", "doc": "The object type, which is always `upload.part`.", "type": { - "$ref": "1515" + "$ref": "1655" }, "optional": false, "readOnly": false, @@ -88723,7 +88752,7 @@ "serializedName": "part_ids", "doc": "The ordered list of Part IDs.", "type": { - "$ref": "2155" + "$ref": "2295" }, "optional": false, "readOnly": false, @@ -88803,7 +88832,7 @@ "serializedName": "method", "doc": "The HTTP method to be used for the request. Currently only `POST` is supported.", "type": { - "$ref": "1517" + "$ref": "1657" }, "optional": true, "readOnly": false, @@ -88954,7 +88983,7 @@ "serializedName": "body", "doc": "The JSON body of the response", "type": { - "$ref": "3442" + "$ref": "3575" }, "optional": true, "readOnly": false, @@ -89094,7 +89123,7 @@ "serializedName": "weight", "doc": "Controls whether the assistant message is trained against (0 or 1)", "type": { - "$ref": "1181" + "$ref": "1277" }, "optional": true, "readOnly": false, @@ -89111,7 +89140,7 @@ "serializedName": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", "type": { - "$ref": "2747" + "$ref": "2887" }, "optional": true, "readOnly": false, @@ -89128,7 +89157,7 @@ "serializedName": "refusal", "doc": "The refusal message by the assistant.", "type": { - "$ref": "2753" + "$ref": "2893" }, "optional": true, "readOnly": false, @@ -89150,10 +89179,10 @@ "name": "assistant", "value": "assistant", "valueType": { - "$ref": "154" + "$ref": "146" }, "enumType": { - "$ref": "153" + "$ref": "145" }, "decorators": [] }, @@ -89193,7 +89222,7 @@ "serializedName": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", "type": { - "$ref": "2760" + "$ref": "2900" }, "optional": true, "readOnly": false, @@ -89209,7 +89238,7 @@ "name": "tool_calls", "serializedName": "tool_calls", "type": { - "$ref": "2552" + "$ref": "2692" }, "optional": true, "readOnly": false, @@ -89226,7 +89255,7 @@ "serializedName": "function_call", "doc": "Deprecated and replaced by `tool_calls`. The name and arguments of a function that should be called, as generated by the model.", "type": { - "$ref": "2766" + "$ref": "2906" }, "optional": true, "readOnly": false, @@ -89264,19 +89293,19 @@ "name": "FineTuneChatRequestInputMessage", "variantTypes": [ { - "$ref": "2716" + "$ref": "2856" }, { - "$ref": "2735" + "$ref": "2875" }, { "$ref": "6951" }, { - "$ref": "2772" + "$ref": "2912" }, { - "$ref": "2782" + "$ref": "2922" } ], "namespace": "", @@ -89300,7 +89329,7 @@ "serializedName": "tools", "doc": "A list of tools the model may generate JSON inputs for.", "type": { - "$ref": "2873" + "$ref": "3013" }, "optional": true, "readOnly": false, @@ -89344,7 +89373,7 @@ "serializedName": "functions", "doc": "A list of functions the model may generate JSON inputs for.", "type": { - "$ref": "2895" + "$ref": "3035" }, "optional": true, "readOnly": false, @@ -89425,7 +89454,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "804" + "$ref": "875" }, "optional": false, "readOnly": false, @@ -89484,7 +89513,7 @@ "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$ref": "807" + "$ref": "878" }, "optional": false, "readOnly": false, @@ -89536,7 +89565,7 @@ "serializedName": "detail", "doc": "Specifies the detail level of the image if specified by the user. `low` uses fewer tokens, you can opt in to high resolution using `high`.", "type": { - "$ref": "1185" + "$ref": "1281" }, "optional": true, "readOnly": false, @@ -89601,7 +89630,7 @@ "serializedName": "type", "doc": "Always `image_url`.", "type": { - "$ref": "808" + "$ref": "879" }, "optional": false, "readOnly": false, @@ -89653,7 +89682,7 @@ "serializedName": "detail", "doc": "Specifies the detail level of the image. `low` uses fewer tokens, you can opt in to high resolution using `high`.", "type": { - "$ref": "1190" + "$ref": "1286" }, "optional": true, "readOnly": false, @@ -89718,7 +89747,7 @@ "serializedName": "type", "doc": "Always `text`.", "type": { - "$ref": "806" + "$ref": "877" }, "optional": false, "readOnly": false, @@ -89788,7 +89817,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the content item.", "type": { - "$ref": "815" + "$ref": "886" }, "optional": false, "readOnly": false, @@ -89847,7 +89876,7 @@ "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "817" + "$ref": "888" }, "optional": false, "readOnly": false, @@ -90029,7 +90058,7 @@ "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$ref": "818" + "$ref": "889" }, "optional": false, "readOnly": false, @@ -90214,7 +90243,7 @@ "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$ref": "809" + "$ref": "880" }, "optional": false, "readOnly": false, @@ -90323,7 +90352,7 @@ "serializedName": "object", "doc": "The object type, which is always `thread.message.delta`.", "type": { - "$ref": "1519" + "$ref": "1659" }, "optional": false, "readOnly": false, @@ -90355,7 +90384,7 @@ "serializedName": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", "type": { - "$ref": "1195" + "$ref": "1291" }, "optional": true, "readOnly": false, @@ -90443,7 +90472,7 @@ "serializedName": "object", "doc": "The object type, which is always `thread.run.step.delta`.", "type": { - "$ref": "1521" + "$ref": "1661" }, "optional": false, "readOnly": false, @@ -90489,7 +90518,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "898" + "$ref": "1000" }, "optional": false, "readOnly": false, @@ -90527,7 +90556,7 @@ "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "900" + "$ref": "1002" }, "optional": false, "readOnly": false, @@ -90606,7 +90635,7 @@ "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "901" + "$ref": "1003" }, "optional": false, "readOnly": false, @@ -90642,7 +90671,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "902" + "$ref": "1004" }, "optional": false, "readOnly": false, @@ -90722,7 +90751,7 @@ "serializedName": "type", "doc": "The type of tool call. This is always going to be `code_interpreter` for this type of tool call.", "type": { - "$ref": "904" + "$ref": "1006" }, "optional": false, "readOnly": false, @@ -90794,7 +90823,7 @@ "serializedName": "type", "doc": "The discriminated type identifier for the details object.", "type": { - "$ref": "907" + "$ref": "1009" }, "optional": false, "readOnly": false, @@ -90853,7 +90882,7 @@ "serializedName": "type", "doc": "Always `logs`.", "type": { - "$ref": "909" + "$ref": "1011" }, "optional": false, "readOnly": false, @@ -90928,7 +90957,7 @@ "serializedName": "type", "doc": "Always `image`.", "type": { - "$ref": "910" + "$ref": "1012" }, "optional": false, "readOnly": false, @@ -91073,7 +91102,7 @@ "serializedName": "type", "doc": "The type of tool call. This is always going to be `file_search` for this type of tool call.", "type": { - "$ref": "905" + "$ref": "1007" }, "optional": false, "readOnly": false, @@ -91206,7 +91235,7 @@ "serializedName": "type", "doc": "The type of tool call. This is always going to be `function` for this type of tool call.", "type": { - "$ref": "906" + "$ref": "1008" }, "optional": false, "readOnly": false, @@ -91424,7 +91453,7 @@ "serializedName": "task", "doc": "The task label.", "type": { - "$ref": "1523" + "$ref": "1663" }, "optional": false, "readOnly": false, @@ -91512,7 +91541,7 @@ "serializedName": "words", "doc": "Extracted words and their corresponding timestamps.", "type": { - "$ref": "2349" + "$ref": "2489" }, "optional": true, "readOnly": true, @@ -91529,7 +91558,7 @@ "serializedName": "segments", "doc": "Segments of the transcribed text and their corresponding details.", "type": { - "$ref": "2360" + "$ref": "2500" }, "optional": true, "readOnly": true, @@ -91569,7 +91598,7 @@ "properties": [ { "$id": "7141", - "kind": "property", + "kind": "query", "name": "afterId", "serializedName": "afterId", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", @@ -91582,15 +91611,13 @@ }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOptions.afterId", - "serializationOptions": {} + "correspondingMethodParams": [] }, { "$id": "7143", - "kind": "property", + "kind": "query", "name": "pageSizeLimit", "serializedName": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", @@ -91603,48 +91630,42 @@ }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOptions.pageSizeLimit", - "serializationOptions": {} + "correspondingMethodParams": [] }, { "$id": "7145", - "kind": "property", + "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1199" + "$ref": "1295" }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOptions.order", - "serializationOptions": {} + "correspondingMethodParams": [] }, { "$id": "7146", - "kind": "property", + "kind": "query", "name": "metadata", "serializedName": "metadata", "type": { - "$ref": "2162" + "$ref": "2302" }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOptions.metadata", - "serializationOptions": {} + "correspondingMethodParams": [] }, { "$id": "7147", - "kind": "property", + "kind": "query", "name": "model", "serializedName": "model", "type": { @@ -91656,11 +91677,9 @@ }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionCollectionOptions.model", - "serializationOptions": {} + "correspondingMethodParams": [] } ] }, @@ -91676,7 +91695,7 @@ "properties": [ { "$id": "7150", - "kind": "property", + "kind": "query", "name": "afterId", "serializedName": "afterId", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", @@ -91689,15 +91708,13 @@ }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOptions.afterId", - "serializationOptions": {} + "correspondingMethodParams": [] }, { "$id": "7152", - "kind": "property", + "kind": "query", "name": "pageSizeLimit", "serializedName": "pageSizeLimit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", @@ -91710,28 +91727,24 @@ }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOptions.pageSizeLimit", - "serializationOptions": {} + "correspondingMethodParams": [] }, { "$id": "7154", - "kind": "property", + "kind": "query", "name": "order", "serializedName": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1203" + "$ref": "1299" }, "optional": true, "readOnly": false, - "discriminator": false, - "flatten": false, "decorators": [], "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageCollectionOptions.order", - "serializationOptions": {} + "correspondingMethodParams": [] } ] }, @@ -91750,7 +91763,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "14" + "$ref": "10" }, "optional": false, "readOnly": false, @@ -91787,7 +91800,7 @@ "serializedName": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$ref": "2194" + "$ref": "2334" }, "optional": false, "readOnly": false, @@ -91820,7 +91833,7 @@ "serializedName": "type", "doc": "The type of response format being defined. Always `json_object`.", "type": { - "$ref": "17" + "$ref": "13" }, "optional": false, "readOnly": false, @@ -91852,7 +91865,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "18" + "$ref": "14" }, "optional": false, "readOnly": false, @@ -92002,7 +92015,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "14" + "$ref": "10" }, "optional": false, "readOnly": false, @@ -92039,7 +92052,7 @@ "serializedName": "type", "doc": "The type of response format being defined. Always `text`.", "type": { - "$ref": "2194" + "$ref": "2334" }, "optional": false, "readOnly": false, @@ -92072,7 +92085,7 @@ "serializedName": "type", "doc": "The type of response format being defined. Always `json_object`.", "type": { - "$ref": "17" + "$ref": "13" }, "optional": false, "readOnly": false, @@ -92104,7 +92117,7 @@ "name": "type", "serializedName": "type", "type": { - "$ref": "18" + "$ref": "14" }, "optional": false, "readOnly": false, @@ -92267,20 +92280,1909 @@ "discriminator": false, "flatten": false, "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetAudioLogProbsProperties.token", + "crossLanguageDefinitionId": "OpenAI.DotNetAudioLogProbsProperties.token", + "serializationOptions": {} + }, + { + "$id": "7196", + "kind": "property", + "name": "logprob", + "serializedName": "logprob", + "doc": "The log probability of the token.", + "type": { + "$id": "7197", + "kind": "float32", + "name": "float32", + "crossLanguageDefinitionId": "TypeSpec.float32", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetAudioLogProbsProperties.logprob", + "serializationOptions": {} + }, + { + "$id": "7198", + "kind": "property", + "name": "bytes", + "serializedName": "bytes", + "doc": "The bytes that were used to generate the log probability.", + "type": { + "$ref": "2515" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetAudioLogProbsProperties.bytes", + "serializationOptions": {} + } + ] + }, + { + "$id": "7199", + "kind": "model", + "name": "DotNetRealtimeLogProbsProperties", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties", + "access": "public", + "usage": "Output", + "decorators": [], + "properties": [ + { + "$id": "7200", + "kind": "property", + "name": "token", + "serializedName": "token", + "doc": "The token that was used to generate the log probability.", + "type": { + "$id": "7201", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties.token", + "serializationOptions": {} + }, + { + "$id": "7202", + "kind": "property", + "name": "logprob", + "serializedName": "logprob", + "doc": "The log probability of the token.", + "type": { + "$id": "7203", + "kind": "float32", + "name": "float32", + "crossLanguageDefinitionId": "TypeSpec.float32", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties.logprob", + "serializationOptions": {} + }, + { + "$id": "7204", + "kind": "property", + "name": "bytes", + "serializedName": "bytes", + "doc": "The bytes that were used to generate the log probability.", + "type": { + "$ref": "2515" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties.bytes", + "serializationOptions": {} + } + ] + }, + { + "$id": "7205", + "kind": "model", + "name": "DotnetResponseWebSearchLocation", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchLocation", + "access": "public", + "usage": "Input,Output", + "decorators": [], + "discriminatorProperty": { + "$id": "7206", + "kind": "property", + "name": "type", + "serializedName": "type", + "type": { + "$ref": "430" + }, + "optional": false, + "readOnly": false, + "discriminator": true, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchLocation.type", + "serializationOptions": {} + }, + "properties": [ + { + "$ref": "7206" + } + ], + "discriminatedSubtypes": { + "approximate": { + "$id": "7207", + "kind": "model", + "name": "DotnetResponseWebSearchApproximateLocation", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation", + "access": "public", + "usage": "Input,Output", + "discriminatorValue": "approximate", + "decorators": [], + "baseModel": { + "$ref": "7205" + }, + "properties": [ + { + "$id": "7208", + "kind": "property", + "name": "type", + "serializedName": "type", + "type": { + "$ref": "432" + }, + "optional": false, + "readOnly": false, + "discriminator": true, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.type", + "serializationOptions": {} + }, + { + "$id": "7209", + "kind": "property", + "name": "country", + "serializedName": "country", + "type": { + "$ref": "4023" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.country", + "serializationOptions": {} + }, + { + "$id": "7210", + "kind": "property", + "name": "region", + "serializedName": "region", + "type": { + "$ref": "4026" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.region", + "serializationOptions": {} + }, + { + "$id": "7211", + "kind": "property", + "name": "city", + "serializedName": "city", + "type": { + "$ref": "4029" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.city", + "serializationOptions": {} + }, + { + "$id": "7212", + "kind": "property", + "name": "timezone", + "serializedName": "timezone", + "type": { + "$ref": "4032" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.timezone", + "serializationOptions": {} + } + ] + } + } + }, + { + "$ref": "7207" + }, + { + "$id": "7213", + "kind": "model", + "name": "DotNetCombinedChunkingStrategyParam", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam", + "usage": "Input,Output", + "decorators": [], + "discriminatorProperty": { + "$id": "7214", + "kind": "property", + "name": "type", + "serializedName": "type", + "type": { + "$ref": "1303" + }, + "optional": false, + "readOnly": false, + "discriminator": true, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam.type", + "serializationOptions": {} + }, + "properties": [ + { + "$ref": "7214" + } + ], + "discriminatedSubtypes": { + "auto": { + "$id": "7215", + "kind": "model", + "name": "DotNetCombinedAutoChunkingStrategyParam", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedAutoChunkingStrategyParam", + "access": "public", + "usage": "Input,Output", + "discriminatorValue": "auto", + "decorators": [], + "baseModel": { + "$ref": "7213" + }, + "properties": [ + { + "$id": "7216", + "kind": "property", + "name": "type", + "serializedName": "type", + "doc": "Always `auto`.", + "type": { + "$ref": "1305" + }, + "optional": false, + "readOnly": false, + "discriminator": true, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedAutoChunkingStrategyParam.type", + "serializationOptions": {} + } + ] + }, + "static": { + "$id": "7217", + "kind": "model", + "name": "DotNetCombinedStaticChunkingStrategyParam", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedStaticChunkingStrategyParam", + "access": "public", + "usage": "Input,Output", + "discriminatorValue": "static", + "decorators": [], + "baseModel": { + "$ref": "7213" + }, + "properties": [ + { + "$id": "7218", + "kind": "property", + "name": "type", + "serializedName": "type", + "doc": "Always `static`.", + "type": { + "$ref": "1306" + }, + "optional": false, + "readOnly": false, + "discriminator": true, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedStaticChunkingStrategyParam.type", + "serializationOptions": {} + }, + { + "$id": "7219", + "kind": "property", + "name": "static", + "serializedName": "static", + "type": { + "$ref": "2389" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedStaticChunkingStrategyParam.static", + "serializationOptions": {} + } + ] + }, + "other": { + "$id": "7220", + "kind": "model", + "name": "DotNetCombinedOtherChunkingStrategyParam", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedOtherChunkingStrategyParam", + "access": "public", + "usage": "Input,Output", + "discriminatorValue": "other", + "decorators": [], + "baseModel": { + "$ref": "7213" + }, + "properties": [ + { + "$id": "7221", + "kind": "property", + "name": "type", + "serializedName": "type", + "doc": "Always `other`.", + "type": { + "$ref": "1307" + }, + "optional": false, + "readOnly": false, + "discriminator": true, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.DotNetCombinedOtherChunkingStrategyParam.type", + "serializationOptions": {} + } + ] + } + } + }, + { + "$ref": "7215" + }, + { + "$ref": "7217" + }, + { + "$ref": "7220" + }, + { + "$id": "7222", + "kind": "model", + "name": "ContainerListResource", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.ContainerListResource", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7223", + "kind": "property", + "name": "object", + "serializedName": "object", + "doc": "The type of object returned, must be 'list'.", + "type": { + "$ref": "1777" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerListResource.object", + "serializationOptions": {} + }, + { + "$id": "7224", + "kind": "property", + "name": "data", + "serializedName": "data", + "doc": "A list of containers.", + "type": { + "$id": "7225", + "kind": "array", + "name": "ArrayContainerResource", + "valueType": { + "$id": "7226", + "kind": "model", + "name": "ContainerResource", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.ContainerResource", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7227", + "kind": "property", + "name": "id", + "serializedName": "id", + "doc": "Unique identifier for the container.", + "type": { + "$id": "7228", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.id", + "serializationOptions": {} + }, + { + "$id": "7229", + "kind": "property", + "name": "object", + "serializedName": "object", + "doc": "The type of this object.", + "type": { + "$id": "7230", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.object", + "serializationOptions": {} + }, + { + "$id": "7231", + "kind": "property", + "name": "name", + "serializedName": "name", + "doc": "Name of the container.", + "type": { + "$id": "7232", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.name", + "serializationOptions": {} + }, + { + "$id": "7233", + "kind": "property", + "name": "created_at", + "serializedName": "created_at", + "doc": "Unix timestamp (in seconds) when the container was created.", + "type": { + "$id": "7234", + "kind": "utcDateTime", + "name": "utcDateTime", + "encode": "unixTimestamp", + "wireType": { + "$id": "7235", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "crossLanguageDefinitionId": "TypeSpec.utcDateTime", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.created_at", + "serializationOptions": {} + }, + { + "$id": "7236", + "kind": "property", + "name": "status", + "serializedName": "status", + "doc": "Status of the container (e.g., active, deleted).", + "type": { + "$id": "7237", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.status", + "serializationOptions": {} + }, + { + "$id": "7238", + "kind": "property", + "name": "expires_after", + "serializedName": "expires_after", + "doc": "The container will expire after this time period.\nThe anchor is the reference point for the expiration.\nThe minutes is the number of minutes after the anchor before the container expires.", + "type": { + "$id": "7239", + "kind": "model", + "name": "ContainerResourceExpiresAfter", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after.anonymous", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7240", + "kind": "property", + "name": "anchor", + "serializedName": "anchor", + "doc": "The reference point for the expiration.", + "type": { + "$ref": "1779" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after.anonymous.anchor", + "serializationOptions": {} + }, + { + "$id": "7241", + "kind": "property", + "name": "minutes", + "serializedName": "minutes", + "doc": "The number of minutes after the anchor before the container expires.", + "type": { + "$id": "7242", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after.anonymous.minutes", + "serializationOptions": {} + } + ] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after", + "serializationOptions": {} + } + ] + }, + "crossLanguageDefinitionId": "TypeSpec.Array", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerListResource.data", + "serializationOptions": {} + }, + { + "$id": "7243", + "kind": "property", + "name": "first_id", + "serializedName": "first_id", + "doc": "The ID of the first container in the list.", + "type": { + "$id": "7244", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerListResource.first_id", + "serializationOptions": {} + }, + { + "$id": "7245", + "kind": "property", + "name": "last_id", + "serializedName": "last_id", + "doc": "The ID of the last container in the list.", + "type": { + "$id": "7246", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerListResource.last_id", + "serializationOptions": {} + }, + { + "$id": "7247", + "kind": "property", + "name": "has_more", + "serializedName": "has_more", + "doc": "Whether there are more containers available.", + "type": { + "$id": "7248", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerListResource.has_more", + "serializationOptions": {} + } + ] + }, + { + "$ref": "7226" + }, + { + "$ref": "7239" + }, + { + "$id": "7249", + "kind": "model", + "name": "CreateContainerBody", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.CreateContainerBody", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7250", + "kind": "property", + "name": "name", + "serializedName": "name", + "doc": "Name of the container to create.", + "type": { + "$id": "7251", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.name", + "serializationOptions": {} + }, + { + "$id": "7252", + "kind": "property", + "name": "file_ids", + "serializedName": "file_ids", + "doc": "IDs of files to copy to the container.", + "type": { + "$ref": "2295" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.file_ids", + "serializationOptions": {} + }, + { + "$id": "7253", + "kind": "property", + "name": "expires_after", + "serializedName": "expires_after", + "doc": "Container expiration time in seconds relative to the 'anchor' time.", + "type": { + "$id": "7254", + "kind": "model", + "name": "CreateContainerBodyExpiresAfter", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after.anonymous", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7255", + "kind": "property", + "name": "anchor", + "serializedName": "anchor", + "doc": "Time anchor for the expiration time. Currently only 'last_active_at' is supported.", + "type": { + "$ref": "1785" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after.anonymous.anchor", + "serializationOptions": {} + }, + { + "$id": "7256", + "kind": "property", + "name": "minutes", + "serializedName": "minutes", + "type": { + "$id": "7257", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after.anonymous.minutes", + "serializationOptions": {} + } + ] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after", + "serializationOptions": {} + } + ] + }, + { + "$ref": "7254" + }, + { + "$id": "7258", + "kind": "model", + "name": "DeleteContainerResponse", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7259", + "kind": "property", + "name": "id", + "serializedName": "id", + "type": { + "$id": "7260", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous.id", + "serializationOptions": {} + }, + { + "$id": "7261", + "kind": "property", + "name": "object", + "serializedName": "object", + "type": { + "$ref": "1791" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous.object", + "serializationOptions": {} + }, + { + "$id": "7262", + "kind": "property", + "name": "deleted", + "serializedName": "deleted", + "type": { + "$ref": "1793" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous.deleted", + "serializationOptions": {} + } + ] + }, + { + "$id": "7263", + "kind": "model", + "name": "CreateContainerFileBody", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.CreateContainerFileBody", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7264", + "kind": "property", + "name": "file_id", + "serializedName": "file_id", + "doc": "Name of the file to create.", + "type": { + "$id": "7265", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateContainerFileBody.file_id", + "serializationOptions": { + "multipart": { + "isFilePart": false, + "isMulti": false, + "defaultContentTypes": [ + "text/plain" + ], + "name": "file_id" + } + } + }, + { + "$id": "7266", + "kind": "property", + "name": "file", + "serializedName": "file", + "doc": "The File object (not file name) to be uploaded.", + "type": { + "$id": "7267", + "kind": "bytes", + "name": "bytes", + "encode": "base64", + "crossLanguageDefinitionId": "TypeSpec.bytes", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.CreateContainerFileBody.file", + "serializationOptions": { + "multipart": { + "isFilePart": true, + "isMulti": false, + "defaultContentTypes": [ + "application/octet-stream" + ], + "name": "file" + } + } + } + ] + }, + { + "$id": "7268", + "kind": "model", + "name": "ContainerFileResource", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7269", + "kind": "property", + "name": "id", + "serializedName": "id", + "doc": "Unique identifier for the file.", + "type": { + "$id": "7270", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.id", + "serializationOptions": {} + }, + { + "$id": "7271", + "kind": "property", + "name": "object", + "serializedName": "object", + "doc": "The type of this object (`container.file`).", + "type": { + "$id": "7272", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.object", + "serializationOptions": {} + }, + { + "$id": "7273", + "kind": "property", + "name": "container_id", + "serializedName": "container_id", + "doc": "The container this file belongs to.", + "type": { + "$id": "7274", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.container_id", + "serializationOptions": {} + }, + { + "$id": "7275", + "kind": "property", + "name": "created_at", + "serializedName": "created_at", + "doc": "Unix timestamp (in seconds) when the file was created.", + "type": { + "$id": "7276", + "kind": "utcDateTime", + "name": "utcDateTime", + "encode": "unixTimestamp", + "wireType": { + "$id": "7277", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "crossLanguageDefinitionId": "TypeSpec.utcDateTime", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.created_at", + "serializationOptions": {} + }, + { + "$id": "7278", + "kind": "property", + "name": "bytes", + "serializedName": "bytes", + "doc": "Size of the file in bytes.", + "type": { + "$id": "7279", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.bytes", + "serializationOptions": {} + }, + { + "$id": "7280", + "kind": "property", + "name": "path", + "serializedName": "path", + "doc": "Path of the file in the container.", + "type": { + "$id": "7281", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.path", + "serializationOptions": {} + }, + { + "$id": "7282", + "kind": "property", + "name": "source", + "serializedName": "source", + "doc": "Source of the file (e.g., `user`, `assistant`).", + "type": { + "$id": "7283", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.source", + "serializationOptions": {} + } + ] + }, + { + "$id": "7284", + "kind": "model", + "name": "ContainerFileListResource", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7285", + "kind": "property", + "name": "object", + "serializedName": "object", + "doc": "The type of object returned, must be 'list'.", + "type": { + "$ref": "1803" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.object", + "serializationOptions": {} + }, + { + "$id": "7286", + "kind": "property", + "name": "data", + "serializedName": "data", + "doc": "A list of container files.", + "type": { + "$id": "7287", + "kind": "array", + "name": "ArrayContainerFileResource", + "valueType": { + "$ref": "7268" + }, + "crossLanguageDefinitionId": "TypeSpec.Array", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.data", + "serializationOptions": {} + }, + { + "$id": "7288", + "kind": "property", + "name": "first_id", + "serializedName": "first_id", + "doc": "The ID of the first file in the list.", + "type": { + "$id": "7289", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.first_id", + "serializationOptions": {} + }, + { + "$id": "7290", + "kind": "property", + "name": "last_id", + "serializedName": "last_id", + "doc": "The ID of the last file in the list.", + "type": { + "$id": "7291", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.last_id", + "serializationOptions": {} + }, + { + "$id": "7292", + "kind": "property", + "name": "has_more", + "serializedName": "has_more", + "doc": "Whether there are more files available.", + "type": { + "$id": "7293", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.has_more", + "serializationOptions": {} + } + ] + }, + { + "$id": "7294", + "kind": "model", + "name": "DeleteContainerFileResponse", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7295", + "kind": "property", + "name": "id", + "serializedName": "id", + "type": { + "$id": "7296", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous.id", + "serializationOptions": {} + }, + { + "$id": "7297", + "kind": "property", + "name": "object", + "serializedName": "object", + "type": { + "$ref": "1809" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous.object", + "serializationOptions": {} + }, + { + "$id": "7298", + "kind": "property", + "name": "deleted", + "serializedName": "deleted", + "type": { + "$ref": "1811" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous.deleted", + "serializationOptions": {} + } + ] + }, + { + "$id": "7299", + "kind": "model", + "name": "RunGraderRequest", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.RunGraderRequest", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7300", + "kind": "property", + "name": "grader", + "serializedName": "grader", + "doc": "The grader used for the fine-tuning job.", + "type": { + "$id": "7301", + "kind": "union", + "name": "RunGraderRequestGrader", + "variantTypes": [ + { + "$ref": "3319" + }, + { + "$ref": "3322" + }, + { + "$ref": "3331" + }, + { + "$ref": "3339" + }, + { + "$ref": "3366" + } + ], + "namespace": "", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderRequest.grader", + "serializationOptions": {} + }, + { + "$id": "7302", + "kind": "property", + "name": "item", + "serializedName": "item", + "doc": "The dataset item provided to the grader. This will be used to populate\nthe `item` namespace. See [the guide](/docs/guides/graders) for more details.", + "type": { + "$id": "7303", + "kind": "unknown", + "name": "unknown", + "crossLanguageDefinitionId": "", + "decorators": [] + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderRequest.item", + "serializationOptions": {} + }, + { + "$id": "7304", + "kind": "property", + "name": "model_sample", + "serializedName": "model_sample", + "doc": "The model sample to be evaluated. This value will be used to populate\nthe `sample` namespace. See [the guide](/docs/guides/graders) for more details.\nThe `output_json` variable will be populated if the model sample is a\nvalid JSON string.", + "type": { + "$id": "7305", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderRequest.model_sample", + "serializationOptions": {} + } + ] + }, + { + "$id": "7306", + "kind": "model", + "name": "RunGraderResponse", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7307", + "kind": "property", + "name": "reward", + "serializedName": "reward", + "type": { + "$id": "7308", + "kind": "float32", + "name": "float32", + "crossLanguageDefinitionId": "TypeSpec.float32", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.reward", + "serializationOptions": {} + }, + { + "$id": "7309", + "kind": "property", + "name": "metadata", + "serializedName": "metadata", + "type": { + "$id": "7310", + "kind": "model", + "name": "RunGraderResponseMetadata", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7311", + "kind": "property", + "name": "name", + "serializedName": "name", + "type": { + "$id": "7312", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.name", + "serializationOptions": {} + }, + { + "$id": "7313", + "kind": "property", + "name": "type", + "serializedName": "type", + "type": { + "$id": "7314", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.type", + "serializationOptions": {} + }, + { + "$id": "7315", + "kind": "property", + "name": "errors", + "serializedName": "errors", + "type": { + "$id": "7316", + "kind": "model", + "name": "RunGraderResponseMetadataErrors", + "namespace": "OpenAI", + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous", + "usage": "None", + "decorators": [], + "properties": [ + { + "$id": "7317", + "kind": "property", + "name": "formula_parse_error", + "serializedName": "formula_parse_error", + "type": { + "$id": "7318", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.formula_parse_error", + "serializationOptions": {} + }, + { + "$id": "7319", + "kind": "property", + "name": "sample_parse_error", + "serializedName": "sample_parse_error", + "type": { + "$id": "7320", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.sample_parse_error", + "serializationOptions": {} + }, + { + "$id": "7321", + "kind": "property", + "name": "truncated_observation_error", + "serializedName": "truncated_observation_error", + "type": { + "$id": "7322", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.truncated_observation_error", + "serializationOptions": {} + }, + { + "$id": "7323", + "kind": "property", + "name": "unresponsive_reward_error", + "serializedName": "unresponsive_reward_error", + "type": { + "$id": "7324", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.unresponsive_reward_error", + "serializationOptions": {} + }, + { + "$id": "7325", + "kind": "property", + "name": "invalid_variable_error", + "serializedName": "invalid_variable_error", + "type": { + "$id": "7326", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.invalid_variable_error", + "serializationOptions": {} + }, + { + "$id": "7327", + "kind": "property", + "name": "other_error", + "serializedName": "other_error", + "type": { + "$id": "7328", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.other_error", + "serializationOptions": {} + }, + { + "$id": "7329", + "kind": "property", + "name": "python_grader_server_error", + "serializedName": "python_grader_server_error", + "type": { + "$id": "7330", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_server_error", + "serializationOptions": {} + }, + { + "$id": "7331", + "kind": "property", + "name": "python_grader_server_error_type", + "serializedName": "python_grader_server_error_type", + "type": { + "$id": "7332", + "kind": "nullable", + "type": { + "$id": "7333", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "namespace": "" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_server_error_type", + "serializationOptions": {} + }, + { + "$id": "7334", + "kind": "property", + "name": "python_grader_runtime_error", + "serializedName": "python_grader_runtime_error", + "type": { + "$id": "7335", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_runtime_error", + "serializationOptions": {} + }, + { + "$id": "7336", + "kind": "property", + "name": "python_grader_runtime_error_details", + "serializedName": "python_grader_runtime_error_details", + "type": { + "$id": "7337", + "kind": "nullable", + "type": { + "$id": "7338", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "namespace": "" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_runtime_error_details", + "serializationOptions": {} + }, + { + "$id": "7339", + "kind": "property", + "name": "model_grader_server_error", + "serializedName": "model_grader_server_error", + "type": { + "$id": "7340", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_server_error", + "serializationOptions": {} + }, + { + "$id": "7341", + "kind": "property", + "name": "model_grader_refusal_error", + "serializedName": "model_grader_refusal_error", + "type": { + "$id": "7342", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_refusal_error", + "serializationOptions": {} + }, + { + "$id": "7343", + "kind": "property", + "name": "model_grader_parse_error", + "serializedName": "model_grader_parse_error", + "type": { + "$id": "7344", + "kind": "boolean", + "name": "boolean", + "crossLanguageDefinitionId": "TypeSpec.boolean", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_parse_error", + "serializationOptions": {} + }, + { + "$id": "7345", + "kind": "property", + "name": "model_grader_server_error_details", + "serializedName": "model_grader_server_error_details", + "type": { + "$id": "7346", + "kind": "nullable", + "type": { + "$id": "7347", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "namespace": "" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_server_error_details", + "serializationOptions": {} + } + ] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.errors", + "serializationOptions": {} + }, + { + "$id": "7348", + "kind": "property", + "name": "execution_time", + "serializedName": "execution_time", + "type": { + "$id": "7349", + "kind": "float32", + "name": "float32", + "crossLanguageDefinitionId": "TypeSpec.float32", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.execution_time", + "serializationOptions": {} + }, + { + "$id": "7350", + "kind": "property", + "name": "scores", + "serializedName": "scores", + "type": { + "$id": "7351", + "kind": "unknown", + "name": "unknown", + "crossLanguageDefinitionId": "", + "decorators": [] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.scores", + "serializationOptions": {} + }, + { + "$id": "7352", + "kind": "property", + "name": "token_usage", + "serializedName": "token_usage", + "type": { + "$id": "7353", + "kind": "nullable", + "type": { + "$id": "7354", + "kind": "int32", + "name": "int32", + "crossLanguageDefinitionId": "TypeSpec.int32", + "decorators": [] + }, + "namespace": "" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.token_usage", + "serializationOptions": {} + }, + { + "$id": "7355", + "kind": "property", + "name": "sampled_model_name", + "serializedName": "sampled_model_name", + "type": { + "$id": "7356", + "kind": "nullable", + "type": { + "$id": "7357", + "kind": "string", + "name": "string", + "crossLanguageDefinitionId": "TypeSpec.string", + "decorators": [] + }, + "namespace": "" + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.sampled_model_name", + "serializationOptions": {} + } + ] + }, + "optional": false, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata", "serializationOptions": {} }, { - "$id": "7196", + "$id": "7358", "kind": "property", - "name": "logprob", - "serializedName": "logprob", - "doc": "The log probability of the token.", + "name": "sub_rewards", + "serializedName": "sub_rewards", "type": { - "$id": "7197", - "kind": "float32", - "name": "float32", - "crossLanguageDefinitionId": "TypeSpec.float32", + "$id": "7359", + "kind": "unknown", + "name": "unknown", + "crossLanguageDefinitionId": "", "decorators": [] }, "optional": false, @@ -92288,70 +94190,74 @@ "discriminator": false, "flatten": false, "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetAudioLogProbsProperties.logprob", + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.sub_rewards", "serializationOptions": {} }, { - "$id": "7198", + "$id": "7360", "kind": "property", - "name": "bytes", - "serializedName": "bytes", - "doc": "The bytes that were used to generate the log probability.", + "name": "model_grader_token_usage_per_model", + "serializedName": "model_grader_token_usage_per_model", "type": { - "$ref": "2375" + "$id": "7361", + "kind": "unknown", + "name": "unknown", + "crossLanguageDefinitionId": "", + "decorators": [] }, "optional": false, "readOnly": false, "discriminator": false, "flatten": false, "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetAudioLogProbsProperties.bytes", + "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.model_grader_token_usage_per_model", "serializationOptions": {} } ] }, { - "$id": "7199", + "$ref": "7310" + }, + { + "$ref": "7316" + }, + { + "$id": "7362", "kind": "model", - "name": "DotNetRealtimeLogProbsProperties", + "name": "ValidateGraderRequest", "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties", - "access": "public", - "usage": "Output", + "crossLanguageDefinitionId": "OpenAI.ValidateGraderRequest", + "usage": "None", "decorators": [], "properties": [ { - "$id": "7200", - "kind": "property", - "name": "token", - "serializedName": "token", - "doc": "The token that was used to generate the log probability.", - "type": { - "$id": "7201", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties.token", - "serializationOptions": {} - }, - { - "$id": "7202", + "$id": "7363", "kind": "property", - "name": "logprob", - "serializedName": "logprob", - "doc": "The log probability of the token.", + "name": "grader", + "serializedName": "grader", + "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "7203", - "kind": "float32", - "name": "float32", - "crossLanguageDefinitionId": "TypeSpec.float32", + "$id": "7364", + "kind": "union", + "name": "ValidateGraderRequestGrader", + "variantTypes": [ + { + "$ref": "3319" + }, + { + "$ref": "3322" + }, + { + "$ref": "3331" + }, + { + "$ref": "3339" + }, + { + "$ref": "3366" + } + ], + "namespace": "", "decorators": [] }, "optional": false, @@ -92359,332 +94265,76 @@ "discriminator": false, "flatten": false, "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties.logprob", - "serializationOptions": {} - }, - { - "$id": "7204", - "kind": "property", - "name": "bytes", - "serializedName": "bytes", - "doc": "The bytes that were used to generate the log probability.", - "type": { - "$ref": "2375" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetRealtimeLogProbsProperties.bytes", + "crossLanguageDefinitionId": "OpenAI.ValidateGraderRequest.grader", "serializationOptions": {} } ] }, { - "$id": "7205", + "$id": "7365", "kind": "model", - "name": "DotnetResponseWebSearchLocation", + "name": "ValidateGraderResponse", "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchLocation", - "access": "public", - "usage": "Input,Output", + "crossLanguageDefinitionId": "OpenAI.ValidateGraderResponse", + "usage": "None", "decorators": [], - "discriminatorProperty": { - "$id": "7206", - "kind": "property", - "name": "type", - "serializedName": "type", - "type": { - "$ref": "450" - }, - "optional": false, - "readOnly": false, - "discriminator": true, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchLocation.type", - "serializationOptions": {} - }, "properties": [ { - "$ref": "7206" - } - ], - "discriminatedSubtypes": { - "approximate": { - "$id": "7207", - "kind": "model", - "name": "DotnetResponseWebSearchApproximateLocation", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation", - "access": "public", - "usage": "Input,Output", - "discriminatorValue": "approximate", - "decorators": [], - "baseModel": { - "$ref": "7205" - }, - "properties": [ - { - "$id": "7208", - "kind": "property", - "name": "type", - "serializedName": "type", - "type": { - "$ref": "452" - }, - "optional": false, - "readOnly": false, - "discriminator": true, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.type", - "serializationOptions": {} - }, - { - "$id": "7209", - "kind": "property", - "name": "country", - "serializedName": "country", - "type": { - "$ref": "3890" - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.country", - "serializationOptions": {} - }, - { - "$id": "7210", - "kind": "property", - "name": "region", - "serializedName": "region", - "type": { - "$ref": "3893" + "$id": "7366", + "kind": "property", + "name": "grader", + "serializedName": "grader", + "doc": "The grader used for the fine-tuning job.", + "type": { + "$id": "7367", + "kind": "union", + "name": "ValidateGraderResponseGrader", + "variantTypes": [ + { + "$ref": "3319" }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.region", - "serializationOptions": {} - }, - { - "$id": "7211", - "kind": "property", - "name": "city", - "serializedName": "city", - "type": { - "$ref": "3896" + { + "$ref": "3322" }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.city", - "serializationOptions": {} - }, - { - "$id": "7212", - "kind": "property", - "name": "timezone", - "serializedName": "timezone", - "type": { - "$ref": "3899" + { + "$ref": "3331" }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotnetResponseWebSearchApproximateLocation.timezone", - "serializationOptions": {} - } - ] - } - } - }, - { - "$ref": "7207" - }, - { - "$id": "7213", - "kind": "model", - "name": "DotNetCombinedChunkingStrategyParam", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam", - "usage": "Input,Output", - "decorators": [], - "discriminatorProperty": { - "$id": "7214", - "kind": "property", - "name": "type", - "serializedName": "type", - "type": { - "$ref": "1207" - }, - "optional": false, - "readOnly": false, - "discriminator": true, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedChunkingStrategyParam.type", - "serializationOptions": {} - }, - "properties": [ - { - "$ref": "7214" - } - ], - "discriminatedSubtypes": { - "auto": { - "$id": "7215", - "kind": "model", - "name": "DotNetCombinedAutoChunkingStrategyParam", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedAutoChunkingStrategyParam", - "access": "public", - "usage": "Input,Output", - "discriminatorValue": "auto", - "decorators": [], - "baseModel": { - "$ref": "7213" - }, - "properties": [ - { - "$id": "7216", - "kind": "property", - "name": "type", - "serializedName": "type", - "doc": "Always `auto`.", - "type": { - "$ref": "1209" + { + "$ref": "3339" }, - "optional": false, - "readOnly": false, - "discriminator": true, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedAutoChunkingStrategyParam.type", - "serializationOptions": {} - } - ] - }, - "static": { - "$id": "7217", - "kind": "model", - "name": "DotNetCombinedStaticChunkingStrategyParam", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedStaticChunkingStrategyParam", - "access": "public", - "usage": "Input,Output", - "discriminatorValue": "static", - "decorators": [], - "baseModel": { - "$ref": "7213" + { + "$ref": "3366" + } + ], + "namespace": "", + "decorators": [] }, - "properties": [ - { - "$id": "7218", - "kind": "property", - "name": "type", - "serializedName": "type", - "doc": "Always `static`.", - "type": { - "$ref": "1210" - }, - "optional": false, - "readOnly": false, - "discriminator": true, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedStaticChunkingStrategyParam.type", - "serializationOptions": {} - }, - { - "$id": "7219", - "kind": "property", - "name": "static", - "serializedName": "static", - "type": { - "$ref": "2249" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedStaticChunkingStrategyParam.static", - "serializationOptions": {} - } - ] - }, - "other": { - "$id": "7220", - "kind": "model", - "name": "DotNetCombinedOtherChunkingStrategyParam", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedOtherChunkingStrategyParam", - "access": "public", - "usage": "Input,Output", - "discriminatorValue": "other", + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, "decorators": [], - "baseModel": { - "$ref": "7213" - }, - "properties": [ - { - "$id": "7221", - "kind": "property", - "name": "type", - "serializedName": "type", - "doc": "Always `other`.", - "type": { - "$ref": "1211" - }, - "optional": false, - "readOnly": false, - "discriminator": true, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.DotNetCombinedOtherChunkingStrategyParam.type", - "serializationOptions": {} - } - ] + "crossLanguageDefinitionId": "OpenAI.ValidateGraderResponse.grader", + "serializationOptions": {} } - } - }, - { - "$ref": "7215" - }, - { - "$ref": "7217" - }, - { - "$ref": "7220" + ] } ], "clients": [ { - "$id": "7222", + "$id": "7368", "kind": "client", "name": "OpenAIClient", "namespace": "OpenAI", "methods": [], "parameters": [ { - "$id": "7223", + "$id": "7369", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7224", + "$id": "7370", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -92699,7 +94349,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7225", + "$id": "7371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -92714,31 +94364,31 @@ "apiVersions": [], "children": [ { - "$id": "7226", + "$id": "7372", "kind": "client", "name": "Assistants", "namespace": "OpenAI", "methods": [ { - "$id": "7227", + "$id": "7373", "kind": "basic", "name": "GetAssistants", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of assistants.", "operation": { - "$id": "7228", + "$id": "7374", "name": "GetAssistants", "resourceName": "Assistants", "summary": "Returns a list of assistants.", "accessibility": "public", "parameters": [ { - "$id": "7229", + "$id": "7375", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1525" + "$ref": "1665" }, "location": "Header", "isApiVersion": false, @@ -92751,11 +94401,11 @@ "skipUrlEncoding": false }, { - "$id": "7230", + "$id": "7376", "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1527" + "$ref": "1667" }, "location": "Header", "isApiVersion": false, @@ -92768,12 +94418,12 @@ "skipUrlEncoding": false }, { - "$id": "7231", + "$id": "7377", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7232", + "$id": "7378", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92790,12 +94440,12 @@ "skipUrlEncoding": false }, { - "$id": "7233", + "$id": "7379", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -92808,12 +94458,12 @@ "skipUrlEncoding": false }, { - "$id": "7234", + "$id": "7380", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7235", + "$id": "7381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92830,12 +94480,12 @@ "skipUrlEncoding": false }, { - "$id": "7236", + "$id": "7382", "name": "before", "nameInRequest": "before", "doc": "A cursor for use in pagination. `before` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "7237", + "$id": "7383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92858,7 +94508,7 @@ 200 ], "bodyType": { - "$ref": "2097" + "$ref": "2237" }, "headers": [], "isErrorResponse": false, @@ -92878,11 +94528,11 @@ }, "parameters": [ { - "$id": "7238", + "$id": "7384", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1529" + "$ref": "1669" }, "location": "Header", "isApiVersion": false, @@ -92895,11 +94545,11 @@ "skipUrlEncoding": false }, { - "$id": "7239", + "$id": "7385", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1531" + "$ref": "1671" }, "location": "Header", "isApiVersion": false, @@ -92912,12 +94562,12 @@ "skipUrlEncoding": false }, { - "$id": "7240", + "$id": "7386", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7241", + "$id": "7387", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92934,12 +94584,12 @@ "skipUrlEncoding": false }, { - "$id": "7242", + "$id": "7388", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -92952,12 +94602,12 @@ "skipUrlEncoding": false }, { - "$id": "7243", + "$id": "7389", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7244", + "$id": "7390", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92974,12 +94624,12 @@ "skipUrlEncoding": false }, { - "$id": "7245", + "$id": "7391", "name": "before", "nameInRequest": "before", "doc": "A cursor for use in pagination. `before` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "7246", + "$id": "7392", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92998,7 +94648,7 @@ ], "response": { "type": { - "$ref": "2097" + "$ref": "2237" } }, "isOverride": false, @@ -93007,25 +94657,25 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants" }, { - "$id": "7247", + "$id": "7393", "kind": "basic", "name": "createAssistant", "accessibility": "public", "apiVersions": [], "summary": "Create an assistant with a model and instructions.", "operation": { - "$id": "7248", + "$id": "7394", "name": "createAssistant", "resourceName": "Assistants", "summary": "Create an assistant with a model and instructions.", "accessibility": "public", "parameters": [ { - "$id": "7249", + "$id": "7395", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1533" + "$ref": "1673" }, "location": "Header", "isApiVersion": false, @@ -93038,11 +94688,11 @@ "skipUrlEncoding": false }, { - "$id": "7250", + "$id": "7396", "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1535" + "$ref": "1675" }, "location": "Header", "isApiVersion": false, @@ -93055,12 +94705,12 @@ "skipUrlEncoding": false }, { - "$id": "7251", + "$id": "7397", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1537" + "$ref": "1677" }, "location": "Header", "isApiVersion": false, @@ -93073,11 +94723,11 @@ "skipUrlEncoding": false }, { - "$id": "7252", + "$id": "7398", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2214" + "$ref": "2354" }, "location": "Body", "isApiVersion": false, @@ -93096,7 +94746,7 @@ 200 ], "bodyType": { - "$ref": "2101" + "$ref": "2241" }, "headers": [], "isErrorResponse": false, @@ -93119,11 +94769,11 @@ }, "parameters": [ { - "$id": "7253", + "$id": "7399", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1539" + "$ref": "1679" }, "location": "Header", "isApiVersion": false, @@ -93136,11 +94786,11 @@ "skipUrlEncoding": false }, { - "$id": "7254", + "$id": "7400", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1541" + "$ref": "1681" }, "location": "Header", "isApiVersion": false, @@ -93153,11 +94803,11 @@ "skipUrlEncoding": false }, { - "$id": "7255", + "$id": "7401", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2214" + "$ref": "2354" }, "location": "Body", "isApiVersion": false, @@ -93170,12 +94820,12 @@ "skipUrlEncoding": false }, { - "$id": "7256", + "$id": "7402", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1537" + "$ref": "1677" }, "location": "Header", "isApiVersion": false, @@ -93190,7 +94840,7 @@ ], "response": { "type": { - "$ref": "2101" + "$ref": "2241" } }, "isOverride": false, @@ -93199,25 +94849,25 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant" }, { - "$id": "7257", + "$id": "7403", "kind": "basic", "name": "getAssistant", "accessibility": "public", "apiVersions": [], "summary": "Retrieves an assistant.", "operation": { - "$id": "7258", + "$id": "7404", "name": "getAssistant", "resourceName": "Assistants", "summary": "Retrieves an assistant.", "accessibility": "public", "parameters": [ { - "$id": "7259", + "$id": "7405", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1543" + "$ref": "1683" }, "location": "Header", "isApiVersion": false, @@ -93230,11 +94880,11 @@ "skipUrlEncoding": false }, { - "$id": "7260", + "$id": "7406", "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1545" + "$ref": "1685" }, "location": "Header", "isApiVersion": false, @@ -93247,12 +94897,12 @@ "skipUrlEncoding": false }, { - "$id": "7261", + "$id": "7407", "name": "assistant_id", "nameInRequest": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "7262", + "$id": "7408", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93275,7 +94925,7 @@ 200 ], "bodyType": { - "$ref": "2101" + "$ref": "2241" }, "headers": [], "isErrorResponse": false, @@ -93295,11 +94945,11 @@ }, "parameters": [ { - "$id": "7263", + "$id": "7409", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1547" + "$ref": "1687" }, "location": "Header", "isApiVersion": false, @@ -93312,11 +94962,11 @@ "skipUrlEncoding": false }, { - "$id": "7264", + "$id": "7410", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1549" + "$ref": "1689" }, "location": "Header", "isApiVersion": false, @@ -93329,12 +94979,12 @@ "skipUrlEncoding": false }, { - "$id": "7265", + "$id": "7411", "name": "assistant_id", "nameInRequest": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "7266", + "$id": "7412", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93353,7 +95003,7 @@ ], "response": { "type": { - "$ref": "2101" + "$ref": "2241" } }, "isOverride": false, @@ -93362,25 +95012,25 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant" }, { - "$id": "7267", + "$id": "7413", "kind": "basic", "name": "modifyAssistant", "accessibility": "public", "apiVersions": [], "summary": "Modifies an assistant.", "operation": { - "$id": "7268", + "$id": "7414", "name": "modifyAssistant", "resourceName": "Assistants", "summary": "Modifies an assistant.", "accessibility": "public", "parameters": [ { - "$id": "7269", + "$id": "7415", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1551" + "$ref": "1691" }, "location": "Header", "isApiVersion": false, @@ -93393,11 +95043,11 @@ "skipUrlEncoding": false }, { - "$id": "7270", + "$id": "7416", "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1553" + "$ref": "1693" }, "location": "Header", "isApiVersion": false, @@ -93410,12 +95060,12 @@ "skipUrlEncoding": false }, { - "$id": "7271", + "$id": "7417", "name": "assistant_id", "nameInRequest": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "7272", + "$id": "7418", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93432,12 +95082,12 @@ "skipUrlEncoding": false }, { - "$id": "7273", + "$id": "7419", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1555" + "$ref": "1695" }, "location": "Header", "isApiVersion": false, @@ -93450,11 +95100,11 @@ "skipUrlEncoding": false }, { - "$id": "7274", + "$id": "7420", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2264" + "$ref": "2404" }, "location": "Body", "isApiVersion": false, @@ -93473,7 +95123,7 @@ 200 ], "bodyType": { - "$ref": "2101" + "$ref": "2241" }, "headers": [], "isErrorResponse": false, @@ -93496,11 +95146,11 @@ }, "parameters": [ { - "$id": "7275", + "$id": "7421", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1557" + "$ref": "1697" }, "location": "Header", "isApiVersion": false, @@ -93513,11 +95163,11 @@ "skipUrlEncoding": false }, { - "$id": "7276", + "$id": "7422", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1559" + "$ref": "1699" }, "location": "Header", "isApiVersion": false, @@ -93530,12 +95180,12 @@ "skipUrlEncoding": false }, { - "$id": "7277", + "$id": "7423", "name": "assistant_id", "nameInRequest": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "7278", + "$id": "7424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93552,11 +95202,11 @@ "skipUrlEncoding": false }, { - "$id": "7279", + "$id": "7425", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2264" + "$ref": "2404" }, "location": "Body", "isApiVersion": false, @@ -93569,12 +95219,12 @@ "skipUrlEncoding": false }, { - "$id": "7280", + "$id": "7426", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1555" + "$ref": "1695" }, "location": "Header", "isApiVersion": false, @@ -93589,7 +95239,7 @@ ], "response": { "type": { - "$ref": "2101" + "$ref": "2241" } }, "isOverride": false, @@ -93598,25 +95248,25 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant" }, { - "$id": "7281", + "$id": "7427", "kind": "basic", "name": "deleteAssistant", "accessibility": "public", "apiVersions": [], "summary": "Delete an assistant.", "operation": { - "$id": "7282", + "$id": "7428", "name": "deleteAssistant", "resourceName": "Assistants", "summary": "Delete an assistant.", "accessibility": "public", "parameters": [ { - "$id": "7283", + "$id": "7429", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1561" + "$ref": "1701" }, "location": "Header", "isApiVersion": false, @@ -93629,11 +95279,11 @@ "skipUrlEncoding": false }, { - "$id": "7284", + "$id": "7430", "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1563" + "$ref": "1703" }, "location": "Header", "isApiVersion": false, @@ -93646,12 +95296,12 @@ "skipUrlEncoding": false }, { - "$id": "7285", + "$id": "7431", "name": "assistant_id", "nameInRequest": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "7286", + "$id": "7432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93674,7 +95324,7 @@ 200 ], "bodyType": { - "$ref": "2294" + "$ref": "2434" }, "headers": [], "isErrorResponse": false, @@ -93694,11 +95344,11 @@ }, "parameters": [ { - "$id": "7287", + "$id": "7433", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1565" + "$ref": "1705" }, "location": "Header", "isApiVersion": false, @@ -93711,11 +95361,11 @@ "skipUrlEncoding": false }, { - "$id": "7288", + "$id": "7434", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1567" + "$ref": "1707" }, "location": "Header", "isApiVersion": false, @@ -93728,12 +95378,12 @@ "skipUrlEncoding": false }, { - "$id": "7289", + "$id": "7435", "name": "assistant_id", "nameInRequest": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "7290", + "$id": "7436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93752,7 +95402,7 @@ ], "response": { "type": { - "$ref": "2294" + "$ref": "2434" } }, "isOverride": false, @@ -93763,12 +95413,12 @@ ], "parameters": [ { - "$id": "7291", + "$id": "7437", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7292", + "$id": "7438", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -93783,7 +95433,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7293", + "$id": "7439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -93797,35 +95447,35 @@ "crossLanguageDefinitionId": "OpenAI.Assistants", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7294", + "$id": "7440", "kind": "client", "name": "Audio", "namespace": "OpenAI", "methods": [ { - "$id": "7295", + "$id": "7441", "kind": "basic", "name": "GenerateSpeech", "accessibility": "public", "apiVersions": [], "summary": "Generates audio from the input text.", "operation": { - "$id": "7296", + "$id": "7442", "name": "GenerateSpeech", "resourceName": "Audio", "summary": "Generates audio from the input text.", "accessibility": "public", "parameters": [ { - "$id": "7297", + "$id": "7443", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1569" + "$ref": "1709" }, "location": "Header", "isApiVersion": false, @@ -93838,12 +95488,12 @@ "skipUrlEncoding": false }, { - "$id": "7298", + "$id": "7444", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1571" + "$ref": "1711" }, "location": "Header", "isApiVersion": false, @@ -93856,11 +95506,11 @@ "skipUrlEncoding": false }, { - "$id": "7299", + "$id": "7445", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2300" + "$ref": "2440" }, "location": "Body", "isApiVersion": false, @@ -93879,7 +95529,7 @@ 200 ], "bodyType": { - "$id": "7300", + "$id": "7446", "kind": "bytes", "name": "bytes", "crossLanguageDefinitionId": "TypeSpec.bytes", @@ -93891,7 +95541,7 @@ "nameInResponse": "Transfer-Encoding", "doc": "chunked", "type": { - "$id": "7301", + "$id": "7447", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93902,7 +95552,7 @@ "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1573" + "$ref": "1713" } } ], @@ -93926,11 +95576,11 @@ }, "parameters": [ { - "$id": "7302", + "$id": "7448", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1575" + "$ref": "1715" }, "location": "Header", "isApiVersion": false, @@ -93943,11 +95593,11 @@ "skipUrlEncoding": false }, { - "$id": "7303", + "$id": "7449", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2300" + "$ref": "2440" }, "location": "Body", "isApiVersion": false, @@ -93960,12 +95610,12 @@ "skipUrlEncoding": false }, { - "$id": "7304", + "$id": "7450", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1571" + "$ref": "1711" }, "location": "Header", "isApiVersion": false, @@ -93980,7 +95630,7 @@ ], "response": { "type": { - "$ref": "7300" + "$ref": "7446" } }, "isOverride": false, @@ -93989,25 +95639,25 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech" }, { - "$id": "7305", + "$id": "7451", "kind": "basic", "name": "TranscribeAudio", "accessibility": "public", "apiVersions": [], "summary": "Transcribes audio into the input language.", "operation": { - "$id": "7306", + "$id": "7452", "name": "TranscribeAudio", "resourceName": "Audio", "summary": "Transcribes audio into the input language.", "accessibility": "public", "parameters": [ { - "$id": "7307", + "$id": "7453", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -94020,11 +95670,11 @@ "skipUrlEncoding": false }, { - "$id": "7308", + "$id": "7454", "name": "contentType", "nameInRequest": "Content-Type", "type": { - "$ref": "1577" + "$ref": "1717" }, "location": "Header", "isApiVersion": false, @@ -94037,11 +95687,11 @@ "skipUrlEncoding": false }, { - "$id": "7309", + "$id": "7455", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2310" + "$ref": "2450" }, "location": "Body", "isApiVersion": false, @@ -94060,7 +95710,7 @@ 200 ], "bodyType": { - "$id": "7310", + "$id": "7456", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94071,14 +95721,14 @@ "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1579" + "$ref": "1719" } }, { "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1581" + "$ref": "1721" } } ], @@ -94105,11 +95755,11 @@ }, "parameters": [ { - "$id": "7311", + "$id": "7457", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -94122,11 +95772,11 @@ "skipUrlEncoding": false }, { - "$id": "7312", + "$id": "7458", "name": "contentType", - "nameInRequest": "contentType", + "nameInRequest": "content-type", "type": { - "$ref": "1583" + "$ref": "1723" }, "location": "Header", "isApiVersion": false, @@ -94139,11 +95789,11 @@ "skipUrlEncoding": false }, { - "$id": "7313", + "$id": "7459", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2310" + "$ref": "2450" }, "location": "Body", "isApiVersion": false, @@ -94158,7 +95808,7 @@ ], "response": { "type": { - "$ref": "7310" + "$ref": "7456" } }, "isOverride": false, @@ -94167,25 +95817,25 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription" }, { - "$id": "7314", + "$id": "7460", "kind": "basic", "name": "TranslateAudio", "accessibility": "public", "apiVersions": [], "summary": "Translates audio into English..", "operation": { - "$id": "7315", + "$id": "7461", "name": "TranslateAudio", "resourceName": "Audio", "summary": "Translates audio into English..", "accessibility": "public", "parameters": [ { - "$id": "7316", + "$id": "7462", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1585" + "$ref": "1725" }, "location": "Header", "isApiVersion": false, @@ -94198,11 +95848,11 @@ "skipUrlEncoding": false }, { - "$id": "7317", + "$id": "7463", "name": "contentType", "nameInRequest": "Content-Type", "type": { - "$ref": "1587" + "$ref": "1727" }, "location": "Header", "isApiVersion": false, @@ -94215,11 +95865,11 @@ "skipUrlEncoding": false }, { - "$id": "7318", + "$id": "7464", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2424" + "$ref": "2564" }, "location": "Body", "isApiVersion": false, @@ -94238,7 +95888,7 @@ 200 ], "bodyType": { - "$id": "7319", + "$id": "7465", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94249,7 +95899,7 @@ "name": "contentType", "nameInResponse": "content-type", "type": { - "$ref": "1589" + "$ref": "1729" } } ], @@ -94275,11 +95925,11 @@ }, "parameters": [ { - "$id": "7320", + "$id": "7466", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1591" + "$ref": "1731" }, "location": "Header", "isApiVersion": false, @@ -94292,11 +95942,11 @@ "skipUrlEncoding": false }, { - "$id": "7321", + "$id": "7467", "name": "contentType", - "nameInRequest": "contentType", + "nameInRequest": "content-type", "type": { - "$ref": "1593" + "$ref": "1733" }, "location": "Header", "isApiVersion": false, @@ -94309,11 +95959,11 @@ "skipUrlEncoding": false }, { - "$id": "7322", + "$id": "7468", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2424" + "$ref": "2564" }, "location": "Body", "isApiVersion": false, @@ -94328,7 +95978,7 @@ ], "response": { "type": { - "$ref": "7319" + "$ref": "7465" } }, "isOverride": false, @@ -94339,12 +95989,12 @@ ], "parameters": [ { - "$id": "7323", + "$id": "7469", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7324", + "$id": "7470", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -94359,7 +96009,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7325", + "$id": "7471", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -94373,35 +96023,35 @@ "crossLanguageDefinitionId": "OpenAI.Audio", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7326", + "$id": "7472", "kind": "client", "name": "Batches", "namespace": "OpenAI", "methods": [ { - "$id": "7327", + "$id": "7473", "kind": "basic", "name": "createBatch", "accessibility": "public", "apiVersions": [], "summary": "Creates and executes a batch from an uploaded file of requests", "operation": { - "$id": "7328", + "$id": "7474", "name": "createBatch", "resourceName": "Batches", "summary": "Creates and executes a batch from an uploaded file of requests", "accessibility": "public", "parameters": [ { - "$id": "7329", + "$id": "7475", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1595" + "$ref": "1735" }, "location": "Header", "isApiVersion": false, @@ -94414,12 +96064,12 @@ "skipUrlEncoding": false }, { - "$id": "7330", + "$id": "7476", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1597" + "$ref": "1737" }, "location": "Header", "isApiVersion": false, @@ -94432,11 +96082,11 @@ "skipUrlEncoding": false }, { - "$id": "7331", + "$id": "7477", "name": "createBatchRequest", "nameInRequest": "createBatchRequest", "type": { - "$ref": "2447" + "$ref": "2587" }, "location": "Body", "isApiVersion": false, @@ -94455,7 +96105,7 @@ 200 ], "bodyType": { - "$ref": "2453" + "$ref": "2593" }, "headers": [], "isErrorResponse": false, @@ -94478,11 +96128,11 @@ }, "parameters": [ { - "$id": "7332", + "$id": "7478", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1599" + "$ref": "1739" }, "location": "Header", "isApiVersion": false, @@ -94495,12 +96145,12 @@ "skipUrlEncoding": false }, { - "$id": "7333", + "$id": "7479", "name": "input_file_id", "nameInRequest": "input_file_id", "doc": "The ID of an uploaded file that contains requests for the new batch.\n\nSee [upload file](/docs/api-reference/files/create) for how to upload a file.\n\nYour input file must be formatted as a [JSONL file](/docs/api-reference/batch/requestInput),\nand must be uploaded with the purpose `batch`.", "type": { - "$id": "7334", + "$id": "7480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94517,12 +96167,12 @@ "skipUrlEncoding": false }, { - "$id": "7335", + "$id": "7481", "name": "endpoint", "nameInRequest": "endpoint", "doc": "The endpoint to be used for all requests in the batch. Currently `/v1/chat/completions` and\n`/v1/embeddings` are supported.", "type": { - "$ref": "129" + "$ref": "121" }, "location": "Body", "isApiVersion": false, @@ -94535,12 +96185,12 @@ "skipUrlEncoding": false }, { - "$id": "7336", + "$id": "7482", "name": "completion_window", "nameInRequest": "completion_window", "doc": "The time frame within which the batch should be processed. Currently only `24h` is supported.", "type": { - "$ref": "1287" + "$ref": "1427" }, "location": "Body", "isApiVersion": false, @@ -94553,12 +96203,12 @@ "skipUrlEncoding": false }, { - "$id": "7337", + "$id": "7483", "name": "metadata", "nameInRequest": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "location": "Body", "isApiVersion": false, @@ -94571,12 +96221,12 @@ "skipUrlEncoding": false }, { - "$id": "7338", + "$id": "7484", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1597" + "$ref": "1737" }, "location": "Header", "isApiVersion": false, @@ -94591,7 +96241,7 @@ ], "response": { "type": { - "$ref": "2453" + "$ref": "2593" } }, "isOverride": false, @@ -94600,25 +96250,25 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch" }, { - "$id": "7339", + "$id": "7485", "kind": "basic", "name": "GetBatches", "accessibility": "public", "apiVersions": [], "summary": "List your organization's batches.", "operation": { - "$id": "7340", + "$id": "7486", "name": "GetBatches", "resourceName": "Batches", "summary": "List your organization's batches.", "accessibility": "public", "parameters": [ { - "$id": "7341", + "$id": "7487", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1603" + "$ref": "1743" }, "location": "Header", "isApiVersion": false, @@ -94631,12 +96281,12 @@ "skipUrlEncoding": false }, { - "$id": "7342", + "$id": "7488", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7343", + "$id": "7489", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94653,12 +96303,12 @@ "skipUrlEncoding": false }, { - "$id": "7344", + "$id": "7490", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7345", + "$id": "7491", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94681,7 +96331,7 @@ 200 ], "bodyType": { - "$ref": "2520" + "$ref": "2660" }, "headers": [], "isErrorResponse": false, @@ -94701,11 +96351,11 @@ }, "parameters": [ { - "$id": "7346", + "$id": "7492", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1605" + "$ref": "1745" }, "location": "Header", "isApiVersion": false, @@ -94718,12 +96368,12 @@ "skipUrlEncoding": false }, { - "$id": "7347", + "$id": "7493", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7348", + "$id": "7494", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94740,12 +96390,12 @@ "skipUrlEncoding": false }, { - "$id": "7349", + "$id": "7495", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7350", + "$id": "7496", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94764,7 +96414,7 @@ ], "response": { "type": { - "$ref": "2520" + "$ref": "2660" } }, "isOverride": false, @@ -94773,25 +96423,25 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches" }, { - "$id": "7351", + "$id": "7497", "kind": "basic", "name": "GetBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a batch.", "operation": { - "$id": "7352", + "$id": "7498", "name": "GetBatch", "resourceName": "Batches", "summary": "Retrieves a batch.", "accessibility": "public", "parameters": [ { - "$id": "7353", + "$id": "7499", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1607" + "$ref": "1747" }, "location": "Header", "isApiVersion": false, @@ -94804,12 +96454,12 @@ "skipUrlEncoding": false }, { - "$id": "7354", + "$id": "7500", "name": "batch_id", "nameInRequest": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "7355", + "$id": "7501", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94832,7 +96482,7 @@ 200 ], "bodyType": { - "$ref": "2453" + "$ref": "2593" }, "headers": [], "isErrorResponse": false, @@ -94852,11 +96502,11 @@ }, "parameters": [ { - "$id": "7356", + "$id": "7502", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1609" + "$ref": "1749" }, "location": "Header", "isApiVersion": false, @@ -94869,12 +96519,12 @@ "skipUrlEncoding": false }, { - "$id": "7357", + "$id": "7503", "name": "batch_id", "nameInRequest": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "7358", + "$id": "7504", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94893,7 +96543,7 @@ ], "response": { "type": { - "$ref": "2453" + "$ref": "2593" } }, "isOverride": false, @@ -94902,25 +96552,25 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch" }, { - "$id": "7359", + "$id": "7505", "kind": "basic", "name": "cancelBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancels an in-progress batch.", "operation": { - "$id": "7360", + "$id": "7506", "name": "cancelBatch", "resourceName": "Batches", "summary": "Cancels an in-progress batch.", "accessibility": "public", "parameters": [ { - "$id": "7361", + "$id": "7507", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1611" + "$ref": "1751" }, "location": "Header", "isApiVersion": false, @@ -94933,12 +96583,12 @@ "skipUrlEncoding": false }, { - "$id": "7362", + "$id": "7508", "name": "batch_id", "nameInRequest": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "7363", + "$id": "7509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94961,7 +96611,7 @@ 200 ], "bodyType": { - "$ref": "2453" + "$ref": "2593" }, "headers": [], "isErrorResponse": false, @@ -94981,11 +96631,11 @@ }, "parameters": [ { - "$id": "7364", + "$id": "7510", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1613" + "$ref": "1753" }, "location": "Header", "isApiVersion": false, @@ -94998,12 +96648,12 @@ "skipUrlEncoding": false }, { - "$id": "7365", + "$id": "7511", "name": "batch_id", "nameInRequest": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "7366", + "$id": "7512", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95022,7 +96672,7 @@ ], "response": { "type": { - "$ref": "2453" + "$ref": "2593" } }, "isOverride": false, @@ -95033,12 +96683,12 @@ ], "parameters": [ { - "$id": "7367", + "$id": "7513", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7368", + "$id": "7514", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -95053,7 +96703,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7369", + "$id": "7515", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -95067,36 +96717,36 @@ "crossLanguageDefinitionId": "OpenAI.Batches", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7370", + "$id": "7516", "kind": "client", "name": "Chat", "namespace": "OpenAI", "methods": [ { - "$id": "7371", + "$id": "7517", "kind": "paging", "name": "listChatCompletions", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of chat completions.", "operation": { - "$id": "7372", + "$id": "7518", "name": "listChatCompletions", "resourceName": "Chat", "summary": "Returns a list of chat completions.", "accessibility": "public", "parameters": [ { - "$id": "7373", + "$id": "7519", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7374", + "$id": "7520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95113,12 +96763,12 @@ "skipUrlEncoding": false }, { - "$id": "7375", + "$id": "7521", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7376", + "$id": "7522", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95135,12 +96785,12 @@ "skipUrlEncoding": false }, { - "$id": "7377", + "$id": "7523", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -95153,11 +96803,11 @@ "skipUrlEncoding": false }, { - "$id": "7378", + "$id": "7524", "name": "metadata", "nameInRequest": "metadata", "type": { - "$ref": "2162" + "$ref": "2302" }, "location": "Query", "isApiVersion": false, @@ -95170,11 +96820,11 @@ "skipUrlEncoding": false }, { - "$id": "7379", + "$id": "7525", "name": "model", "nameInRequest": "model", "type": { - "$id": "7380", + "$id": "7526", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95191,11 +96841,11 @@ "skipUrlEncoding": false }, { - "$id": "7381", + "$id": "7527", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1615" + "$ref": "1755" }, "location": "Header", "isApiVersion": false, @@ -95214,7 +96864,7 @@ 200 ], "bodyType": { - "$ref": "2530" + "$ref": "2670" }, "headers": [], "isErrorResponse": false, @@ -95234,12 +96884,12 @@ }, "parameters": [ { - "$id": "7382", + "$id": "7528", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7383", + "$id": "7529", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95256,12 +96906,12 @@ "skipUrlEncoding": false }, { - "$id": "7384", + "$id": "7530", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7385", + "$id": "7531", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95278,12 +96928,12 @@ "skipUrlEncoding": false }, { - "$id": "7386", + "$id": "7532", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -95296,11 +96946,11 @@ "skipUrlEncoding": false }, { - "$id": "7387", + "$id": "7533", "name": "metadata", "nameInRequest": "metadata", "type": { - "$ref": "2162" + "$ref": "2302" }, "location": "Query", "isApiVersion": false, @@ -95313,11 +96963,11 @@ "skipUrlEncoding": false }, { - "$id": "7388", + "$id": "7534", "name": "model", "nameInRequest": "model", "type": { - "$id": "7389", + "$id": "7535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95334,11 +96984,11 @@ "skipUrlEncoding": false }, { - "$id": "7390", + "$id": "7536", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1615" + "$ref": "1755" }, "location": "Header", "isApiVersion": false, @@ -95353,7 +97003,7 @@ ], "response": { "type": { - "$ref": "2533" + "$ref": "2673" }, "resultSegments": [ "data" @@ -95369,7 +97019,7 @@ ], "continuationToken": { "parameter": { - "$ref": "7373" + "$ref": "7519" }, "responseSegments": [ "last_id" @@ -95379,25 +97029,25 @@ } }, { - "$id": "7391", + "$id": "7537", "kind": "basic", "name": "CompleteChat", "accessibility": "public", "apiVersions": [], "summary": "Creates a model response for the given chat conversation.", "operation": { - "$id": "7392", + "$id": "7538", "name": "CompleteChat", "resourceName": "Chat", "summary": "Creates a model response for the given chat conversation.", "accessibility": "public", "parameters": [ { - "$id": "7393", + "$id": "7539", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1617" + "$ref": "1757" }, "location": "Header", "isApiVersion": false, @@ -95410,12 +97060,12 @@ "skipUrlEncoding": false }, { - "$id": "7394", + "$id": "7540", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1619" + "$ref": "1759" }, "location": "Header", "isApiVersion": false, @@ -95428,11 +97078,11 @@ "skipUrlEncoding": false }, { - "$id": "7395", + "$id": "7541", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2662" + "$ref": "2802" }, "location": "Body", "isApiVersion": false, @@ -95451,14 +97101,14 @@ 200 ], "bodyType": { - "$ref": "2903" + "$ref": "3043" }, "headers": [ { "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1621" + "$ref": "1761" } } ], @@ -95483,11 +97133,11 @@ }, "parameters": [ { - "$id": "7396", + "$id": "7542", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1623" + "$ref": "1763" }, "location": "Header", "isApiVersion": false, @@ -95500,11 +97150,11 @@ "skipUrlEncoding": false }, { - "$id": "7397", + "$id": "7543", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "2662" + "$ref": "2802" }, "location": "Body", "isApiVersion": false, @@ -95517,12 +97167,12 @@ "skipUrlEncoding": false }, { - "$id": "7398", + "$id": "7544", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1619" + "$ref": "1759" }, "location": "Header", "isApiVersion": false, @@ -95537,7 +97187,7 @@ ], "response": { "type": { - "$ref": "2903" + "$ref": "3043" } }, "isOverride": false, @@ -95546,26 +97196,26 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion" }, { - "$id": "7399", + "$id": "7545", "kind": "basic", "name": "getChatCompletion", "accessibility": "public", "apiVersions": [], "summary": "Get a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.", "operation": { - "$id": "7400", + "$id": "7546", "name": "getChatCompletion", "resourceName": "Chat", "summary": "Get a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.", "accessibility": "public", "parameters": [ { - "$id": "7401", + "$id": "7547", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "7402", + "$id": "7548", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95582,11 +97232,11 @@ "skipUrlEncoding": false }, { - "$id": "7403", + "$id": "7549", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1625" + "$ref": "1765" }, "location": "Header", "isApiVersion": false, @@ -95605,7 +97255,7 @@ 200 ], "bodyType": { - "$ref": "2534" + "$ref": "2674" }, "headers": [], "isErrorResponse": false, @@ -95625,12 +97275,12 @@ }, "parameters": [ { - "$id": "7404", + "$id": "7550", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "7405", + "$id": "7551", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95647,11 +97297,11 @@ "skipUrlEncoding": false }, { - "$id": "7406", + "$id": "7552", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1625" + "$ref": "1765" }, "location": "Header", "isApiVersion": false, @@ -95666,7 +97316,7 @@ ], "response": { "type": { - "$ref": "2534" + "$ref": "2674" } }, "isOverride": false, @@ -95675,26 +97325,26 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion" }, { - "$id": "7407", + "$id": "7553", "kind": "basic", "name": "updateChatCompletion", "accessibility": "public", "apiVersions": [], "summary": "Modify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.\")", "operation": { - "$id": "7408", + "$id": "7554", "name": "updateChatCompletion", "resourceName": "Chat", "summary": "Modify a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be modified. Currently, the only supported modification is to update the `metadata` field.\")", "accessibility": "public", "parameters": [ { - "$id": "7409", + "$id": "7555", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "7410", + "$id": "7556", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95711,12 +97361,12 @@ "skipUrlEncoding": false }, { - "$id": "7411", + "$id": "7557", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1627" + "$ref": "1767" }, "location": "Header", "isApiVersion": false, @@ -95729,11 +97379,11 @@ "skipUrlEncoding": false }, { - "$id": "7412", + "$id": "7558", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1629" + "$ref": "1769" }, "location": "Header", "isApiVersion": false, @@ -95746,11 +97396,11 @@ "skipUrlEncoding": false }, { - "$id": "7413", + "$id": "7559", "name": "updateChatCompletionRequest", "nameInRequest": "updateChatCompletionRequest", "type": { - "$ref": "2979" + "$ref": "3112" }, "location": "Body", "isApiVersion": false, @@ -95769,7 +97419,7 @@ 200 ], "bodyType": { - "$ref": "2534" + "$ref": "2674" }, "headers": [], "isErrorResponse": false, @@ -95792,12 +97442,12 @@ }, "parameters": [ { - "$id": "7414", + "$id": "7560", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "7415", + "$id": "7561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95814,12 +97464,12 @@ "skipUrlEncoding": false }, { - "$id": "7416", + "$id": "7562", "name": "metadata", "nameInRequest": "metadata", "doc": "Set of 16 key-value pairs that can be attached to an object. This can be\nuseful for storing additional information about the object in a structured\nformat, and querying for objects via API or the dashboard.\n\nKeys are strings with a maximum length of 64 characters. Values are strings\nwith a maximum length of 512 characters.", "type": { - "$ref": "2162" + "$ref": "2302" }, "location": "Body", "isApiVersion": false, @@ -95832,12 +97482,12 @@ "skipUrlEncoding": false }, { - "$id": "7417", + "$id": "7563", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1627" + "$ref": "1767" }, "location": "Header", "isApiVersion": false, @@ -95850,11 +97500,11 @@ "skipUrlEncoding": false }, { - "$id": "7418", + "$id": "7564", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1629" + "$ref": "1769" }, "location": "Header", "isApiVersion": false, @@ -95869,7 +97519,7 @@ ], "response": { "type": { - "$ref": "2534" + "$ref": "2674" } }, "isOverride": false, @@ -95878,26 +97528,26 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion" }, { - "$id": "7419", + "$id": "7565", "kind": "basic", "name": "deleteChatCompletion", "accessibility": "public", "apiVersions": [], "summary": "Delete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.", "operation": { - "$id": "7420", + "$id": "7566", "name": "deleteChatCompletion", "resourceName": "Chat", "summary": "Delete a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` can be deleted.", "accessibility": "public", "parameters": [ { - "$id": "7421", + "$id": "7567", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "7422", + "$id": "7568", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95914,11 +97564,11 @@ "skipUrlEncoding": false }, { - "$id": "7423", + "$id": "7569", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1631" + "$ref": "1771" }, "location": "Header", "isApiVersion": false, @@ -95937,7 +97587,7 @@ 200 ], "bodyType": { - "$ref": "2981" + "$ref": "3114" }, "headers": [], "isErrorResponse": false, @@ -95957,12 +97607,12 @@ }, "parameters": [ { - "$id": "7424", + "$id": "7570", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "7425", + "$id": "7571", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95979,11 +97629,11 @@ "skipUrlEncoding": false }, { - "$id": "7426", + "$id": "7572", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1631" + "$ref": "1771" }, "location": "Header", "isApiVersion": false, @@ -95998,7 +97648,7 @@ ], "response": { "type": { - "$ref": "2981" + "$ref": "3114" } }, "isOverride": false, @@ -96007,26 +97657,26 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion" }, { - "$id": "7427", + "$id": "7573", "kind": "paging", "name": "getChatCompletionMessages", "accessibility": "public", "apiVersions": [], "summary": "Get the messages of a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.", "operation": { - "$id": "7428", + "$id": "7574", "name": "getChatCompletionMessages", "resourceName": "Chat", "summary": "Get the messages of a stored chat completion. Only Chat Completions that have been created with the `store` parameter set to `true` will be returned.", "accessibility": "public", "parameters": [ { - "$id": "7429", + "$id": "7575", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "7430", + "$id": "7576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96043,12 +97693,12 @@ "skipUrlEncoding": false }, { - "$id": "7431", + "$id": "7577", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7432", + "$id": "7578", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96065,12 +97715,12 @@ "skipUrlEncoding": false }, { - "$id": "7433", + "$id": "7579", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7434", + "$id": "7580", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96087,12 +97737,12 @@ "skipUrlEncoding": false }, { - "$id": "7435", + "$id": "7581", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -96105,11 +97755,11 @@ "skipUrlEncoding": false }, { - "$id": "7436", + "$id": "7582", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1633" + "$ref": "1773" }, "location": "Header", "isApiVersion": false, @@ -96128,7 +97778,7 @@ 200 ], "bodyType": { - "$ref": "2987" + "$ref": "3120" }, "headers": [], "isErrorResponse": false, @@ -96148,12 +97798,12 @@ }, "parameters": [ { - "$id": "7437", + "$id": "7583", "name": "completion_id", "nameInRequest": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "7438", + "$id": "7584", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96170,12 +97820,12 @@ "skipUrlEncoding": false }, { - "$id": "7439", + "$id": "7585", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7440", + "$id": "7586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96192,12 +97842,12 @@ "skipUrlEncoding": false }, { - "$id": "7441", + "$id": "7587", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7442", + "$id": "7588", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96214,12 +97864,12 @@ "skipUrlEncoding": false }, { - "$id": "7443", + "$id": "7589", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -96232,11 +97882,11 @@ "skipUrlEncoding": false }, { - "$id": "7444", + "$id": "7590", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1633" + "$ref": "1773" }, "location": "Header", "isApiVersion": false, @@ -96251,7 +97901,7 @@ ], "response": { "type": { - "$ref": "2990" + "$ref": "3123" }, "resultSegments": [ "data" @@ -96267,7 +97917,7 @@ ], "continuationToken": { "parameter": { - "$ref": "7431" + "$ref": "7577" }, "responseSegments": [ "last_id" @@ -96279,12 +97929,12 @@ ], "parameters": [ { - "$id": "7445", + "$id": "7591", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7446", + "$id": "7592", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -96299,7 +97949,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7447", + "$id": "7593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -96313,34 +97963,34 @@ "crossLanguageDefinitionId": "OpenAI.Chat", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7448", + "$id": "7594", "kind": "client", "name": "Containers", "namespace": "OpenAI", "methods": [ { - "$id": "7449", + "$id": "7595", "kind": "basic", "name": "listContainers", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7450", + "$id": "7596", "name": "listContainers", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7451", + "$id": "7597", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7452", + "$id": "7598", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96357,12 +98007,12 @@ "skipUrlEncoding": false }, { - "$id": "7453", + "$id": "7599", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -96375,12 +98025,12 @@ "skipUrlEncoding": false }, { - "$id": "7454", + "$id": "7600", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7455", + "$id": "7601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96397,11 +98047,11 @@ "skipUrlEncoding": false }, { - "$id": "7456", + "$id": "7602", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1635" + "$ref": "1775" }, "location": "Header", "isApiVersion": false, @@ -96420,303 +98070,7 @@ 200 ], "bodyType": { - "$id": "7457", - "kind": "model", - "name": "ContainerListResource", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.ContainerListResource", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7458", - "kind": "property", - "name": "object", - "serializedName": "object", - "doc": "The type of object returned, must be 'list'.", - "type": { - "$ref": "1637" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerListResource.object", - "serializationOptions": {} - }, - { - "$id": "7459", - "kind": "property", - "name": "data", - "serializedName": "data", - "doc": "A list of containers.", - "type": { - "$id": "7460", - "kind": "array", - "name": "ArrayContainerResource", - "valueType": { - "$id": "7461", - "kind": "model", - "name": "ContainerResource", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.ContainerResource", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7462", - "kind": "property", - "name": "id", - "serializedName": "id", - "doc": "Unique identifier for the container.", - "type": { - "$id": "7463", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.id", - "serializationOptions": {} - }, - { - "$id": "7464", - "kind": "property", - "name": "object", - "serializedName": "object", - "doc": "The type of this object.", - "type": { - "$id": "7465", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.object", - "serializationOptions": {} - }, - { - "$id": "7466", - "kind": "property", - "name": "name", - "serializedName": "name", - "doc": "Name of the container.", - "type": { - "$id": "7467", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.name", - "serializationOptions": {} - }, - { - "$id": "7468", - "kind": "property", - "name": "created_at", - "serializedName": "created_at", - "doc": "Unix timestamp (in seconds) when the container was created.", - "type": { - "$id": "7469", - "kind": "utcDateTime", - "name": "utcDateTime", - "encode": "unixTimestamp", - "wireType": { - "$id": "7470", - "kind": "int32", - "name": "int32", - "crossLanguageDefinitionId": "TypeSpec.int32", - "decorators": [] - }, - "crossLanguageDefinitionId": "TypeSpec.utcDateTime", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.created_at", - "serializationOptions": {} - }, - { - "$id": "7471", - "kind": "property", - "name": "status", - "serializedName": "status", - "doc": "Status of the container (e.g., active, deleted).", - "type": { - "$id": "7472", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.status", - "serializationOptions": {} - }, - { - "$id": "7473", - "kind": "property", - "name": "expires_after", - "serializedName": "expires_after", - "doc": "The container will expire after this time period.\nThe anchor is the reference point for the expiration.\nThe minutes is the number of minutes after the anchor before the container expires.", - "type": { - "$id": "7474", - "kind": "model", - "name": "ContainerResourceExpiresAfter", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after.anonymous", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7475", - "kind": "property", - "name": "anchor", - "serializedName": "anchor", - "doc": "The reference point for the expiration.", - "type": { - "$ref": "1639" - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after.anonymous.anchor", - "serializationOptions": {} - }, - { - "$id": "7476", - "kind": "property", - "name": "minutes", - "serializedName": "minutes", - "doc": "The number of minutes after the anchor before the container expires.", - "type": { - "$id": "7477", - "kind": "int32", - "name": "int32", - "crossLanguageDefinitionId": "TypeSpec.int32", - "decorators": [] - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after.anonymous.minutes", - "serializationOptions": {} - } - ] - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerResource.expires_after", - "serializationOptions": {} - } - ] - }, - "crossLanguageDefinitionId": "TypeSpec.Array", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerListResource.data", - "serializationOptions": {} - }, - { - "$id": "7478", - "kind": "property", - "name": "first_id", - "serializedName": "first_id", - "doc": "The ID of the first container in the list.", - "type": { - "$id": "7479", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerListResource.first_id", - "serializationOptions": {} - }, - { - "$id": "7480", - "kind": "property", - "name": "last_id", - "serializedName": "last_id", - "doc": "The ID of the last container in the list.", - "type": { - "$id": "7481", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerListResource.last_id", - "serializationOptions": {} - }, - { - "$id": "7482", - "kind": "property", - "name": "has_more", - "serializedName": "has_more", - "doc": "Whether there are more containers available.", - "type": { - "$id": "7483", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerListResource.has_more", - "serializationOptions": {} - } - ] + "$ref": "7222" }, "headers": [], "isErrorResponse": false, @@ -96736,12 +98090,12 @@ }, "parameters": [ { - "$id": "7484", + "$id": "7603", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7485", + "$id": "7604", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96758,12 +98112,12 @@ "skipUrlEncoding": false }, { - "$id": "7486", + "$id": "7605", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -96776,12 +98130,12 @@ "skipUrlEncoding": false }, { - "$id": "7487", + "$id": "7606", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7488", + "$id": "7607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96798,11 +98152,11 @@ "skipUrlEncoding": false }, { - "$id": "7489", + "$id": "7608", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1635" + "$ref": "1775" }, "location": "Header", "isApiVersion": false, @@ -96817,7 +98171,7 @@ ], "response": { "type": { - "$ref": "7457" + "$ref": "7222" } }, "isOverride": false, @@ -96826,24 +98180,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainers" }, { - "$id": "7490", + "$id": "7609", "kind": "basic", "name": "createContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7491", + "$id": "7610", "name": "createContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7492", + "$id": "7611", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1641" + "$ref": "1781" }, "location": "Header", "isApiVersion": false, @@ -96856,11 +98210,11 @@ "skipUrlEncoding": false }, { - "$id": "7493", + "$id": "7612", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1643" + "$ref": "1783" }, "location": "Header", "isApiVersion": false, @@ -96873,119 +98227,11 @@ "skipUrlEncoding": false }, { - "$id": "7494", + "$id": "7613", "name": "body", "nameInRequest": "body", "type": { - "$id": "7495", - "kind": "model", - "name": "CreateContainerBody", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.CreateContainerBody", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7496", - "kind": "property", - "name": "name", - "serializedName": "name", - "doc": "Name of the container to create.", - "type": { - "$id": "7497", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.name", - "serializationOptions": {} - }, - { - "$id": "7498", - "kind": "property", - "name": "file_ids", - "serializedName": "file_ids", - "doc": "IDs of files to copy to the container.", - "type": { - "$ref": "2155" - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.file_ids", - "serializationOptions": {} - }, - { - "$id": "7499", - "kind": "property", - "name": "expires_after", - "serializedName": "expires_after", - "doc": "Container expiration time in seconds relative to the 'anchor' time.", - "type": { - "$id": "7500", - "kind": "model", - "name": "CreateContainerBodyExpiresAfter", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after.anonymous", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7501", - "kind": "property", - "name": "anchor", - "serializedName": "anchor", - "doc": "Time anchor for the expiration time. Currently only 'last_active_at' is supported.", - "type": { - "$ref": "1645" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after.anonymous.anchor", - "serializationOptions": {} - }, - { - "$id": "7502", - "kind": "property", - "name": "minutes", - "serializedName": "minutes", - "type": { - "$id": "7503", - "kind": "int32", - "name": "int32", - "crossLanguageDefinitionId": "TypeSpec.int32", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after.anonymous.minutes", - "serializationOptions": {} - } - ] - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateContainerBody.expires_after", - "serializationOptions": {} - } - ] + "$ref": "7249" }, "location": "Body", "isApiVersion": false, @@ -97004,7 +98250,7 @@ 200 ], "bodyType": { - "$ref": "7461" + "$ref": "7226" }, "headers": [], "isErrorResponse": false, @@ -97027,11 +98273,11 @@ }, "parameters": [ { - "$id": "7504", + "$id": "7614", "name": "body", "nameInRequest": "body", "type": { - "$ref": "7495" + "$ref": "7249" }, "location": "Body", "isApiVersion": false, @@ -97044,12 +98290,12 @@ "skipUrlEncoding": false }, { - "$id": "7505", + "$id": "7615", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1641" + "$ref": "1781" }, "location": "Header", "isApiVersion": false, @@ -97062,11 +98308,11 @@ "skipUrlEncoding": false }, { - "$id": "7506", + "$id": "7616", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1643" + "$ref": "1783" }, "location": "Header", "isApiVersion": false, @@ -97081,7 +98327,7 @@ ], "response": { "type": { - "$ref": "7461" + "$ref": "7226" } }, "isOverride": false, @@ -97090,23 +98336,23 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer" }, { - "$id": "7507", + "$id": "7617", "kind": "basic", "name": "GetContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7508", + "$id": "7618", "name": "GetContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7509", + "$id": "7619", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7510", + "$id": "7620", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97123,11 +98369,11 @@ "skipUrlEncoding": false }, { - "$id": "7511", + "$id": "7621", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1647" + "$ref": "1787" }, "location": "Header", "isApiVersion": false, @@ -97146,7 +98392,7 @@ 200 ], "bodyType": { - "$ref": "7461" + "$ref": "7226" }, "headers": [], "isErrorResponse": false, @@ -97166,11 +98412,11 @@ }, "parameters": [ { - "$id": "7512", + "$id": "7622", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7513", + "$id": "7623", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97187,11 +98433,11 @@ "skipUrlEncoding": false }, { - "$id": "7514", + "$id": "7624", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1647" + "$ref": "1787" }, "location": "Header", "isApiVersion": false, @@ -97206,7 +98452,7 @@ ], "response": { "type": { - "$ref": "7461" + "$ref": "7226" } }, "isOverride": false, @@ -97215,23 +98461,23 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer" }, { - "$id": "7515", + "$id": "7625", "kind": "basic", "name": "deleteContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7516", + "$id": "7626", "name": "deleteContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7517", + "$id": "7627", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7518", + "$id": "7628", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97248,11 +98494,11 @@ "skipUrlEncoding": false }, { - "$id": "7519", + "$id": "7629", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1649" + "$ref": "1789" }, "location": "Header", "isApiVersion": false, @@ -97271,67 +98517,7 @@ 200 ], "bodyType": { - "$id": "7520", - "kind": "model", - "name": "DeleteContainerResponse", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7521", - "kind": "property", - "name": "id", - "serializedName": "id", - "type": { - "$id": "7522", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous.id", - "serializationOptions": {} - }, - { - "$id": "7523", - "kind": "property", - "name": "object", - "serializedName": "object", - "type": { - "$ref": "1651" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous.object", - "serializationOptions": {} - }, - { - "$id": "7524", - "kind": "property", - "name": "deleted", - "serializedName": "deleted", - "type": { - "$ref": "1653" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.deleteContainer.Response.anonymous.deleted", - "serializationOptions": {} - } - ] + "$ref": "7258" }, "headers": [], "isErrorResponse": false, @@ -97351,11 +98537,11 @@ }, "parameters": [ { - "$id": "7525", + "$id": "7630", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7526", + "$id": "7631", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97372,11 +98558,11 @@ "skipUrlEncoding": false }, { - "$id": "7527", + "$id": "7632", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1649" + "$ref": "1789" }, "location": "Header", "isApiVersion": false, @@ -97391,7 +98577,7 @@ ], "response": { "type": { - "$ref": "7520" + "$ref": "7258" } }, "isOverride": false, @@ -97400,23 +98586,23 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer" }, { - "$id": "7528", + "$id": "7633", "kind": "basic", "name": "createContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7529", + "$id": "7634", "name": "createContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7530", + "$id": "7635", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7531", + "$id": "7636", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97433,11 +98619,11 @@ "skipUrlEncoding": false }, { - "$id": "7532", + "$id": "7637", "name": "contentType", "nameInRequest": "Content-Type", "type": { - "$ref": "1655" + "$ref": "1795" }, "location": "Header", "isApiVersion": false, @@ -97450,11 +98636,11 @@ "skipUrlEncoding": false }, { - "$id": "7533", + "$id": "7638", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1657" + "$ref": "1797" }, "location": "Header", "isApiVersion": false, @@ -97467,82 +98653,11 @@ "skipUrlEncoding": false }, { - "$id": "7534", + "$id": "7639", "name": "body", "nameInRequest": "body", "type": { - "$id": "7535", - "kind": "model", - "name": "CreateContainerFileBody", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.CreateContainerFileBody", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7536", - "kind": "property", - "name": "file_id", - "serializedName": "file_id", - "doc": "Name of the file to create.", - "type": { - "$id": "7537", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateContainerFileBody.file_id", - "serializationOptions": { - "multipart": { - "isFilePart": false, - "isMulti": false, - "defaultContentTypes": [ - "text/plain" - ], - "name": "file_id", - "headers": [] - } - } - }, - { - "$id": "7538", - "kind": "property", - "name": "file", - "serializedName": "file", - "doc": "The File object (not file name) to be uploaded.", - "type": { - "$id": "7539", - "kind": "bytes", - "name": "bytes", - "encode": "base64", - "crossLanguageDefinitionId": "TypeSpec.bytes", - "decorators": [] - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.CreateContainerFileBody.file", - "serializationOptions": { - "multipart": { - "isFilePart": true, - "isMulti": false, - "defaultContentTypes": [ - "application/octet-stream" - ], - "name": "file", - "headers": [] - } - } - } - ] + "$ref": "7263" }, "location": "Body", "isApiVersion": false, @@ -97561,170 +98676,7 @@ 200 ], "bodyType": { - "$id": "7540", - "kind": "model", - "name": "ContainerFileResource", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7541", - "kind": "property", - "name": "id", - "serializedName": "id", - "doc": "Unique identifier for the file.", - "type": { - "$id": "7542", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.id", - "serializationOptions": {} - }, - { - "$id": "7543", - "kind": "property", - "name": "object", - "serializedName": "object", - "doc": "The type of this object (`container.file`).", - "type": { - "$id": "7544", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.object", - "serializationOptions": {} - }, - { - "$id": "7545", - "kind": "property", - "name": "container_id", - "serializedName": "container_id", - "doc": "The container this file belongs to.", - "type": { - "$id": "7546", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.container_id", - "serializationOptions": {} - }, - { - "$id": "7547", - "kind": "property", - "name": "created_at", - "serializedName": "created_at", - "doc": "Unix timestamp (in seconds) when the file was created.", - "type": { - "$id": "7548", - "kind": "utcDateTime", - "name": "utcDateTime", - "encode": "unixTimestamp", - "wireType": { - "$id": "7549", - "kind": "int32", - "name": "int32", - "crossLanguageDefinitionId": "TypeSpec.int32", - "decorators": [] - }, - "crossLanguageDefinitionId": "TypeSpec.utcDateTime", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.created_at", - "serializationOptions": {} - }, - { - "$id": "7550", - "kind": "property", - "name": "bytes", - "serializedName": "bytes", - "doc": "Size of the file in bytes.", - "type": { - "$id": "7551", - "kind": "int32", - "name": "int32", - "crossLanguageDefinitionId": "TypeSpec.int32", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.bytes", - "serializationOptions": {} - }, - { - "$id": "7552", - "kind": "property", - "name": "path", - "serializedName": "path", - "doc": "Path of the file in the container.", - "type": { - "$id": "7553", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.path", - "serializationOptions": {} - }, - { - "$id": "7554", - "kind": "property", - "name": "source", - "serializedName": "source", - "doc": "Source of the file (e.g., `user`, `assistant`).", - "type": { - "$id": "7555", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileResource.source", - "serializationOptions": {} - } - ] + "$ref": "7268" }, "headers": [], "isErrorResponse": false, @@ -97747,11 +98699,11 @@ }, "parameters": [ { - "$id": "7556", + "$id": "7640", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7557", + "$id": "7641", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97768,11 +98720,11 @@ "skipUrlEncoding": false }, { - "$id": "7558", + "$id": "7642", "name": "contentType", - "nameInRequest": "contentType", + "nameInRequest": "content-type", "type": { - "$ref": "1659" + "$ref": "1799" }, "location": "Header", "isApiVersion": false, @@ -97785,11 +98737,11 @@ "skipUrlEncoding": false }, { - "$id": "7559", + "$id": "7643", "name": "body", "nameInRequest": "body", "type": { - "$ref": "7535" + "$ref": "7263" }, "location": "Body", "isApiVersion": false, @@ -97802,11 +98754,11 @@ "skipUrlEncoding": false }, { - "$id": "7560", + "$id": "7644", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1657" + "$ref": "1797" }, "location": "Header", "isApiVersion": false, @@ -97821,7 +98773,7 @@ ], "response": { "type": { - "$ref": "7540" + "$ref": "7268" } }, "isOverride": false, @@ -97830,23 +98782,23 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile" }, { - "$id": "7561", + "$id": "7645", "kind": "basic", "name": "listContainerFiles", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7562", + "$id": "7646", "name": "listContainerFiles", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7563", + "$id": "7647", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7564", + "$id": "7648", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97863,12 +98815,12 @@ "skipUrlEncoding": false }, { - "$id": "7565", + "$id": "7649", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7566", + "$id": "7650", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97885,12 +98837,12 @@ "skipUrlEncoding": false }, { - "$id": "7567", + "$id": "7651", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -97903,12 +98855,12 @@ "skipUrlEncoding": false }, { - "$id": "7568", + "$id": "7652", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7569", + "$id": "7653", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97925,11 +98877,11 @@ "skipUrlEncoding": false }, { - "$id": "7570", + "$id": "7654", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1661" + "$ref": "1801" }, "location": "Header", "isApiVersion": false, @@ -97948,119 +98900,7 @@ 200 ], "bodyType": { - "$id": "7571", - "kind": "model", - "name": "ContainerFileListResource", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7572", - "kind": "property", - "name": "object", - "serializedName": "object", - "doc": "The type of object returned, must be 'list'.", - "type": { - "$ref": "1663" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.object", - "serializationOptions": {} - }, - { - "$id": "7573", - "kind": "property", - "name": "data", - "serializedName": "data", - "doc": "A list of container files.", - "type": { - "$id": "7574", - "kind": "array", - "name": "ArrayContainerFileResource", - "valueType": { - "$ref": "7540" - }, - "crossLanguageDefinitionId": "TypeSpec.Array", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.data", - "serializationOptions": {} - }, - { - "$id": "7575", - "kind": "property", - "name": "first_id", - "serializedName": "first_id", - "doc": "The ID of the first file in the list.", - "type": { - "$id": "7576", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.first_id", - "serializationOptions": {} - }, - { - "$id": "7577", - "kind": "property", - "name": "last_id", - "serializedName": "last_id", - "doc": "The ID of the last file in the list.", - "type": { - "$id": "7578", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.last_id", - "serializationOptions": {} - }, - { - "$id": "7579", - "kind": "property", - "name": "has_more", - "serializedName": "has_more", - "doc": "Whether there are more files available.", - "type": { - "$id": "7580", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ContainerFileListResource.has_more", - "serializationOptions": {} - } - ] + "$ref": "7284" }, "headers": [], "isErrorResponse": false, @@ -98080,11 +98920,11 @@ }, "parameters": [ { - "$id": "7581", + "$id": "7655", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7582", + "$id": "7656", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98101,12 +98941,12 @@ "skipUrlEncoding": false }, { - "$id": "7583", + "$id": "7657", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7584", + "$id": "7658", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98123,12 +98963,12 @@ "skipUrlEncoding": false }, { - "$id": "7585", + "$id": "7659", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -98141,12 +98981,12 @@ "skipUrlEncoding": false }, { - "$id": "7586", + "$id": "7660", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7587", + "$id": "7661", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98163,11 +99003,11 @@ "skipUrlEncoding": false }, { - "$id": "7588", + "$id": "7662", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1661" + "$ref": "1801" }, "location": "Header", "isApiVersion": false, @@ -98182,7 +99022,7 @@ ], "response": { "type": { - "$ref": "7571" + "$ref": "7284" } }, "isOverride": false, @@ -98191,23 +99031,23 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainerFiles" }, { - "$id": "7589", + "$id": "7663", "kind": "basic", "name": "GetContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7590", + "$id": "7664", "name": "GetContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7591", + "$id": "7665", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7592", + "$id": "7666", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98224,11 +99064,11 @@ "skipUrlEncoding": false }, { - "$id": "7593", + "$id": "7667", "name": "file_id", "nameInRequest": "file_id", "type": { - "$id": "7594", + "$id": "7668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98245,11 +99085,11 @@ "skipUrlEncoding": false }, { - "$id": "7595", + "$id": "7669", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1665" + "$ref": "1805" }, "location": "Header", "isApiVersion": false, @@ -98268,7 +99108,7 @@ 200 ], "bodyType": { - "$ref": "7540" + "$ref": "7268" }, "headers": [], "isErrorResponse": false, @@ -98288,11 +99128,11 @@ }, "parameters": [ { - "$id": "7596", + "$id": "7670", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7597", + "$id": "7671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98309,11 +99149,11 @@ "skipUrlEncoding": false }, { - "$id": "7598", + "$id": "7672", "name": "file_id", "nameInRequest": "file_id", "type": { - "$id": "7599", + "$id": "7673", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98330,11 +99170,11 @@ "skipUrlEncoding": false }, { - "$id": "7600", + "$id": "7674", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1665" + "$ref": "1805" }, "location": "Header", "isApiVersion": false, @@ -98349,7 +99189,7 @@ ], "response": { "type": { - "$ref": "7540" + "$ref": "7268" } }, "isOverride": false, @@ -98358,23 +99198,23 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile" }, { - "$id": "7601", + "$id": "7675", "kind": "basic", "name": "deleteContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7602", + "$id": "7676", "name": "deleteContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7603", + "$id": "7677", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7604", + "$id": "7678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98391,11 +99231,11 @@ "skipUrlEncoding": false }, { - "$id": "7605", + "$id": "7679", "name": "file_id", "nameInRequest": "file_id", "type": { - "$id": "7606", + "$id": "7680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98412,11 +99252,11 @@ "skipUrlEncoding": false }, { - "$id": "7607", + "$id": "7681", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1667" + "$ref": "1807" }, "location": "Header", "isApiVersion": false, @@ -98435,67 +99275,7 @@ 200 ], "bodyType": { - "$id": "7608", - "kind": "model", - "name": "DeleteContainerFileResponse", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7609", - "kind": "property", - "name": "id", - "serializedName": "id", - "type": { - "$id": "7610", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous.id", - "serializationOptions": {} - }, - { - "$id": "7611", - "kind": "property", - "name": "object", - "serializedName": "object", - "type": { - "$ref": "1669" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous.object", - "serializationOptions": {} - }, - { - "$id": "7612", - "kind": "property", - "name": "deleted", - "serializedName": "deleted", - "type": { - "$ref": "1671" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.deleteContainerFile.Response.anonymous.deleted", - "serializationOptions": {} - } - ] + "$ref": "7294" }, "headers": [], "isErrorResponse": false, @@ -98515,11 +99295,11 @@ }, "parameters": [ { - "$id": "7613", + "$id": "7682", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7614", + "$id": "7683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98536,11 +99316,11 @@ "skipUrlEncoding": false }, { - "$id": "7615", + "$id": "7684", "name": "file_id", "nameInRequest": "file_id", "type": { - "$id": "7616", + "$id": "7685", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98557,11 +99337,11 @@ "skipUrlEncoding": false }, { - "$id": "7617", + "$id": "7686", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1667" + "$ref": "1807" }, "location": "Header", "isApiVersion": false, @@ -98576,7 +99356,7 @@ ], "response": { "type": { - "$ref": "7608" + "$ref": "7294" } }, "isOverride": false, @@ -98585,23 +99365,23 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile" }, { - "$id": "7618", + "$id": "7687", "kind": "basic", "name": "GetContainerFileContent", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "7619", + "$id": "7688", "name": "GetContainerFileContent", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "7620", + "$id": "7689", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7621", + "$id": "7690", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98618,11 +99398,11 @@ "skipUrlEncoding": false }, { - "$id": "7622", + "$id": "7691", "name": "file_id", "nameInRequest": "file_id", "type": { - "$id": "7623", + "$id": "7692", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98639,11 +99419,11 @@ "skipUrlEncoding": false }, { - "$id": "7624", + "$id": "7693", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1673" + "$ref": "1813" }, "location": "Header", "isApiVersion": false, @@ -98662,7 +99442,7 @@ 200 ], "bodyType": { - "$id": "7625", + "$id": "7694", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -98687,11 +99467,11 @@ }, "parameters": [ { - "$id": "7626", + "$id": "7695", "name": "container_id", "nameInRequest": "container_id", "type": { - "$id": "7627", + "$id": "7696", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98708,11 +99488,11 @@ "skipUrlEncoding": false }, { - "$id": "7628", + "$id": "7697", "name": "file_id", "nameInRequest": "file_id", "type": { - "$id": "7629", + "$id": "7698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98729,11 +99509,11 @@ "skipUrlEncoding": false }, { - "$id": "7630", + "$id": "7699", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1673" + "$ref": "1813" }, "location": "Header", "isApiVersion": false, @@ -98748,7 +99528,7 @@ ], "response": { "type": { - "$ref": "7625" + "$ref": "7694" } }, "isOverride": false, @@ -98759,12 +99539,12 @@ ], "parameters": [ { - "$id": "7631", + "$id": "7700", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7632", + "$id": "7701", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -98779,7 +99559,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7633", + "$id": "7702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -98793,35 +99573,35 @@ "crossLanguageDefinitionId": "OpenAI.Containers", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7634", + "$id": "7703", "kind": "client", "name": "Embeddings", "namespace": "OpenAI", "methods": [ { - "$id": "7635", + "$id": "7704", "kind": "basic", "name": "GenerateEmbeddings", "accessibility": "public", "apiVersions": [], "summary": "Creates an embedding vector representing the input text.", "operation": { - "$id": "7636", + "$id": "7705", "name": "GenerateEmbeddings", "resourceName": "Embeddings", "summary": "Creates an embedding vector representing the input text.", "accessibility": "public", "parameters": [ { - "$id": "7637", + "$id": "7706", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1675" + "$ref": "1815" }, "location": "Header", "isApiVersion": false, @@ -98834,12 +99614,12 @@ "skipUrlEncoding": false }, { - "$id": "7638", + "$id": "7707", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1677" + "$ref": "1817" }, "location": "Header", "isApiVersion": false, @@ -98852,11 +99632,11 @@ "skipUrlEncoding": false }, { - "$id": "7639", + "$id": "7708", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "3008" + "$ref": "3141" }, "location": "Body", "isApiVersion": false, @@ -98875,7 +99655,7 @@ 200 ], "bodyType": { - "$ref": "3019" + "$ref": "3152" }, "headers": [], "isErrorResponse": false, @@ -98898,11 +99678,11 @@ }, "parameters": [ { - "$id": "7640", + "$id": "7709", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1679" + "$ref": "1819" }, "location": "Header", "isApiVersion": false, @@ -98915,11 +99695,11 @@ "skipUrlEncoding": false }, { - "$id": "7641", + "$id": "7710", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "3008" + "$ref": "3141" }, "location": "Body", "isApiVersion": false, @@ -98932,12 +99712,12 @@ "skipUrlEncoding": false }, { - "$id": "7642", + "$id": "7711", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1677" + "$ref": "1817" }, "location": "Header", "isApiVersion": false, @@ -98952,7 +99732,7 @@ ], "response": { "type": { - "$ref": "3019" + "$ref": "3152" } }, "isOverride": false, @@ -98963,12 +99743,12 @@ ], "parameters": [ { - "$id": "7643", + "$id": "7712", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7644", + "$id": "7713", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -98983,7 +99763,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7645", + "$id": "7714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -98997,35 +99777,35 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7646", + "$id": "7715", "kind": "client", "name": "Files", "namespace": "OpenAI", "methods": [ { - "$id": "7647", + "$id": "7716", "kind": "basic", "name": "GetFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of files that belong to the user's organization.", "operation": { - "$id": "7648", + "$id": "7717", "name": "GetFiles", "resourceName": "Files", "summary": "Returns a list of files that belong to the user's organization.", "accessibility": "public", "parameters": [ { - "$id": "7649", + "$id": "7718", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1681" + "$ref": "1821" }, "location": "Header", "isApiVersion": false, @@ -99038,12 +99818,12 @@ "skipUrlEncoding": false }, { - "$id": "7650", + "$id": "7719", "name": "purpose", "nameInRequest": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "7651", + "$id": "7720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99066,7 +99846,7 @@ 200 ], "bodyType": { - "$ref": "3040" + "$ref": "3173" }, "headers": [], "isErrorResponse": false, @@ -99086,11 +99866,11 @@ }, "parameters": [ { - "$id": "7652", + "$id": "7721", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1683" + "$ref": "1823" }, "location": "Header", "isApiVersion": false, @@ -99103,12 +99883,12 @@ "skipUrlEncoding": false }, { - "$id": "7653", + "$id": "7722", "name": "purpose", "nameInRequest": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "7654", + "$id": "7723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99127,7 +99907,7 @@ ], "response": { "type": { - "$ref": "3040" + "$ref": "3173" } }, "isOverride": false, @@ -99136,25 +99916,25 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles" }, { - "$id": "7655", + "$id": "7724", "kind": "basic", "name": "UploadFile", "accessibility": "public", "apiVersions": [], "summary": "Upload a file that can be used across various endpoints. The size of all the files uploaded by\none organization can be up to 100 GB.\n\nThe size of individual files can be a maximum of 512 MB or 2 million tokens for Assistants. See\nthe [Assistants Tools guide](/docs/assistants/tools) to learn more about the types of files\nsupported. The Fine-tuning API only supports `.jsonl` files.\n\nPlease [contact us](https://help.openai.com/) if you need to increase these storage limits.", "operation": { - "$id": "7656", + "$id": "7725", "name": "UploadFile", "resourceName": "Files", "summary": "Upload a file that can be used across various endpoints. The size of all the files uploaded by\none organization can be up to 100 GB.\n\nThe size of individual files can be a maximum of 512 MB or 2 million tokens for Assistants. See\nthe [Assistants Tools guide](/docs/assistants/tools) to learn more about the types of files\nsupported. The Fine-tuning API only supports `.jsonl` files.\n\nPlease [contact us](https://help.openai.com/) if you need to increase these storage limits.", "accessibility": "public", "parameters": [ { - "$id": "7657", + "$id": "7726", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1685" + "$ref": "1825" }, "location": "Header", "isApiVersion": false, @@ -99167,11 +99947,11 @@ "skipUrlEncoding": false }, { - "$id": "7658", + "$id": "7727", "name": "contentType", "nameInRequest": "Content-Type", "type": { - "$ref": "1687" + "$ref": "1827" }, "location": "Header", "isApiVersion": false, @@ -99184,11 +99964,11 @@ "skipUrlEncoding": false }, { - "$id": "7659", + "$id": "7728", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "3069" + "$ref": "3202" }, "location": "Body", "isApiVersion": false, @@ -99207,7 +99987,7 @@ 200 ], "bodyType": { - "$ref": "3044" + "$ref": "3177" }, "headers": [], "isErrorResponse": false, @@ -99230,11 +100010,11 @@ }, "parameters": [ { - "$id": "7660", + "$id": "7729", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1689" + "$ref": "1829" }, "location": "Header", "isApiVersion": false, @@ -99247,11 +100027,11 @@ "skipUrlEncoding": false }, { - "$id": "7661", + "$id": "7730", "name": "contentType", - "nameInRequest": "contentType", + "nameInRequest": "content-type", "type": { - "$ref": "1691" + "$ref": "1831" }, "location": "Header", "isApiVersion": false, @@ -99264,11 +100044,11 @@ "skipUrlEncoding": false }, { - "$id": "7662", + "$id": "7731", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "3069" + "$ref": "3202" }, "location": "Body", "isApiVersion": false, @@ -99283,7 +100063,7 @@ ], "response": { "type": { - "$ref": "3044" + "$ref": "3177" } }, "isOverride": false, @@ -99292,25 +100072,25 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile" }, { - "$id": "7663", + "$id": "7732", "kind": "basic", "name": "deleteFile", "accessibility": "public", "apiVersions": [], "summary": "Delete a file", "operation": { - "$id": "7664", + "$id": "7733", "name": "deleteFile", "resourceName": "Files", "summary": "Delete a file", "accessibility": "public", "parameters": [ { - "$id": "7665", + "$id": "7734", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1693" + "$ref": "1833" }, "location": "Header", "isApiVersion": false, @@ -99323,12 +100103,12 @@ "skipUrlEncoding": false }, { - "$id": "7666", + "$id": "7735", "name": "file_id", "nameInRequest": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7667", + "$id": "7736", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99351,7 +100131,7 @@ 200 ], "bodyType": { - "$ref": "3073" + "$ref": "3206" }, "headers": [], "isErrorResponse": false, @@ -99371,11 +100151,11 @@ }, "parameters": [ { - "$id": "7668", + "$id": "7737", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1695" + "$ref": "1835" }, "location": "Header", "isApiVersion": false, @@ -99388,12 +100168,12 @@ "skipUrlEncoding": false }, { - "$id": "7669", + "$id": "7738", "name": "file_id", "nameInRequest": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7670", + "$id": "7739", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99412,7 +100192,7 @@ ], "response": { "type": { - "$ref": "3073" + "$ref": "3206" } }, "isOverride": false, @@ -99421,25 +100201,25 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile" }, { - "$id": "7671", + "$id": "7740", "kind": "basic", "name": "GetFile", "accessibility": "public", "apiVersions": [], "summary": "Returns information about a specific file.", "operation": { - "$id": "7672", + "$id": "7741", "name": "GetFile", "resourceName": "Files", "summary": "Returns information about a specific file.", "accessibility": "public", "parameters": [ { - "$id": "7673", + "$id": "7742", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1697" + "$ref": "1837" }, "location": "Header", "isApiVersion": false, @@ -99452,12 +100232,12 @@ "skipUrlEncoding": false }, { - "$id": "7674", + "$id": "7743", "name": "file_id", "nameInRequest": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7675", + "$id": "7744", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99480,7 +100260,7 @@ 200 ], "bodyType": { - "$ref": "3044" + "$ref": "3177" }, "headers": [], "isErrorResponse": false, @@ -99500,11 +100280,11 @@ }, "parameters": [ { - "$id": "7676", + "$id": "7745", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1699" + "$ref": "1839" }, "location": "Header", "isApiVersion": false, @@ -99517,12 +100297,12 @@ "skipUrlEncoding": false }, { - "$id": "7677", + "$id": "7746", "name": "file_id", "nameInRequest": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7678", + "$id": "7747", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99541,7 +100321,7 @@ ], "response": { "type": { - "$ref": "3044" + "$ref": "3177" } }, "isOverride": false, @@ -99550,25 +100330,25 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile" }, { - "$id": "7679", + "$id": "7748", "kind": "basic", "name": "downloadFile", "accessibility": "public", "apiVersions": [], "summary": "Returns the contents of the specified file.", "operation": { - "$id": "7680", + "$id": "7749", "name": "downloadFile", "resourceName": "Files", "summary": "Returns the contents of the specified file.", "accessibility": "public", "parameters": [ { - "$id": "7681", + "$id": "7750", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1701" + "$ref": "1841" }, "location": "Header", "isApiVersion": false, @@ -99581,12 +100361,12 @@ "skipUrlEncoding": false }, { - "$id": "7682", + "$id": "7751", "name": "file_id", "nameInRequest": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7683", + "$id": "7752", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99609,7 +100389,7 @@ 200 ], "bodyType": { - "$id": "7684", + "$id": "7753", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -99634,11 +100414,11 @@ }, "parameters": [ { - "$id": "7685", + "$id": "7754", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1703" + "$ref": "1843" }, "location": "Header", "isApiVersion": false, @@ -99651,12 +100431,12 @@ "skipUrlEncoding": false }, { - "$id": "7686", + "$id": "7755", "name": "file_id", "nameInRequest": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "7687", + "$id": "7756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99675,7 +100455,7 @@ ], "response": { "type": { - "$ref": "7684" + "$ref": "7753" } }, "isOverride": false, @@ -99686,12 +100466,12 @@ ], "parameters": [ { - "$id": "7688", + "$id": "7757", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7689", + "$id": "7758", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -99706,7 +100486,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7690", + "$id": "7759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -99720,36 +100500,36 @@ "crossLanguageDefinitionId": "OpenAI.Files", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7691", + "$id": "7760", "kind": "client", "name": "FineTuning", "namespace": "OpenAI", "methods": [ { - "$id": "7692", + "$id": "7761", "kind": "basic", "name": "listFineTuningCheckpointPermissions", "accessibility": "public", "apiVersions": [], "summary": "NOTE: This endpoint requires an admin API key.\nOrganization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.", "operation": { - "$id": "7693", + "$id": "7762", "name": "listFineTuningCheckpointPermissions", "resourceName": "FineTuning", "summary": "NOTE: This endpoint requires an admin API key.\nOrganization owners can use this endpoint to view all permissions for a fine-tuned model checkpoint.", "accessibility": "public", "parameters": [ { - "$id": "7694", + "$id": "7763", "name": "fine_tuned_model_checkpoint", "nameInRequest": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to get permissions for.", "type": { - "$id": "7695", + "$id": "7764", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99766,12 +100546,12 @@ "skipUrlEncoding": false }, { - "$id": "7696", + "$id": "7765", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7697", + "$id": "7766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99788,12 +100568,12 @@ "skipUrlEncoding": false }, { - "$id": "7698", + "$id": "7767", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7699", + "$id": "7768", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99810,12 +100590,12 @@ "skipUrlEncoding": false }, { - "$id": "7700", + "$id": "7769", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -99828,12 +100608,12 @@ "skipUrlEncoding": false }, { - "$id": "7701", + "$id": "7770", "name": "project_id", "nameInRequest": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "7702", + "$id": "7771", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99850,11 +100630,11 @@ "skipUrlEncoding": false }, { - "$id": "7703", + "$id": "7772", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1705" + "$ref": "1845" }, "location": "Header", "isApiVersion": false, @@ -99873,7 +100653,7 @@ 200 ], "bodyType": { - "$ref": "3079" + "$ref": "3212" }, "headers": [], "isErrorResponse": false, @@ -99893,12 +100673,12 @@ }, "parameters": [ { - "$id": "7704", + "$id": "7773", "name": "fine_tuned_model_checkpoint", "nameInRequest": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to get permissions for.", "type": { - "$id": "7705", + "$id": "7774", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99915,12 +100695,12 @@ "skipUrlEncoding": false }, { - "$id": "7706", + "$id": "7775", "name": "after", "nameInRequest": "after", "doc": "A cursor for use in pagination. `after` is an object ID that defines your place in the list.\nFor instance, if you make a list request and receive 100 objects, ending with obj_foo, your\nsubsequent call can include after=obj_foo in order to fetch the next page of the list.", "type": { - "$id": "7707", + "$id": "7776", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99937,12 +100717,12 @@ "skipUrlEncoding": false }, { - "$id": "7708", + "$id": "7777", "name": "limit", "nameInRequest": "limit", "doc": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the\ndefault is 20.", "type": { - "$id": "7709", + "$id": "7778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99959,12 +100739,12 @@ "skipUrlEncoding": false }, { - "$id": "7710", + "$id": "7779", "name": "order", "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -99977,12 +100757,12 @@ "skipUrlEncoding": false }, { - "$id": "7711", + "$id": "7780", "name": "project_id", "nameInRequest": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "7712", + "$id": "7781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99999,11 +100779,11 @@ "skipUrlEncoding": false }, { - "$id": "7713", + "$id": "7782", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1705" + "$ref": "1845" }, "location": "Header", "isApiVersion": false, @@ -100018,7 +100798,7 @@ ], "response": { "type": { - "$ref": "3079" + "$ref": "3212" } }, "isOverride": false, @@ -100027,26 +100807,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions" }, { - "$id": "7714", + "$id": "7783", "kind": "basic", "name": "createFineTuningCheckpointPermission", "accessibility": "public", "apiVersions": [], "summary": "NOTE: This endpoint requires an admin API key.\nThis enables organization owners to share fine-tuned models with other projects in their organization.", "operation": { - "$id": "7715", + "$id": "7784", "name": "createFineTuningCheckpointPermission", "resourceName": "FineTuning", "summary": "NOTE: This endpoint requires an admin API key.\nThis enables organization owners to share fine-tuned models with other projects in their organization.", "accessibility": "public", "parameters": [ { - "$id": "7716", + "$id": "7785", "name": "fine_tuned_model_checkpoint", "nameInRequest": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to create a permission for.", "type": { - "$id": "7717", + "$id": "7786", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100063,12 +100843,12 @@ "skipUrlEncoding": false }, { - "$id": "7718", + "$id": "7787", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1707" + "$ref": "1847" }, "location": "Header", "isApiVersion": false, @@ -100081,11 +100861,11 @@ "skipUrlEncoding": false }, { - "$id": "7719", + "$id": "7788", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1709" + "$ref": "1849" }, "location": "Header", "isApiVersion": false, @@ -100098,11 +100878,11 @@ "skipUrlEncoding": false }, { - "$id": "7720", + "$id": "7789", "name": "createFineTuningCheckpointPermissionRequest", "nameInRequest": "createFineTuningCheckpointPermissionRequest", "type": { - "$ref": "3100" + "$ref": "3233" }, "location": "Body", "isApiVersion": false, @@ -100121,7 +100901,7 @@ 200 ], "bodyType": { - "$ref": "3079" + "$ref": "3212" }, "headers": [], "isErrorResponse": false, @@ -100144,12 +100924,12 @@ }, "parameters": [ { - "$id": "7721", + "$id": "7790", "name": "fine_tuned_model_checkpoint", "nameInRequest": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to create a permission for.", "type": { - "$id": "7722", + "$id": "7791", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100166,12 +100946,12 @@ "skipUrlEncoding": false }, { - "$id": "7723", + "$id": "7792", "name": "project_ids", "nameInRequest": "project_ids", "doc": "The project identifiers to grant access to.", "type": { - "$ref": "2155" + "$ref": "2295" }, "location": "Body", "isApiVersion": false, @@ -100184,12 +100964,12 @@ "skipUrlEncoding": false }, { - "$id": "7724", + "$id": "7793", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1707" + "$ref": "1847" }, "location": "Header", "isApiVersion": false, @@ -100202,11 +100982,11 @@ "skipUrlEncoding": false }, { - "$id": "7725", + "$id": "7794", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1709" + "$ref": "1849" }, "location": "Header", "isApiVersion": false, @@ -100221,7 +101001,7 @@ ], "response": { "type": { - "$ref": "3079" + "$ref": "3212" } }, "isOverride": false, @@ -100230,26 +101010,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission" }, { - "$id": "7726", + "$id": "7795", "kind": "basic", "name": "deleteFineTuningCheckpointPermission", "accessibility": "public", "apiVersions": [], "summary": "NOTE: This endpoint requires an admin API key.\nOrganization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.", "operation": { - "$id": "7727", + "$id": "7796", "name": "deleteFineTuningCheckpointPermission", "resourceName": "FineTuning", "summary": "NOTE: This endpoint requires an admin API key.\nOrganization owners can use this endpoint to delete a permission for a fine-tuned model checkpoint.", "accessibility": "public", "parameters": [ { - "$id": "7728", + "$id": "7797", "name": "fine_tuned_model_checkpoint", "nameInRequest": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to delete a permission for.", "type": { - "$id": "7729", + "$id": "7798", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100266,12 +101046,12 @@ "skipUrlEncoding": false }, { - "$id": "7730", + "$id": "7799", "name": "permission_id", "nameInRequest": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "7731", + "$id": "7800", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100288,11 +101068,11 @@ "skipUrlEncoding": false }, { - "$id": "7732", + "$id": "7801", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1711" + "$ref": "1851" }, "location": "Header", "isApiVersion": false, @@ -100311,7 +101091,7 @@ 200 ], "bodyType": { - "$ref": "3102" + "$ref": "3235" }, "headers": [], "isErrorResponse": false, @@ -100331,12 +101111,12 @@ }, "parameters": [ { - "$id": "7733", + "$id": "7802", "name": "fine_tuned_model_checkpoint", "nameInRequest": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to delete a permission for.", "type": { - "$id": "7734", + "$id": "7803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100353,12 +101133,12 @@ "skipUrlEncoding": false }, { - "$id": "7735", + "$id": "7804", "name": "permission_id", "nameInRequest": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "7736", + "$id": "7805", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100375,11 +101155,11 @@ "skipUrlEncoding": false }, { - "$id": "7737", + "$id": "7806", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1711" + "$ref": "1851" }, "location": "Header", "isApiVersion": false, @@ -100394,7 +101174,7 @@ ], "response": { "type": { - "$ref": "3102" + "$ref": "3235" } }, "isOverride": false, @@ -100403,25 +101183,25 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission" }, { - "$id": "7738", + "$id": "7807", "kind": "basic", "name": "createFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Creates a fine-tuning job which begins the process of creating a new model from a given dataset.\n\nResponse includes details of the enqueued job including job status and the name of the fine-tuned models once complete.\n\n[Learn more about fine-tuning](/docs/guides/fine-tuning)", "operation": { - "$id": "7739", + "$id": "7808", "name": "createFineTuningJob", "resourceName": "FineTuning", "summary": "Creates a fine-tuning job which begins the process of creating a new model from a given dataset.\n\nResponse includes details of the enqueued job including job status and the name of the fine-tuned models once complete.\n\n[Learn more about fine-tuning](/docs/guides/fine-tuning)", "accessibility": "public", "parameters": [ { - "$id": "7740", + "$id": "7809", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1713" + "$ref": "1853" }, "location": "Header", "isApiVersion": false, @@ -100434,12 +101214,12 @@ "skipUrlEncoding": false }, { - "$id": "7741", + "$id": "7810", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1715" + "$ref": "1855" }, "location": "Header", "isApiVersion": false, @@ -100452,11 +101232,11 @@ "skipUrlEncoding": false }, { - "$id": "7742", + "$id": "7811", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "3108" + "$ref": "3241" }, "location": "Body", "isApiVersion": false, @@ -100475,7 +101255,7 @@ 200 ], "bodyType": { - "$ref": "3281" + "$ref": "3414" }, "headers": [], "isErrorResponse": false, @@ -100498,11 +101278,11 @@ }, "parameters": [ { - "$id": "7743", + "$id": "7812", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1717" + "$ref": "1857" }, "location": "Header", "isApiVersion": false, @@ -100515,11 +101295,11 @@ "skipUrlEncoding": false }, { - "$id": "7744", + "$id": "7813", "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "3108" + "$ref": "3241" }, "location": "Body", "isApiVersion": false, @@ -100532,12 +101312,12 @@ "skipUrlEncoding": false }, { - "$id": "7745", + "$id": "7814", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1715" + "$ref": "1855" }, "location": "Header", "isApiVersion": false, @@ -100552,7 +101332,7 @@ ], "response": { "type": { - "$ref": "3281" + "$ref": "3414" } }, "isOverride": false, @@ -100561,25 +101341,25 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob" }, { - "$id": "7746", + "$id": "7815", "kind": "basic", "name": "listPaginatedFineTuningJobs", "accessibility": "public", "apiVersions": [], "summary": "List your organization's fine-tuning jobs", "operation": { - "$id": "7747", + "$id": "7816", "name": "listPaginatedFineTuningJobs", "resourceName": "FineTuning", "summary": "List your organization's fine-tuning jobs", "accessibility": "public", "parameters": [ { - "$id": "7748", + "$id": "7817", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1719" + "$ref": "1859" }, "location": "Header", "isApiVersion": false, @@ -100592,12 +101372,12 @@ "skipUrlEncoding": false }, { - "$id": "7749", + "$id": "7818", "name": "after", "nameInRequest": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "7750", + "$id": "7819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100614,12 +101394,12 @@ "skipUrlEncoding": false }, { - "$id": "7751", + "$id": "7820", "name": "limit", "nameInRequest": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "7752", + "$id": "7821", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100642,7 +101422,7 @@ 200 ], "bodyType": { - "$ref": "3360" + "$ref": "3493" }, "headers": [], "isErrorResponse": false, @@ -100662,11 +101442,11 @@ }, "parameters": [ { - "$id": "7753", + "$id": "7822", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1721" + "$ref": "1861" }, "location": "Header", "isApiVersion": false, @@ -100679,12 +101459,12 @@ "skipUrlEncoding": false }, { - "$id": "7754", + "$id": "7823", "name": "after", "nameInRequest": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "7755", + "$id": "7824", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100701,12 +101481,12 @@ "skipUrlEncoding": false }, { - "$id": "7756", + "$id": "7825", "name": "limit", "nameInRequest": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "7757", + "$id": "7826", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100725,7 +101505,7 @@ ], "response": { "type": { - "$ref": "3360" + "$ref": "3493" } }, "isOverride": false, @@ -100734,25 +101514,25 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs" }, { - "$id": "7758", + "$id": "7827", "kind": "basic", "name": "retrieveFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Get info about a fine-tuning job.\n\n[Learn more about fine-tuning](/docs/guides/fine-tuning)", "operation": { - "$id": "7759", + "$id": "7828", "name": "retrieveFineTuningJob", "resourceName": "FineTuning", "summary": "Get info about a fine-tuning job.\n\n[Learn more about fine-tuning](/docs/guides/fine-tuning)", "accessibility": "public", "parameters": [ { - "$id": "7760", + "$id": "7829", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1723" + "$ref": "1863" }, "location": "Header", "isApiVersion": false, @@ -100765,12 +101545,12 @@ "skipUrlEncoding": false }, { - "$id": "7761", + "$id": "7830", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "7762", + "$id": "7831", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100793,7 +101573,7 @@ 200 ], "bodyType": { - "$ref": "3281" + "$ref": "3414" }, "headers": [], "isErrorResponse": false, @@ -100813,11 +101593,11 @@ }, "parameters": [ { - "$id": "7763", + "$id": "7832", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1725" + "$ref": "1865" }, "location": "Header", "isApiVersion": false, @@ -100830,12 +101610,12 @@ "skipUrlEncoding": false }, { - "$id": "7764", + "$id": "7833", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "7765", + "$id": "7834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100854,7 +101634,7 @@ ], "response": { "type": { - "$ref": "3281" + "$ref": "3414" } }, "isOverride": false, @@ -100863,25 +101643,25 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob" }, { - "$id": "7766", + "$id": "7835", "kind": "basic", "name": "cancelFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Immediately cancel a fine-tune job.", "operation": { - "$id": "7767", + "$id": "7836", "name": "cancelFineTuningJob", "resourceName": "FineTuning", "summary": "Immediately cancel a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "7768", + "$id": "7837", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1727" + "$ref": "1867" }, "location": "Header", "isApiVersion": false, @@ -100894,12 +101674,12 @@ "skipUrlEncoding": false }, { - "$id": "7769", + "$id": "7838", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "7770", + "$id": "7839", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100922,7 +101702,7 @@ 200 ], "bodyType": { - "$ref": "3281" + "$ref": "3414" }, "headers": [], "isErrorResponse": false, @@ -100942,11 +101722,11 @@ }, "parameters": [ { - "$id": "7771", + "$id": "7840", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1729" + "$ref": "1869" }, "location": "Header", "isApiVersion": false, @@ -100959,12 +101739,12 @@ "skipUrlEncoding": false }, { - "$id": "7772", + "$id": "7841", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "7773", + "$id": "7842", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100983,7 +101763,7 @@ ], "response": { "type": { - "$ref": "3281" + "$ref": "3414" } }, "isOverride": false, @@ -100992,25 +101772,25 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob" }, { - "$id": "7774", + "$id": "7843", "kind": "basic", "name": "listFineTuningJobCheckpoints", "accessibility": "public", "apiVersions": [], "summary": "List the checkpoints for a fine-tuning job.", "operation": { - "$id": "7775", + "$id": "7844", "name": "listFineTuningJobCheckpoints", "resourceName": "FineTuning", "summary": "List the checkpoints for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "7776", + "$id": "7845", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1731" + "$ref": "1871" }, "location": "Header", "isApiVersion": false, @@ -101023,12 +101803,12 @@ "skipUrlEncoding": false }, { - "$id": "7777", + "$id": "7846", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get checkpoints for.", "type": { - "$id": "7778", + "$id": "7847", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101045,12 +101825,12 @@ "skipUrlEncoding": false }, { - "$id": "7779", + "$id": "7848", "name": "after", "nameInRequest": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "7780", + "$id": "7849", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101067,12 +101847,12 @@ "skipUrlEncoding": false }, { - "$id": "7781", + "$id": "7850", "name": "limit", "nameInRequest": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "7782", + "$id": "7851", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101095,7 +101875,7 @@ 200 ], "bodyType": { - "$ref": "3366" + "$ref": "3499" }, "headers": [], "isErrorResponse": false, @@ -101115,11 +101895,11 @@ }, "parameters": [ { - "$id": "7783", + "$id": "7852", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1733" + "$ref": "1873" }, "location": "Header", "isApiVersion": false, @@ -101132,12 +101912,12 @@ "skipUrlEncoding": false }, { - "$id": "7784", + "$id": "7853", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get checkpoints for.", "type": { - "$id": "7785", + "$id": "7854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101154,12 +101934,12 @@ "skipUrlEncoding": false }, { - "$id": "7786", + "$id": "7855", "name": "after", "nameInRequest": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "7787", + "$id": "7856", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101176,12 +101956,12 @@ "skipUrlEncoding": false }, { - "$id": "7788", + "$id": "7857", "name": "limit", "nameInRequest": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "7789", + "$id": "7858", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101200,7 +101980,7 @@ ], "response": { "type": { - "$ref": "3366" + "$ref": "3499" } }, "isOverride": false, @@ -101209,25 +101989,25 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints" }, { - "$id": "7790", + "$id": "7859", "kind": "basic", "name": "listFineTuningEvents", "accessibility": "public", "apiVersions": [], "summary": "Get status updates for a fine-tuning job.", "operation": { - "$id": "7791", + "$id": "7860", "name": "listFineTuningEvents", "resourceName": "FineTuning", "summary": "Get status updates for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "7792", + "$id": "7861", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1735" + "$ref": "1875" }, "location": "Header", "isApiVersion": false, @@ -101240,12 +102020,12 @@ "skipUrlEncoding": false }, { - "$id": "7793", + "$id": "7862", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get events for.", "type": { - "$id": "7794", + "$id": "7863", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101262,12 +102042,12 @@ "skipUrlEncoding": false }, { - "$id": "7795", + "$id": "7864", "name": "after", "nameInRequest": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "7796", + "$id": "7865", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101284,12 +102064,12 @@ "skipUrlEncoding": false }, { - "$id": "7797", + "$id": "7866", "name": "limit", "nameInRequest": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "7798", + "$id": "7867", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101312,7 +102092,7 @@ 200 ], "bodyType": { - "$ref": "3407" + "$ref": "3540" }, "headers": [], "isErrorResponse": false, @@ -101332,11 +102112,11 @@ }, "parameters": [ { - "$id": "7799", + "$id": "7868", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1737" + "$ref": "1877" }, "location": "Header", "isApiVersion": false, @@ -101349,12 +102129,12 @@ "skipUrlEncoding": false }, { - "$id": "7800", + "$id": "7869", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get events for.", "type": { - "$id": "7801", + "$id": "7870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101371,12 +102151,12 @@ "skipUrlEncoding": false }, { - "$id": "7802", + "$id": "7871", "name": "after", "nameInRequest": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "7803", + "$id": "7872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101393,12 +102173,12 @@ "skipUrlEncoding": false }, { - "$id": "7804", + "$id": "7873", "name": "limit", "nameInRequest": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "7805", + "$id": "7874", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101417,7 +102197,7 @@ ], "response": { "type": { - "$ref": "3407" + "$ref": "3540" } }, "isOverride": false, @@ -101426,26 +102206,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents" }, { - "$id": "7806", + "$id": "7875", "kind": "basic", "name": "pauseFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Pause a fine-tune job.", "operation": { - "$id": "7807", + "$id": "7876", "name": "pauseFineTuningJob", "resourceName": "FineTuning", "summary": "Pause a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "7808", + "$id": "7877", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "7809", + "$id": "7878", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101462,11 +102242,11 @@ "skipUrlEncoding": false }, { - "$id": "7810", + "$id": "7879", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1739" + "$ref": "1879" }, "location": "Header", "isApiVersion": false, @@ -101485,7 +102265,7 @@ 200 ], "bodyType": { - "$ref": "3281" + "$ref": "3414" }, "headers": [], "isErrorResponse": false, @@ -101505,12 +102285,12 @@ }, "parameters": [ { - "$id": "7811", + "$id": "7880", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "7812", + "$id": "7881", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101527,11 +102307,11 @@ "skipUrlEncoding": false }, { - "$id": "7813", + "$id": "7882", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1739" + "$ref": "1879" }, "location": "Header", "isApiVersion": false, @@ -101546,7 +102326,7 @@ ], "response": { "type": { - "$ref": "3281" + "$ref": "3414" } }, "isOverride": false, @@ -101555,26 +102335,26 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob" }, { - "$id": "7814", + "$id": "7883", "kind": "basic", "name": "resumeFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Resume a paused fine-tune job.", "operation": { - "$id": "7815", + "$id": "7884", "name": "resumeFineTuningJob", "resourceName": "FineTuning", "summary": "Resume a paused fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "7816", + "$id": "7885", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "7817", + "$id": "7886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101591,11 +102371,11 @@ "skipUrlEncoding": false }, { - "$id": "7818", + "$id": "7887", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1741" + "$ref": "1881" }, "location": "Header", "isApiVersion": false, @@ -101614,7 +102394,7 @@ 200 ], "bodyType": { - "$ref": "3281" + "$ref": "3414" }, "headers": [], "isErrorResponse": false, @@ -101634,12 +102414,12 @@ }, "parameters": [ { - "$id": "7819", + "$id": "7888", "name": "fine_tuning_job_id", "nameInRequest": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "7820", + "$id": "7889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101656,11 +102436,11 @@ "skipUrlEncoding": false }, { - "$id": "7821", + "$id": "7890", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1741" + "$ref": "1881" }, "location": "Header", "isApiVersion": false, @@ -101675,7 +102455,7 @@ ], "response": { "type": { - "$ref": "3281" + "$ref": "3414" } }, "isOverride": false, @@ -101686,12 +102466,12 @@ ], "parameters": [ { - "$id": "7822", + "$id": "7891", "name": "endpoint", "nameInRequest": "endpoint", "doc": "Service host", "type": { - "$id": "7823", + "$id": "7892", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -101706,7 +102486,7 @@ "kind": "Client", "defaultValue": { "type": { - "$id": "7824", + "$id": "7893", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -101720,36 +102500,36 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { - "$id": "7825", + "$id": "7894", "kind": "client", "name": "Graders", "namespace": "OpenAI", "methods": [ { - "$id": "7826", + "$id": "7895", "kind": "basic", "name": "runGrader", "accessibility": "public", "apiVersions": [], "summary": "Run a grader.", "operation": { - "$id": "7827", + "$id": "7896", "name": "runGrader", "resourceName": "Graders", "summary": "Run a grader.", "accessibility": "public", "parameters": [ { - "$id": "7828", + "$id": "7897", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1743" + "$ref": "1883" }, "location": "Header", "isApiVersion": false, @@ -101762,11 +102542,11 @@ "skipUrlEncoding": false }, { - "$id": "7829", + "$id": "7898", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1745" + "$ref": "1885" }, "location": "Header", "isApiVersion": false, @@ -101779,99 +102559,11 @@ "skipUrlEncoding": false }, { - "$id": "7830", + "$id": "7899", "name": "request", "nameInRequest": "request", "type": { - "$id": "7831", - "kind": "model", - "name": "RunGraderRequest", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.RunGraderRequest", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7832", - "kind": "property", - "name": "grader", - "serializedName": "grader", - "doc": "The grader used for the fine-tuning job.", - "type": { - "$id": "7833", - "kind": "union", - "name": "RunGraderRequestGrader", - "variantTypes": [ - { - "$ref": "3186" - }, - { - "$ref": "3189" - }, - { - "$ref": "3198" - }, - { - "$ref": "3206" - }, - { - "$ref": "3233" - } - ], - "namespace": "", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderRequest.grader", - "serializationOptions": {} - }, - { - "$id": "7834", - "kind": "property", - "name": "item", - "serializedName": "item", - "doc": "The dataset item provided to the grader. This will be used to populate\nthe `item` namespace. See [the guide](/docs/guides/graders) for more details.", - "type": { - "$id": "7835", - "kind": "unknown", - "name": "unknown", - "crossLanguageDefinitionId": "", - "decorators": [] - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderRequest.item", - "serializationOptions": {} - }, - { - "$id": "7836", - "kind": "property", - "name": "model_sample", - "serializedName": "model_sample", - "doc": "The model sample to be evaluated. This value will be used to populate\nthe `sample` namespace. See [the guide](/docs/guides/graders) for more details.\nThe `output_json` variable will be populated if the model sample is a\nvalid JSON string.", - "type": { - "$id": "7837", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderRequest.model_sample", - "serializationOptions": {} - } - ] + "$ref": "7299" }, "location": "Body", "isApiVersion": false, @@ -101890,548 +102582,7 @@ 200 ], "bodyType": { - "$id": "7838", - "kind": "model", - "name": "RunGraderResponse", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7839", - "kind": "property", - "name": "reward", - "serializedName": "reward", - "type": { - "$id": "7840", - "kind": "float32", - "name": "float32", - "crossLanguageDefinitionId": "TypeSpec.float32", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.reward", - "serializationOptions": {} - }, - { - "$id": "7841", - "kind": "property", - "name": "metadata", - "serializedName": "metadata", - "type": { - "$id": "7842", - "kind": "model", - "name": "RunGraderResponseMetadata", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7843", - "kind": "property", - "name": "name", - "serializedName": "name", - "type": { - "$id": "7844", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.name", - "serializationOptions": {} - }, - { - "$id": "7845", - "kind": "property", - "name": "type", - "serializedName": "type", - "type": { - "$id": "7846", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.type", - "serializationOptions": {} - }, - { - "$id": "7847", - "kind": "property", - "name": "errors", - "serializedName": "errors", - "type": { - "$id": "7848", - "kind": "model", - "name": "RunGraderResponseMetadataErrors", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7849", - "kind": "property", - "name": "formula_parse_error", - "serializedName": "formula_parse_error", - "type": { - "$id": "7850", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.formula_parse_error", - "serializationOptions": {} - }, - { - "$id": "7851", - "kind": "property", - "name": "sample_parse_error", - "serializedName": "sample_parse_error", - "type": { - "$id": "7852", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.sample_parse_error", - "serializationOptions": {} - }, - { - "$id": "7853", - "kind": "property", - "name": "truncated_observation_error", - "serializedName": "truncated_observation_error", - "type": { - "$id": "7854", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.truncated_observation_error", - "serializationOptions": {} - }, - { - "$id": "7855", - "kind": "property", - "name": "unresponsive_reward_error", - "serializedName": "unresponsive_reward_error", - "type": { - "$id": "7856", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.unresponsive_reward_error", - "serializationOptions": {} - }, - { - "$id": "7857", - "kind": "property", - "name": "invalid_variable_error", - "serializedName": "invalid_variable_error", - "type": { - "$id": "7858", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.invalid_variable_error", - "serializationOptions": {} - }, - { - "$id": "7859", - "kind": "property", - "name": "other_error", - "serializedName": "other_error", - "type": { - "$id": "7860", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.other_error", - "serializationOptions": {} - }, - { - "$id": "7861", - "kind": "property", - "name": "python_grader_server_error", - "serializedName": "python_grader_server_error", - "type": { - "$id": "7862", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_server_error", - "serializationOptions": {} - }, - { - "$id": "7863", - "kind": "property", - "name": "python_grader_server_error_type", - "serializedName": "python_grader_server_error_type", - "type": { - "$id": "7864", - "kind": "nullable", - "type": { - "$id": "7865", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "namespace": "" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_server_error_type", - "serializationOptions": {} - }, - { - "$id": "7866", - "kind": "property", - "name": "python_grader_runtime_error", - "serializedName": "python_grader_runtime_error", - "type": { - "$id": "7867", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_runtime_error", - "serializationOptions": {} - }, - { - "$id": "7868", - "kind": "property", - "name": "python_grader_runtime_error_details", - "serializedName": "python_grader_runtime_error_details", - "type": { - "$id": "7869", - "kind": "nullable", - "type": { - "$id": "7870", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "namespace": "" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.python_grader_runtime_error_details", - "serializationOptions": {} - }, - { - "$id": "7871", - "kind": "property", - "name": "model_grader_server_error", - "serializedName": "model_grader_server_error", - "type": { - "$id": "7872", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_server_error", - "serializationOptions": {} - }, - { - "$id": "7873", - "kind": "property", - "name": "model_grader_refusal_error", - "serializedName": "model_grader_refusal_error", - "type": { - "$id": "7874", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_refusal_error", - "serializationOptions": {} - }, - { - "$id": "7875", - "kind": "property", - "name": "model_grader_parse_error", - "serializedName": "model_grader_parse_error", - "type": { - "$id": "7876", - "kind": "boolean", - "name": "boolean", - "crossLanguageDefinitionId": "TypeSpec.boolean", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_parse_error", - "serializationOptions": {} - }, - { - "$id": "7877", - "kind": "property", - "name": "model_grader_server_error_details", - "serializedName": "model_grader_server_error_details", - "type": { - "$id": "7878", - "kind": "nullable", - "type": { - "$id": "7879", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "namespace": "" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.errors.anonymous.model_grader_server_error_details", - "serializationOptions": {} - } - ] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.errors", - "serializationOptions": {} - }, - { - "$id": "7880", - "kind": "property", - "name": "execution_time", - "serializedName": "execution_time", - "type": { - "$id": "7881", - "kind": "float32", - "name": "float32", - "crossLanguageDefinitionId": "TypeSpec.float32", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.execution_time", - "serializationOptions": {} - }, - { - "$id": "7882", - "kind": "property", - "name": "scores", - "serializedName": "scores", - "type": { - "$id": "7883", - "kind": "unknown", - "name": "unknown", - "crossLanguageDefinitionId": "", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.scores", - "serializationOptions": {} - }, - { - "$id": "7884", - "kind": "property", - "name": "token_usage", - "serializedName": "token_usage", - "type": { - "$id": "7885", - "kind": "nullable", - "type": { - "$id": "7886", - "kind": "int32", - "name": "int32", - "crossLanguageDefinitionId": "TypeSpec.int32", - "decorators": [] - }, - "namespace": "" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.token_usage", - "serializationOptions": {} - }, - { - "$id": "7887", - "kind": "property", - "name": "sampled_model_name", - "serializedName": "sampled_model_name", - "type": { - "$id": "7888", - "kind": "nullable", - "type": { - "$id": "7889", - "kind": "string", - "name": "string", - "crossLanguageDefinitionId": "TypeSpec.string", - "decorators": [] - }, - "namespace": "" - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata.anonymous.sampled_model_name", - "serializationOptions": {} - } - ] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.metadata", - "serializationOptions": {} - }, - { - "$id": "7890", - "kind": "property", - "name": "sub_rewards", - "serializedName": "sub_rewards", - "type": { - "$id": "7891", - "kind": "unknown", - "name": "unknown", - "crossLanguageDefinitionId": "", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.sub_rewards", - "serializationOptions": {} - }, - { - "$id": "7892", - "kind": "property", - "name": "model_grader_token_usage_per_model", - "serializedName": "model_grader_token_usage_per_model", - "type": { - "$id": "7893", - "kind": "unknown", - "name": "unknown", - "crossLanguageDefinitionId": "", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.RunGraderResponse.model_grader_token_usage_per_model", - "serializationOptions": {} - } - ] + "$ref": "7306" }, "headers": [], "isErrorResponse": false, @@ -102454,11 +102605,11 @@ }, "parameters": [ { - "$id": "7894", + "$id": "7900", "name": "request", "nameInRequest": "request", "type": { - "$ref": "7831" + "$ref": "7299" }, "location": "Body", "isApiVersion": false, @@ -102471,12 +102622,12 @@ "skipUrlEncoding": false }, { - "$id": "7895", + "$id": "7901", "name": "contentType", "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1743" + "$ref": "1883" }, "location": "Header", "isApiVersion": false, @@ -102489,11 +102640,11 @@ "skipUrlEncoding": false }, { - "$id": "7896", + "$id": "7902", "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1745" + "$ref": "1885" }, "location": "Header", "isApiVersion": false, @@ -102508,7 +102659,7 @@ ], "response": { "type": { - "$ref": "7838" + "$ref": "7306" } }, "isOverride": false, @@ -102517,26 +102668,26 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader" }, { - "$id": "7897", + "$id": "7903", "kind": "basic", "name": "validateGrader", "accessibility": "public", "apiVersions": [], "summary": "Validate a grader.", "operation": { - "$id": "7898", + "$id": "7904", "name": "validateGrader", "resourceName": "Graders", "summary": "Validate a grader.", "accessibility": "public", "parameters": [ { - "$id": "7899", + "$id": "7905", "name": "contentType", "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1747" + "$ref": "1887" }, "location": "Header", "isApiVersion": false, @@ -102549,11 +102700,11 @@ "skipUrlEncoding": false }, { - "$id": "7900", + "$id": "7906", "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1749" + "$ref": "1889" }, "location": "Header", "isApiVersion": false, @@ -102566,57 +102717,11 @@ "skipUrlEncoding": false }, { - "$id": "7901", + "$id": "7907", "name": "request", "nameInRequest": "request", "type": { - "$id": "7902", - "kind": "model", - "name": "ValidateGraderRequest", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.ValidateGraderRequest", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7903", - "kind": "property", - "name": "grader", - "serializedName": "grader", - "doc": "The grader used for the fine-tuning job.", - "type": { - "$id": "7904", - "kind": "union", - "name": "ValidateGraderRequestGrader", - "variantTypes": [ - { - "$ref": "3186" - }, - { - "$ref": "3189" - }, - { - "$ref": "3198" - }, - { - "$ref": "3206" - }, - { - "$ref": "3233" - } - ], - "namespace": "", - "decorators": [] - }, - "optional": false, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ValidateGraderRequest.grader", - "serializationOptions": {} - } - ] + "$ref": "7362" }, "location": "Body", "isApiVersion": false, @@ -102635,53 +102740,7 @@ 200 ], "bodyType": { - "$id": "7905", - "kind": "model", - "name": "ValidateGraderResponse", - "namespace": "OpenAI", - "crossLanguageDefinitionId": "OpenAI.ValidateGraderResponse", - "usage": "None", - "decorators": [], - "properties": [ - { - "$id": "7906", - "kind": "property", - "name": "grader", - "serializedName": "grader", - "doc": "The grader used for the fine-tuning job.", - "type": { - "$id": "7907", - "kind": "union", - "name": "ValidateGraderResponseGrader", - "variantTypes": [ - { - "$ref": "3186" - }, - { - "$ref": "3189" - }, - { - "$ref": "3198" - }, - { - "$ref": "3206" - }, - { - "$ref": "3233" - } - ], - "namespace": "", - "decorators": [] - }, - "optional": true, - "readOnly": false, - "discriminator": false, - "flatten": false, - "decorators": [], - "crossLanguageDefinitionId": "OpenAI.ValidateGraderResponse.grader", - "serializationOptions": {} - } - ] + "$ref": "7365" }, "headers": [], "isErrorResponse": false, @@ -102708,7 +102767,7 @@ "name": "request", "nameInRequest": "request", "type": { - "$ref": "7902" + "$ref": "7362" }, "location": "Body", "isApiVersion": false, @@ -102726,7 +102785,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1747" + "$ref": "1887" }, "location": "Header", "isApiVersion": false, @@ -102743,7 +102802,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1749" + "$ref": "1889" }, "location": "Header", "isApiVersion": false, @@ -102758,7 +102817,7 @@ ], "response": { "type": { - "$ref": "7905" + "$ref": "7365" } }, "isOverride": false, @@ -102803,7 +102862,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -102876,7 +102935,7 @@ "nameInRequest": "order", "doc": "Sort order for evals by timestamp. Use `asc` for ascending order or\n`desc` for descending order.", "type": { - "$ref": "377" + "$ref": "1316" }, "location": "Query", "isApiVersion": false, @@ -102894,7 +102953,7 @@ "nameInRequest": "order_by", "doc": "Evals can be ordered by creation time or last updated time. Use\n`created_at` for creation time or `updated_at` for last updated\ntime.", "type": { - "$ref": "381" + "$ref": "1320" }, "location": "Query", "isApiVersion": false, @@ -102911,7 +102970,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1751" + "$ref": "1891" }, "location": "Header", "isApiVersion": false, @@ -102930,7 +102989,7 @@ 200 ], "bodyType": { - "$ref": "3426" + "$ref": "3559" }, "headers": [], "isErrorResponse": false, @@ -102999,7 +103058,7 @@ "nameInRequest": "order", "doc": "Sort order for evals by timestamp. Use `asc` for ascending order or\n`desc` for descending order.", "type": { - "$ref": "377" + "$ref": "1316" }, "location": "Query", "isApiVersion": false, @@ -103017,7 +103076,7 @@ "nameInRequest": "order_by", "doc": "Evals can be ordered by creation time or last updated time. Use\n`created_at` for creation time or `updated_at` for last updated\ntime.", "type": { - "$ref": "381" + "$ref": "1320" }, "location": "Query", "isApiVersion": false, @@ -103034,7 +103093,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1751" + "$ref": "1891" }, "location": "Header", "isApiVersion": false, @@ -103049,7 +103108,7 @@ ], "response": { "type": { - "$ref": "3426" + "$ref": "3559" } }, "isOverride": false, @@ -103077,7 +103136,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1753" + "$ref": "1893" }, "location": "Header", "isApiVersion": false, @@ -103094,7 +103153,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1755" + "$ref": "1895" }, "location": "Header", "isApiVersion": false, @@ -103111,7 +103170,7 @@ "name": "body", "nameInRequest": "body", "type": { - "$ref": "3510" + "$ref": "3643" }, "location": "Body", "isApiVersion": false, @@ -103130,7 +103189,7 @@ 201 ], "bodyType": { - "$ref": "3430" + "$ref": "3563" }, "headers": [], "isErrorResponse": false, @@ -103157,7 +103216,7 @@ "name": "body", "nameInRequest": "body", "type": { - "$ref": "3510" + "$ref": "3643" }, "location": "Body", "isApiVersion": false, @@ -103175,7 +103234,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1753" + "$ref": "1893" }, "location": "Header", "isApiVersion": false, @@ -103192,7 +103251,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1755" + "$ref": "1895" }, "location": "Header", "isApiVersion": false, @@ -103207,7 +103266,7 @@ ], "response": { "type": { - "$ref": "3430" + "$ref": "3563" } }, "isOverride": false, @@ -103255,7 +103314,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1757" + "$ref": "1897" }, "location": "Header", "isApiVersion": false, @@ -103274,7 +103333,7 @@ 200 ], "bodyType": { - "$ref": "3430" + "$ref": "3563" }, "headers": [], "isErrorResponse": false, @@ -103319,7 +103378,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1757" + "$ref": "1897" }, "location": "Header", "isApiVersion": false, @@ -103334,7 +103393,7 @@ ], "response": { "type": { - "$ref": "3430" + "$ref": "3563" } }, "isOverride": false, @@ -103384,7 +103443,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1759" + "$ref": "1899" }, "location": "Header", "isApiVersion": false, @@ -103401,7 +103460,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1761" + "$ref": "1901" }, "location": "Header", "isApiVersion": false, @@ -103418,7 +103477,7 @@ "name": "body", "nameInRequest": "body", "type": { - "$ref": "3590" + "$ref": "3723" }, "location": "Body", "isApiVersion": false, @@ -103437,7 +103496,7 @@ 200 ], "bodyType": { - "$ref": "3430" + "$ref": "3563" }, "headers": [], "isErrorResponse": false, @@ -103486,7 +103545,7 @@ "name": "body", "nameInRequest": "body", "type": { - "$ref": "3590" + "$ref": "3723" }, "location": "Body", "isApiVersion": false, @@ -103504,7 +103563,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1759" + "$ref": "1899" }, "location": "Header", "isApiVersion": false, @@ -103521,7 +103580,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1761" + "$ref": "1901" }, "location": "Header", "isApiVersion": false, @@ -103536,7 +103595,7 @@ ], "response": { "type": { - "$ref": "3430" + "$ref": "3563" } }, "isOverride": false, @@ -103585,7 +103644,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1763" + "$ref": "1903" }, "location": "Header", "isApiVersion": false, @@ -103604,7 +103663,7 @@ 200 ], "bodyType": { - "$ref": "3596" + "$ref": "3729" }, "headers": [], "isErrorResponse": false, @@ -103650,7 +103709,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1763" + "$ref": "1903" }, "location": "Header", "isApiVersion": false, @@ -103665,7 +103724,7 @@ ], "response": { "type": { - "$ref": "3596" + "$ref": "3729" } }, "isOverride": false, @@ -103761,7 +103820,7 @@ "nameInRequest": "order", "doc": "Sort order for runs by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "390" + "$ref": "1324" }, "location": "Query", "isApiVersion": false, @@ -103779,7 +103838,7 @@ "nameInRequest": "status", "doc": "Filter runs by their status. Possible values are `queued`, `in_progress`, `completed`, `canceled`, and `failed`.", "type": { - "$ref": "394" + "$ref": "1328" }, "location": "Query", "isApiVersion": false, @@ -103796,7 +103855,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1765" + "$ref": "1905" }, "location": "Header", "isApiVersion": false, @@ -103815,7 +103874,7 @@ 200 ], "bodyType": { - "$ref": "3602" + "$ref": "3735" }, "headers": [], "isErrorResponse": false, @@ -103906,7 +103965,7 @@ "nameInRequest": "order", "doc": "Sort order for runs by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "390" + "$ref": "1324" }, "location": "Query", "isApiVersion": false, @@ -103924,7 +103983,7 @@ "nameInRequest": "status", "doc": "Filter runs by their status. Possible values are `queued`, `in_progress`, `completed`, `canceled`, and `failed`.", "type": { - "$ref": "394" + "$ref": "1328" }, "location": "Query", "isApiVersion": false, @@ -103941,7 +104000,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1765" + "$ref": "1905" }, "location": "Header", "isApiVersion": false, @@ -103956,7 +104015,7 @@ ], "response": { "type": { - "$ref": "3602" + "$ref": "3735" } }, "isOverride": false, @@ -104006,7 +104065,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1767" + "$ref": "1907" }, "location": "Header", "isApiVersion": false, @@ -104023,7 +104082,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1769" + "$ref": "1909" }, "location": "Header", "isApiVersion": false, @@ -104040,7 +104099,7 @@ "name": "body", "nameInRequest": "body", "type": { - "$ref": "3673" + "$ref": "3806" }, "location": "Body", "isApiVersion": false, @@ -104059,7 +104118,7 @@ 201 ], "bodyType": { - "$ref": "3606" + "$ref": "3739" }, "headers": [], "isErrorResponse": false, @@ -104108,7 +104167,7 @@ "name": "body", "nameInRequest": "body", "type": { - "$ref": "3673" + "$ref": "3806" }, "location": "Body", "isApiVersion": false, @@ -104126,7 +104185,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1767" + "$ref": "1907" }, "location": "Header", "isApiVersion": false, @@ -104143,7 +104202,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1769" + "$ref": "1909" }, "location": "Header", "isApiVersion": false, @@ -104158,7 +104217,7 @@ ], "response": { "type": { - "$ref": "3606" + "$ref": "3739" } }, "isOverride": false, @@ -104229,7 +104288,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1771" + "$ref": "1911" }, "location": "Header", "isApiVersion": false, @@ -104248,7 +104307,7 @@ 200 ], "bodyType": { - "$ref": "3606" + "$ref": "3739" }, "headers": [], "isErrorResponse": false, @@ -104316,7 +104375,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1771" + "$ref": "1911" }, "location": "Header", "isApiVersion": false, @@ -104331,7 +104390,7 @@ ], "response": { "type": { - "$ref": "3606" + "$ref": "3739" } }, "isOverride": false, @@ -104402,7 +104461,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1773" + "$ref": "1913" }, "location": "Header", "isApiVersion": false, @@ -104421,7 +104480,7 @@ 200 ], "bodyType": { - "$ref": "3606" + "$ref": "3739" }, "headers": [], "isErrorResponse": false, @@ -104489,7 +104548,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1773" + "$ref": "1913" }, "location": "Header", "isApiVersion": false, @@ -104504,7 +104563,7 @@ ], "response": { "type": { - "$ref": "3606" + "$ref": "3739" } }, "isOverride": false, @@ -104575,7 +104634,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1775" + "$ref": "1915" }, "location": "Header", "isApiVersion": false, @@ -104594,7 +104653,7 @@ 200 ], "bodyType": { - "$ref": "3960" + "$ref": "4093" }, "headers": [], "isErrorResponse": false, @@ -104662,7 +104721,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1775" + "$ref": "1915" }, "location": "Header", "isApiVersion": false, @@ -104677,7 +104736,7 @@ ], "response": { "type": { - "$ref": "3960" + "$ref": "4093" } }, "isOverride": false, @@ -104793,7 +104852,7 @@ "nameInRequest": "status", "doc": "Filter output items by their status. Possible values are `fail` and `pass`.", "type": { - "$ref": "484" + "$ref": "1335" }, "location": "Query", "isApiVersion": false, @@ -104811,7 +104870,7 @@ "nameInRequest": "order", "doc": "Sort order for output items by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "488" + "$ref": "1339" }, "location": "Query", "isApiVersion": false, @@ -104828,7 +104887,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1777" + "$ref": "1917" }, "location": "Header", "isApiVersion": false, @@ -104847,7 +104906,7 @@ 200 ], "bodyType": { - "$ref": "3966" + "$ref": "4099" }, "headers": [], "isErrorResponse": false, @@ -104960,7 +105019,7 @@ "nameInRequest": "status", "doc": "Filter output items by their status. Possible values are `fail` and `pass`.", "type": { - "$ref": "484" + "$ref": "1335" }, "location": "Query", "isApiVersion": false, @@ -104978,7 +105037,7 @@ "nameInRequest": "order", "doc": "Sort order for output items by timestamp. Use `asc` for ascending order or `desc` for descending order.", "type": { - "$ref": "488" + "$ref": "1339" }, "location": "Query", "isApiVersion": false, @@ -104995,7 +105054,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1777" + "$ref": "1917" }, "location": "Header", "isApiVersion": false, @@ -105010,7 +105069,7 @@ ], "response": { "type": { - "$ref": "3966" + "$ref": "4099" } }, "isOverride": false, @@ -105103,7 +105162,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1779" + "$ref": "1919" }, "location": "Header", "isApiVersion": false, @@ -105122,7 +105181,7 @@ 200 ], "bodyType": { - "$ref": "3970" + "$ref": "4103" }, "headers": [], "isErrorResponse": false, @@ -105212,7 +105271,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1779" + "$ref": "1919" }, "location": "Header", "isApiVersion": false, @@ -105227,7 +105286,7 @@ ], "response": { "type": { - "$ref": "3970" + "$ref": "4103" } }, "isOverride": false, @@ -105272,7 +105331,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -105300,7 +105359,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -105318,7 +105377,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1781" + "$ref": "1921" }, "location": "Header", "isApiVersion": false, @@ -105335,7 +105394,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "4033" + "$ref": "4166" }, "location": "Body", "isApiVersion": false, @@ -105354,14 +105413,14 @@ 200 ], "bodyType": { - "$ref": "4635" + "$ref": "4754" }, "headers": [ { "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1783" + "$ref": "1923" } } ], @@ -105390,7 +105449,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -105407,7 +105466,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "4033" + "$ref": "4166" }, "location": "Body", "isApiVersion": false, @@ -105425,7 +105484,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1781" + "$ref": "1921" }, "location": "Header", "isApiVersion": false, @@ -105440,7 +105499,7 @@ ], "response": { "type": { - "$ref": "4635" + "$ref": "4754" } }, "isOverride": false, @@ -105489,7 +105548,7 @@ "name": "includables", "nameInRequest": "include[]", "type": { - "$ref": "4444" + "$ref": "4563" }, "location": "Query", "isApiVersion": false, @@ -105573,14 +105632,14 @@ 200 ], "bodyType": { - "$ref": "4635" + "$ref": "4754" }, "headers": [ { "name": "contentType", "nameInResponse": "Content-Type", "type": { - "$ref": "1785" + "$ref": "1925" } } ], @@ -105626,9 +105685,9 @@ { "$id": "8100", "name": "includables", - "nameInRequest": "includables", + "nameInRequest": "include[]", "type": { - "$ref": "4444" + "$ref": "4563" }, "location": "Query", "isApiVersion": false, @@ -105704,7 +105763,7 @@ ], "response": { "type": { - "$ref": "4635" + "$ref": "4754" } }, "isOverride": false, @@ -105751,7 +105810,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1787" + "$ref": "1927" }, "location": "Header", "isApiVersion": false, @@ -105770,7 +105829,7 @@ 200 ], "bodyType": { - "$ref": "4966" + "$ref": "5085" }, "headers": [], "isErrorResponse": false, @@ -105816,7 +105875,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1787" + "$ref": "1927" }, "location": "Header", "isApiVersion": false, @@ -105831,7 +105890,7 @@ ], "response": { "type": { - "$ref": "4966" + "$ref": "5085" } }, "isOverride": false, @@ -105878,7 +105937,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1789" + "$ref": "1929" }, "location": "Header", "isApiVersion": false, @@ -105897,7 +105956,7 @@ 200 ], "bodyType": { - "$ref": "4454" + "$ref": "4573" }, "headers": [], "isErrorResponse": false, @@ -105943,7 +106002,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1789" + "$ref": "1929" }, "location": "Header", "isApiVersion": false, @@ -105958,7 +106017,7 @@ ], "response": { "type": { - "$ref": "4454" + "$ref": "4573" } }, "isOverride": false, @@ -106030,7 +106089,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -106091,7 +106150,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1791" + "$ref": "1931" }, "location": "Header", "isApiVersion": false, @@ -106110,7 +106169,7 @@ 200 ], "bodyType": { - "$ref": "4971" + "$ref": "5090" }, "headers": [], "isErrorResponse": false, @@ -106179,7 +106238,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -106240,7 +106299,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1791" + "$ref": "1931" }, "location": "Header", "isApiVersion": false, @@ -106255,7 +106314,7 @@ ], "response": { "type": { - "$ref": "4971" + "$ref": "5090" } }, "isOverride": false, @@ -106300,7 +106359,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -106328,7 +106387,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1793" + "$ref": "1933" }, "location": "Header", "isApiVersion": false, @@ -106346,7 +106405,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1795" + "$ref": "1935" }, "location": "Header", "isApiVersion": false, @@ -106363,7 +106422,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "4980" + "$ref": "5099" }, "location": "Body", "isApiVersion": false, @@ -106382,7 +106441,7 @@ 200 ], "bodyType": { - "$ref": "5052" + "$ref": "5126" }, "headers": [], "isErrorResponse": false, @@ -106409,7 +106468,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1797" + "$ref": "1937" }, "location": "Header", "isApiVersion": false, @@ -106426,7 +106485,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "4980" + "$ref": "5099" }, "location": "Body", "isApiVersion": false, @@ -106444,7 +106503,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1795" + "$ref": "1935" }, "location": "Header", "isApiVersion": false, @@ -106459,7 +106518,7 @@ ], "response": { "type": { - "$ref": "5052" + "$ref": "5126" } }, "isOverride": false, @@ -106486,7 +106545,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1799" + "$ref": "1939" }, "location": "Header", "isApiVersion": false, @@ -106503,7 +106562,7 @@ "name": "contentType", "nameInRequest": "Content-Type", "type": { - "$ref": "1801" + "$ref": "1941" }, "location": "Header", "isApiVersion": false, @@ -106520,7 +106579,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5079" + "$ref": "5153" }, "location": "Body", "isApiVersion": false, @@ -106539,7 +106598,7 @@ 200 ], "bodyType": { - "$ref": "5052" + "$ref": "5126" }, "headers": [], "isErrorResponse": false, @@ -106566,7 +106625,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1803" + "$ref": "1943" }, "location": "Header", "isApiVersion": false, @@ -106581,9 +106640,9 @@ { "$id": "8162", "name": "contentType", - "nameInRequest": "contentType", + "nameInRequest": "content-type", "type": { - "$ref": "1805" + "$ref": "1945" }, "location": "Header", "isApiVersion": false, @@ -106600,7 +106659,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5079" + "$ref": "5153" }, "location": "Body", "isApiVersion": false, @@ -106615,7 +106674,7 @@ ], "response": { "type": { - "$ref": "5052" + "$ref": "5126" } }, "isOverride": false, @@ -106642,7 +106701,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1807" + "$ref": "1947" }, "location": "Header", "isApiVersion": false, @@ -106659,7 +106718,7 @@ "name": "contentType", "nameInRequest": "Content-Type", "type": { - "$ref": "1809" + "$ref": "1949" }, "location": "Header", "isApiVersion": false, @@ -106676,7 +106735,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5133" + "$ref": "5179" }, "location": "Body", "isApiVersion": false, @@ -106695,7 +106754,7 @@ 200 ], "bodyType": { - "$ref": "5052" + "$ref": "5126" }, "headers": [], "isErrorResponse": false, @@ -106722,7 +106781,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1811" + "$ref": "1951" }, "location": "Header", "isApiVersion": false, @@ -106737,9 +106796,9 @@ { "$id": "8170", "name": "contentType", - "nameInRequest": "contentType", + "nameInRequest": "content-type", "type": { - "$ref": "1813" + "$ref": "1953" }, "location": "Header", "isApiVersion": false, @@ -106756,7 +106815,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5133" + "$ref": "5179" }, "location": "Body", "isApiVersion": false, @@ -106771,7 +106830,7 @@ ], "response": { "type": { - "$ref": "5052" + "$ref": "5126" } }, "isOverride": false, @@ -106816,7 +106875,7 @@ "crossLanguageDefinitionId": "OpenAI.Images", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -106844,7 +106903,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1815" + "$ref": "1955" }, "location": "Header", "isApiVersion": false, @@ -106861,7 +106920,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1817" + "$ref": "1957" }, "location": "Header", "isApiVersion": false, @@ -106901,7 +106960,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1819" + "$ref": "1959" }, "location": "Header", "isApiVersion": false, @@ -106918,7 +106977,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5160" + "$ref": "5194" }, "location": "Body", "isApiVersion": false, @@ -106937,7 +106996,7 @@ 200 ], "bodyType": { - "$ref": "5232" + "$ref": "5266" }, "headers": [], "isErrorResponse": false, @@ -106964,7 +107023,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1821" + "$ref": "1961" }, "location": "Header", "isApiVersion": false, @@ -106979,9 +107038,9 @@ { "$id": "8185", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1823" + "$ref": "1963" }, "location": "Header", "isApiVersion": false, @@ -107020,7 +107079,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5160" + "$ref": "5194" }, "location": "Body", "isApiVersion": false, @@ -107038,7 +107097,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1819" + "$ref": "1959" }, "location": "Header", "isApiVersion": false, @@ -107053,7 +107112,7 @@ ], "response": { "type": { - "$ref": "5232" + "$ref": "5266" } }, "isOverride": false, @@ -107080,7 +107139,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1825" + "$ref": "1965" }, "location": "Header", "isApiVersion": false, @@ -107097,7 +107156,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1827" + "$ref": "1967" }, "location": "Header", "isApiVersion": false, @@ -107159,7 +107218,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -107222,7 +107281,7 @@ 200 ], "bodyType": { - "$ref": "5272" + "$ref": "5306" }, "headers": [], "isErrorResponse": false, @@ -107246,7 +107305,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1829" + "$ref": "1969" }, "location": "Header", "isApiVersion": false, @@ -107261,9 +107320,9 @@ { "$id": "8204", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1831" + "$ref": "1971" }, "location": "Header", "isApiVersion": false, @@ -107325,7 +107384,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -107384,7 +107443,7 @@ ], "response": { "type": { - "$ref": "5272" + "$ref": "5306" } }, "isOverride": false, @@ -107411,7 +107470,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1833" + "$ref": "1973" }, "location": "Header", "isApiVersion": false, @@ -107428,7 +107487,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1835" + "$ref": "1975" }, "location": "Header", "isApiVersion": false, @@ -107491,7 +107550,7 @@ 200 ], "bodyType": { - "$ref": "5232" + "$ref": "5266" }, "headers": [], "isErrorResponse": false, @@ -107515,7 +107574,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1837" + "$ref": "1977" }, "location": "Header", "isApiVersion": false, @@ -107530,9 +107589,9 @@ { "$id": "8223", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1839" + "$ref": "1979" }, "location": "Header", "isApiVersion": false, @@ -107591,7 +107650,7 @@ ], "response": { "type": { - "$ref": "5232" + "$ref": "5266" } }, "isOverride": false, @@ -107618,7 +107677,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1841" + "$ref": "1981" }, "location": "Header", "isApiVersion": false, @@ -107635,7 +107694,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1843" + "$ref": "1983" }, "location": "Header", "isApiVersion": false, @@ -107697,7 +107756,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1845" + "$ref": "1985" }, "location": "Header", "isApiVersion": false, @@ -107714,7 +107773,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5282" + "$ref": "5316" }, "location": "Body", "isApiVersion": false, @@ -107733,7 +107792,7 @@ 200 ], "bodyType": { - "$ref": "5232" + "$ref": "5266" }, "headers": [], "isErrorResponse": false, @@ -107760,7 +107819,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1847" + "$ref": "1987" }, "location": "Header", "isApiVersion": false, @@ -107775,9 +107834,9 @@ { "$id": "8239", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1849" + "$ref": "1989" }, "location": "Header", "isApiVersion": false, @@ -107838,7 +107897,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5282" + "$ref": "5316" }, "location": "Body", "isApiVersion": false, @@ -107856,7 +107915,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1845" + "$ref": "1985" }, "location": "Header", "isApiVersion": false, @@ -107871,7 +107930,7 @@ ], "response": { "type": { - "$ref": "5232" + "$ref": "5266" } }, "isOverride": false, @@ -107898,7 +107957,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1851" + "$ref": "1991" }, "location": "Header", "isApiVersion": false, @@ -107915,7 +107974,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1853" + "$ref": "1993" }, "location": "Header", "isApiVersion": false, @@ -107978,7 +108037,7 @@ 200 ], "bodyType": { - "$ref": "5284" + "$ref": "5318" }, "headers": [], "isErrorResponse": false, @@ -108002,7 +108061,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1855" + "$ref": "1995" }, "location": "Header", "isApiVersion": false, @@ -108017,9 +108076,9 @@ { "$id": "8255", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1857" + "$ref": "1997" }, "location": "Header", "isApiVersion": false, @@ -108078,7 +108137,7 @@ ], "response": { "type": { - "$ref": "5284" + "$ref": "5318" } }, "isOverride": false, @@ -108123,7 +108182,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -108151,7 +108210,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1859" + "$ref": "1999" }, "location": "Header", "isApiVersion": false, @@ -108169,7 +108228,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1861" + "$ref": "2001" }, "location": "Header", "isApiVersion": false, @@ -108186,7 +108245,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5290" + "$ref": "5324" }, "location": "Body", "isApiVersion": false, @@ -108205,7 +108264,7 @@ 200 ], "bodyType": { - "$ref": "5307" + "$ref": "5341" }, "headers": [], "isErrorResponse": false, @@ -108232,7 +108291,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1863" + "$ref": "2003" }, "location": "Header", "isApiVersion": false, @@ -108249,7 +108308,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5290" + "$ref": "5324" }, "location": "Body", "isApiVersion": false, @@ -108267,7 +108326,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1861" + "$ref": "2001" }, "location": "Header", "isApiVersion": false, @@ -108282,7 +108341,7 @@ ], "response": { "type": { - "$ref": "5307" + "$ref": "5341" } }, "isOverride": false, @@ -108327,7 +108386,7 @@ "crossLanguageDefinitionId": "OpenAI.Moderations", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -108355,7 +108414,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -108372,7 +108431,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1865" + "$ref": "2005" }, "location": "Header", "isApiVersion": false, @@ -108390,7 +108449,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1867" + "$ref": "2007" }, "location": "Header", "isApiVersion": false, @@ -108407,7 +108466,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5402" + "$ref": "5436" }, "location": "Body", "isApiVersion": false, @@ -108453,7 +108512,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -108468,9 +108527,9 @@ { "$id": "8283", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1869" + "$ref": "2009" }, "location": "Header", "isApiVersion": false, @@ -108487,7 +108546,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5402" + "$ref": "5436" }, "location": "Body", "isApiVersion": false, @@ -108505,7 +108564,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1867" + "$ref": "2007" }, "location": "Header", "isApiVersion": false, @@ -108547,7 +108606,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -108564,7 +108623,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1871" + "$ref": "2011" }, "location": "Header", "isApiVersion": false, @@ -108608,7 +108667,7 @@ "kind": "array", "name": "ArrayIncludedRunStepProperty", "valueType": { - "$ref": "884" + "$ref": "1343" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -108630,7 +108689,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1873" + "$ref": "2013" }, "location": "Header", "isApiVersion": false, @@ -108693,7 +108752,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -108708,9 +108767,9 @@ { "$id": "8297", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1875" + "$ref": "2015" }, "location": "Header", "isApiVersion": false, @@ -108785,7 +108844,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1873" + "$ref": "2013" }, "location": "Header", "isApiVersion": false, @@ -108827,7 +108886,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1877" + "$ref": "2017" }, "location": "Header", "isApiVersion": false, @@ -108844,7 +108903,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1879" + "$ref": "2019" }, "location": "Header", "isApiVersion": false, @@ -108906,7 +108965,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -108993,7 +109052,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1881" + "$ref": "2021" }, "location": "Header", "isApiVersion": false, @@ -109008,9 +109067,9 @@ { "$id": "8317", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1883" + "$ref": "2023" }, "location": "Header", "isApiVersion": false, @@ -109072,7 +109131,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -109158,7 +109217,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1885" + "$ref": "2025" }, "location": "Header", "isApiVersion": false, @@ -109175,7 +109234,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1887" + "$ref": "2027" }, "location": "Header", "isApiVersion": false, @@ -109262,7 +109321,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1889" + "$ref": "2029" }, "location": "Header", "isApiVersion": false, @@ -109277,9 +109336,9 @@ { "$id": "8336", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1891" + "$ref": "2031" }, "location": "Header", "isApiVersion": false, @@ -109365,7 +109424,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1893" + "$ref": "2033" }, "location": "Header", "isApiVersion": false, @@ -109382,7 +109441,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1895" + "$ref": "2035" }, "location": "Header", "isApiVersion": false, @@ -109444,7 +109503,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1897" + "$ref": "2037" }, "location": "Header", "isApiVersion": false, @@ -109507,7 +109566,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1899" + "$ref": "2039" }, "location": "Header", "isApiVersion": false, @@ -109522,9 +109581,9 @@ { "$id": "8352", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1901" + "$ref": "2041" }, "location": "Header", "isApiVersion": false, @@ -109603,7 +109662,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1897" + "$ref": "2037" }, "location": "Header", "isApiVersion": false, @@ -109645,7 +109704,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1903" + "$ref": "2043" }, "location": "Header", "isApiVersion": false, @@ -109662,7 +109721,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1905" + "$ref": "2045" }, "location": "Header", "isApiVersion": false, @@ -109749,7 +109808,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1907" + "$ref": "2047" }, "location": "Header", "isApiVersion": false, @@ -109764,9 +109823,9 @@ { "$id": "8368", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1909" + "$ref": "2049" }, "location": "Header", "isApiVersion": false, @@ -109852,7 +109911,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -109869,7 +109928,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1911" + "$ref": "2051" }, "location": "Header", "isApiVersion": false, @@ -109931,7 +109990,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1913" + "$ref": "2053" }, "location": "Header", "isApiVersion": false, @@ -109994,7 +110053,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "92" + "$ref": "1312" }, "location": "Header", "isApiVersion": false, @@ -110009,9 +110068,9 @@ { "$id": "8384", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1915" + "$ref": "2055" }, "location": "Header", "isApiVersion": false, @@ -110090,7 +110149,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1913" + "$ref": "2053" }, "location": "Header", "isApiVersion": false, @@ -110132,7 +110191,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1917" + "$ref": "2057" }, "location": "Header", "isApiVersion": false, @@ -110149,7 +110208,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1919" + "$ref": "2059" }, "location": "Header", "isApiVersion": false, @@ -110233,7 +110292,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -110339,7 +110398,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1921" + "$ref": "2061" }, "location": "Header", "isApiVersion": false, @@ -110354,9 +110413,9 @@ { "$id": "8408", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1923" + "$ref": "2063" }, "location": "Header", "isApiVersion": false, @@ -110440,7 +110499,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -110544,7 +110603,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1925" + "$ref": "2065" }, "location": "Header", "isApiVersion": false, @@ -110561,7 +110620,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1927" + "$ref": "2067" }, "location": "Header", "isApiVersion": false, @@ -110689,7 +110748,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1929" + "$ref": "2069" }, "location": "Header", "isApiVersion": false, @@ -110704,9 +110763,9 @@ { "$id": "8433", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1931" + "$ref": "2071" }, "location": "Header", "isApiVersion": false, @@ -110850,7 +110909,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -110878,7 +110937,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1933" + "$ref": "2073" }, "location": "Header", "isApiVersion": false, @@ -110895,7 +110954,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1935" + "$ref": "2075" }, "location": "Header", "isApiVersion": false, @@ -110913,7 +110972,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1937" + "$ref": "2077" }, "location": "Header", "isApiVersion": false, @@ -110930,7 +110989,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5406" + "$ref": "5440" }, "location": "Body", "isApiVersion": false, @@ -110976,7 +111035,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1939" + "$ref": "2079" }, "location": "Header", "isApiVersion": false, @@ -110991,9 +111050,9 @@ { "$id": "8452", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1941" + "$ref": "2081" }, "location": "Header", "isApiVersion": false, @@ -111010,7 +111069,7 @@ "name": "requestBody", "nameInRequest": "requestBody", "type": { - "$ref": "5406" + "$ref": "5440" }, "location": "Body", "isApiVersion": false, @@ -111028,7 +111087,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1937" + "$ref": "2077" }, "location": "Header", "isApiVersion": false, @@ -111070,7 +111129,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1943" + "$ref": "2083" }, "location": "Header", "isApiVersion": false, @@ -111087,7 +111146,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1945" + "$ref": "2085" }, "location": "Header", "isApiVersion": false, @@ -111152,7 +111211,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1947" + "$ref": "2087" }, "location": "Header", "isApiVersion": false, @@ -111167,9 +111226,9 @@ { "$id": "8462", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1949" + "$ref": "2089" }, "location": "Header", "isApiVersion": false, @@ -111233,7 +111292,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1951" + "$ref": "2091" }, "location": "Header", "isApiVersion": false, @@ -111250,7 +111309,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1953" + "$ref": "2093" }, "location": "Header", "isApiVersion": false, @@ -111290,7 +111349,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1955" + "$ref": "2095" }, "location": "Header", "isApiVersion": false, @@ -111353,7 +111412,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1957" + "$ref": "2097" }, "location": "Header", "isApiVersion": false, @@ -111368,9 +111427,9 @@ { "$id": "8474", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1959" + "$ref": "2099" }, "location": "Header", "isApiVersion": false, @@ -111427,7 +111486,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1955" + "$ref": "2095" }, "location": "Header", "isApiVersion": false, @@ -111469,7 +111528,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1961" + "$ref": "2101" }, "location": "Header", "isApiVersion": false, @@ -111486,7 +111545,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1963" + "$ref": "2103" }, "location": "Header", "isApiVersion": false, @@ -111551,7 +111610,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1965" + "$ref": "2105" }, "location": "Header", "isApiVersion": false, @@ -111566,9 +111625,9 @@ { "$id": "8486", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "1967" + "$ref": "2107" }, "location": "Header", "isApiVersion": false, @@ -111650,7 +111709,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -111678,7 +111737,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1969" + "$ref": "2109" }, "location": "Header", "isApiVersion": false, @@ -111718,7 +111777,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -111805,7 +111864,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1971" + "$ref": "2111" }, "location": "Header", "isApiVersion": false, @@ -111845,7 +111904,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -111931,7 +111990,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1973" + "$ref": "2113" }, "location": "Header", "isApiVersion": false, @@ -111949,7 +112008,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1975" + "$ref": "2115" }, "location": "Header", "isApiVersion": false, @@ -112012,7 +112071,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1977" + "$ref": "2117" }, "location": "Header", "isApiVersion": false, @@ -112047,7 +112106,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1975" + "$ref": "2115" }, "location": "Header", "isApiVersion": false, @@ -112089,7 +112148,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1979" + "$ref": "2119" }, "location": "Header", "isApiVersion": false, @@ -112154,7 +112213,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1981" + "$ref": "2121" }, "location": "Header", "isApiVersion": false, @@ -112218,7 +112277,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1983" + "$ref": "2123" }, "location": "Header", "isApiVersion": false, @@ -112258,7 +112317,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1985" + "$ref": "2125" }, "location": "Header", "isApiVersion": false, @@ -112321,7 +112380,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1987" + "$ref": "2127" }, "location": "Header", "isApiVersion": false, @@ -112378,7 +112437,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1985" + "$ref": "2125" }, "location": "Header", "isApiVersion": false, @@ -112420,7 +112479,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1989" + "$ref": "2129" }, "location": "Header", "isApiVersion": false, @@ -112485,7 +112544,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1991" + "$ref": "2131" }, "location": "Header", "isApiVersion": false, @@ -112549,7 +112608,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1993" + "$ref": "2133" }, "location": "Header", "isApiVersion": false, @@ -112589,7 +112648,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1995" + "$ref": "2135" }, "location": "Header", "isApiVersion": false, @@ -112652,7 +112711,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "1997" + "$ref": "2137" }, "location": "Header", "isApiVersion": false, @@ -112709,7 +112768,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "1995" + "$ref": "2135" }, "location": "Header", "isApiVersion": false, @@ -112751,7 +112810,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "1999" + "$ref": "2139" }, "location": "Header", "isApiVersion": false, @@ -112838,7 +112897,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2001" + "$ref": "2141" }, "location": "Header", "isApiVersion": false, @@ -112924,7 +112983,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2003" + "$ref": "2143" }, "location": "Header", "isApiVersion": false, @@ -113011,7 +113070,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2005" + "$ref": "2145" }, "location": "Header", "isApiVersion": false, @@ -113097,7 +113156,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2007" + "$ref": "2147" }, "location": "Header", "isApiVersion": false, @@ -113181,7 +113240,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -113243,7 +113302,7 @@ "nameInRequest": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "932" + "$ref": "1346" }, "location": "Query", "isApiVersion": false, @@ -113286,7 +113345,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2009" + "$ref": "2149" }, "location": "Header", "isApiVersion": false, @@ -113370,7 +113429,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -113432,7 +113491,7 @@ "nameInRequest": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "932" + "$ref": "1346" }, "location": "Query", "isApiVersion": false, @@ -113474,7 +113533,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2011" + "$ref": "2151" }, "location": "Header", "isApiVersion": false, @@ -113536,7 +113595,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -113598,7 +113657,7 @@ "nameInRequest": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "932" + "$ref": "1346" }, "location": "Query", "isApiVersion": false, @@ -113641,7 +113700,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2013" + "$ref": "2153" }, "location": "Header", "isApiVersion": false, @@ -113703,7 +113762,7 @@ "nameInRequest": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", "type": { - "$ref": "1" + "$ref": "1308" }, "location": "Query", "isApiVersion": false, @@ -113765,7 +113824,7 @@ "nameInRequest": "filter", "doc": "Filter by file status. One of `in_progress`, `completed`, `failed`, `cancelled`.", "type": { - "$ref": "932" + "$ref": "1346" }, "location": "Query", "isApiVersion": false, @@ -113807,7 +113866,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2015" + "$ref": "2155" }, "location": "Header", "isApiVersion": false, @@ -113847,7 +113906,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2017" + "$ref": "2157" }, "location": "Header", "isApiVersion": false, @@ -113910,7 +113969,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2019" + "$ref": "2159" }, "location": "Header", "isApiVersion": false, @@ -113967,7 +114026,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2017" + "$ref": "2157" }, "location": "Header", "isApiVersion": false, @@ -114009,7 +114068,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2021" + "$ref": "2161" }, "location": "Header", "isApiVersion": false, @@ -114096,7 +114155,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2023" + "$ref": "2163" }, "location": "Header", "isApiVersion": false, @@ -114182,7 +114241,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2025" + "$ref": "2165" }, "location": "Header", "isApiVersion": false, @@ -114269,7 +114328,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2027" + "$ref": "2167" }, "location": "Header", "isApiVersion": false, @@ -114400,7 +114459,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2029" + "$ref": "2169" }, "location": "Header", "isApiVersion": false, @@ -114417,7 +114476,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2031" + "$ref": "2171" }, "location": "Header", "isApiVersion": false, @@ -114542,7 +114601,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2029" + "$ref": "2169" }, "location": "Header", "isApiVersion": false, @@ -114559,7 +114618,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2031" + "$ref": "2171" }, "location": "Header", "isApiVersion": false, @@ -114645,7 +114704,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2033" + "$ref": "2173" }, "location": "Header", "isApiVersion": false, @@ -114732,7 +114791,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2033" + "$ref": "2173" }, "location": "Header", "isApiVersion": false, @@ -114797,7 +114856,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2035" + "$ref": "2175" }, "location": "Header", "isApiVersion": false, @@ -114814,7 +114873,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2037" + "$ref": "2177" }, "location": "Header", "isApiVersion": false, @@ -114998,7 +115057,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2035" + "$ref": "2175" }, "location": "Header", "isApiVersion": false, @@ -115015,7 +115074,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2037" + "$ref": "2177" }, "location": "Header", "isApiVersion": false, @@ -115075,7 +115134,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -115103,7 +115162,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2039" + "$ref": "2179" }, "location": "Header", "isApiVersion": false, @@ -115121,7 +115180,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2041" + "$ref": "2181" }, "location": "Header", "isApiVersion": false, @@ -115184,7 +115243,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2043" + "$ref": "2183" }, "location": "Header", "isApiVersion": false, @@ -115219,7 +115278,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2041" + "$ref": "2181" }, "location": "Header", "isApiVersion": false, @@ -115279,7 +115338,7 @@ "crossLanguageDefinitionId": "OpenAI.Completions", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -115307,7 +115366,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2045" + "$ref": "2185" }, "location": "Header", "isApiVersion": false, @@ -115350,7 +115409,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2047" + "$ref": "2187" }, "location": "Header", "isApiVersion": false, @@ -115392,7 +115451,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2049" + "$ref": "2189" }, "location": "Header", "isApiVersion": false, @@ -115457,7 +115516,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2051" + "$ref": "2191" }, "location": "Header", "isApiVersion": false, @@ -115521,7 +115580,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2053" + "$ref": "2193" }, "location": "Header", "isApiVersion": false, @@ -115586,7 +115645,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2055" + "$ref": "2195" }, "location": "Header", "isApiVersion": false, @@ -115668,7 +115727,7 @@ "crossLanguageDefinitionId": "OpenAI.Models", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -115696,7 +115755,7 @@ "name": "openAIBeta", "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "2057" + "$ref": "2197" }, "location": "Header", "isApiVersion": false, @@ -115714,7 +115773,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2059" + "$ref": "2199" }, "location": "Header", "isApiVersion": false, @@ -115731,7 +115790,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2061" + "$ref": "2201" }, "location": "Header", "isApiVersion": false, @@ -115806,9 +115865,9 @@ { "$id": "8765", "name": "openAIBeta", - "nameInRequest": "openAIBeta", + "nameInRequest": "OpenAI-Beta", "type": { - "$ref": "2063" + "$ref": "2203" }, "location": "Header", "isApiVersion": false, @@ -115843,7 +115902,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2059" + "$ref": "2199" }, "location": "Header", "isApiVersion": false, @@ -115860,7 +115919,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2061" + "$ref": "2201" }, "location": "Header", "isApiVersion": false, @@ -115903,7 +115962,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2065" + "$ref": "2205" }, "location": "Header", "isApiVersion": false, @@ -115920,7 +115979,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2067" + "$ref": "2207" }, "location": "Header", "isApiVersion": false, @@ -116001,7 +116060,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2065" + "$ref": "2205" }, "location": "Header", "isApiVersion": false, @@ -116018,7 +116077,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2067" + "$ref": "2207" }, "location": "Header", "isApiVersion": false, @@ -116061,7 +116120,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2069" + "$ref": "2209" }, "location": "Header", "isApiVersion": false, @@ -116078,7 +116137,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2071" + "$ref": "2211" }, "location": "Header", "isApiVersion": false, @@ -116159,7 +116218,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2069" + "$ref": "2209" }, "location": "Header", "isApiVersion": false, @@ -116176,7 +116235,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2071" + "$ref": "2211" }, "location": "Header", "isApiVersion": false, @@ -116236,7 +116295,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } }, { @@ -116264,7 +116323,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2073" + "$ref": "2213" }, "location": "Header", "isApiVersion": false, @@ -116282,7 +116341,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2075" + "$ref": "2215" }, "location": "Header", "isApiVersion": false, @@ -116345,7 +116404,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2077" + "$ref": "2217" }, "location": "Header", "isApiVersion": false, @@ -116380,7 +116439,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2075" + "$ref": "2215" }, "location": "Header", "isApiVersion": false, @@ -116422,7 +116481,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2079" + "$ref": "2219" }, "location": "Header", "isApiVersion": false, @@ -116439,7 +116498,7 @@ "name": "contentType", "nameInRequest": "Content-Type", "type": { - "$ref": "2081" + "$ref": "2221" }, "location": "Header", "isApiVersion": false, @@ -116523,7 +116582,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2083" + "$ref": "2223" }, "location": "Header", "isApiVersion": false, @@ -116538,9 +116597,9 @@ { "$id": "8805", "name": "contentType", - "nameInRequest": "contentType", + "nameInRequest": "content-type", "type": { - "$ref": "2085" + "$ref": "2225" }, "location": "Header", "isApiVersion": false, @@ -116620,7 +116679,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2087" + "$ref": "2227" }, "location": "Header", "isApiVersion": false, @@ -116659,7 +116718,7 @@ "nameInRequest": "Content-Type", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2089" + "$ref": "2229" }, "location": "Header", "isApiVersion": false, @@ -116722,7 +116781,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2091" + "$ref": "2231" }, "location": "Header", "isApiVersion": false, @@ -116778,7 +116837,7 @@ "nameInRequest": "contentType", "doc": "Body parameter's content type. Known values are application/json", "type": { - "$ref": "2089" + "$ref": "2229" }, "location": "Header", "isApiVersion": false, @@ -116820,7 +116879,7 @@ "name": "accept", "nameInRequest": "Accept", "type": { - "$ref": "2093" + "$ref": "2233" }, "location": "Header", "isApiVersion": false, @@ -116884,7 +116943,7 @@ "name": "accept", "nameInRequest": "accept", "type": { - "$ref": "2095" + "$ref": "2235" }, "location": "Header", "isApiVersion": false, @@ -116965,7 +117024,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads", "apiVersions": [], "parent": { - "$ref": "7222" + "$ref": "7368" } } ]