diff --git a/api/OpenAI.net8.0.cs b/api/OpenAI.net8.0.cs index 37f43d01d..287af8c5f 100644 --- a/api/OpenAI.net8.0.cs +++ b/api/OpenAI.net8.0.cs @@ -1638,6 +1638,7 @@ public class ChatCompletionMessageCollectionOptions : IJsonModel, IPersistableModel { public IReadOnlyList Annotations { get; } public string Content { get; } + public IList ContentParts { get; } public string Id { get; } public ChatOutputAudio OutputAudio { get; } [EditorBrowsable(EditorBrowsableState.Never)] @@ -2232,6 +2233,7 @@ public static class OpenAIChatModelFactory { public static ChatCompletion ChatCompletion(string id = null, ChatFinishReason finishReason = ChatFinishReason.Stop, ChatMessageContent content = null, string refusal = null, IEnumerable toolCalls = null, ChatMessageRole role = ChatMessageRole.System, ChatFunctionCall functionCall = null, IEnumerable contentTokenLogProbabilities = null, IEnumerable refusalTokenLogProbabilities = null, DateTimeOffset createdAt = default, string model = null, ChatServiceTier? serviceTier = null, string systemFingerprint = null, ChatTokenUsage usage = null, ChatOutputAudio outputAudio = null, IEnumerable messageAnnotations = null); [EditorBrowsable(EditorBrowsableState.Never)] public static ChatCompletion ChatCompletion(string id, ChatFinishReason finishReason, ChatMessageContent content, string refusal, IEnumerable toolCalls, ChatMessageRole role, ChatFunctionCall functionCall, IEnumerable contentTokenLogProbabilities, IEnumerable refusalTokenLogProbabilities, DateTimeOffset createdAt, string model, string systemFingerprint, ChatTokenUsage usage); + public static ChatCompletionMessageListDatum ChatCompletionMessageListDatum(string id, string content, string refusal, ChatMessageRole role, IList contentParts = null, IList toolCalls = null, IList annotations = null, string functionName = null, string functionArguments = null, ChatOutputAudio outputAudio = null); public static ChatInputTokenUsageDetails ChatInputTokenUsageDetails(int audioTokenCount = 0, int cachedTokenCount = 0); [Experimental("OPENAI001")] public static ChatMessageAnnotation ChatMessageAnnotation(int startIndex = 0, int endIndex = 0, Uri webResourceUri = null, string webResourceTitle = null); diff --git a/api/OpenAI.netstandard2.0.cs b/api/OpenAI.netstandard2.0.cs index 7a7dcea34..70713df8d 100644 --- a/api/OpenAI.netstandard2.0.cs +++ b/api/OpenAI.netstandard2.0.cs @@ -1447,6 +1447,7 @@ public class ChatCompletionMessageCollectionOptions : IJsonModel, IPersistableModel { public IReadOnlyList Annotations { get; } public string Content { get; } + public IList ContentParts { get; } public string Id { get; } public ChatOutputAudio OutputAudio { get; } [EditorBrowsable(EditorBrowsableState.Never)] @@ -1921,6 +1922,7 @@ public static class OpenAIChatModelFactory { public static ChatCompletion ChatCompletion(string id = null, ChatFinishReason finishReason = ChatFinishReason.Stop, ChatMessageContent content = null, string refusal = null, IEnumerable toolCalls = null, ChatMessageRole role = ChatMessageRole.System, ChatFunctionCall functionCall = null, IEnumerable contentTokenLogProbabilities = null, IEnumerable refusalTokenLogProbabilities = null, DateTimeOffset createdAt = default, string model = null, ChatServiceTier? serviceTier = null, string systemFingerprint = null, ChatTokenUsage usage = null, ChatOutputAudio outputAudio = null, IEnumerable messageAnnotations = null); [EditorBrowsable(EditorBrowsableState.Never)] public static ChatCompletion ChatCompletion(string id, ChatFinishReason finishReason, ChatMessageContent content, string refusal, IEnumerable toolCalls, ChatMessageRole role, ChatFunctionCall functionCall, IEnumerable contentTokenLogProbabilities, IEnumerable refusalTokenLogProbabilities, DateTimeOffset createdAt, string model, string systemFingerprint, ChatTokenUsage usage); + public static ChatCompletionMessageListDatum ChatCompletionMessageListDatum(string id, string content, string refusal, ChatMessageRole role, IList contentParts = null, IList toolCalls = null, IList annotations = null, string functionName = null, string functionArguments = null, ChatOutputAudio outputAudio = null); public static ChatInputTokenUsageDetails ChatInputTokenUsageDetails(int audioTokenCount = 0, int cachedTokenCount = 0); public static ChatMessageAnnotation ChatMessageAnnotation(int startIndex = 0, int endIndex = 0, Uri webResourceUri = null, string webResourceTitle = null); public static ChatOutputAudio ChatOutputAudio(BinaryData audioBytes, string id = null, string transcript = null, DateTimeOffset expiresAt = default); diff --git a/specification/base/typespec/chat/models.tsp b/specification/base/typespec/chat/models.tsp index 7eb299190..717c4a9c8 100644 --- a/specification/base/typespec/chat/models.tsp +++ b/specification/base/typespec/chat/models.tsp @@ -124,6 +124,8 @@ alias CreateChatCompletionStreamResponseChoice = { alias ChatCompletionMessageListData = { ...ChatCompletionResponseMessage; + content_parts?: ChatCompletionRequestMessageContentPart[] | null; + /** The identifier of the chat message. */ id: string; }; diff --git a/src/Custom/Chat/OpenAIChatModelFactory.cs b/src/Custom/Chat/OpenAIChatModelFactory.cs index f479ddcfb..f49d113fb 100644 --- a/src/Custom/Chat/OpenAIChatModelFactory.cs +++ b/src/Custom/Chat/OpenAIChatModelFactory.cs @@ -3,6 +3,7 @@ using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Linq; +using OpenAI.Responses; namespace OpenAI.Chat; @@ -29,7 +30,7 @@ public static ChatCompletion ChatCompletion( ChatCompletion( id: id, finishReason: finishReason, - content:content, + content: content, refusal: refusal, toolCalls: toolCalls, role: role, @@ -70,13 +71,13 @@ public static ChatCompletion ChatCompletion( messageAnnotations ??= new List(); InternalChatCompletionResponseMessage message = new( + content: content, refusal: refusal, toolCalls: toolCalls.ToList(), annotations: messageAnnotations.ToList(), - audio: outputAudio, role: role, - content: content, functionCall: functionCall, + audio: outputAudio, patch: default); InternalCreateChatCompletionResponseChoiceLogprobs logprobs = new InternalCreateChatCompletionResponseChoiceLogprobs( @@ -372,4 +373,40 @@ public static StreamingChatToolCallUpdate StreamingChatToolCallUpdate(int index toolCallId: toolCallId, patch: default); } + + /// Initializes a new instance of . + /// A new instance for mocking. + public static ChatCompletionMessageListDatum ChatCompletionMessageListDatum( + string id, + string content, + string refusal, + ChatMessageRole role, + IList contentParts = null, + IList toolCalls = null, + IList annotations = null, + string functionName = null, + string functionArguments = null, + ChatOutputAudio outputAudio = null) + { + InternalChatCompletionResponseMessageFunctionCall functionCall = null; + if (functionName != null && functionArguments != null) + { + functionCall = new( + name: functionName, + arguments: functionArguments, + patch: default); + } + + return new ChatCompletionMessageListDatum( + content: content, + contentParts: contentParts, + refusal: refusal, + toolCalls: toolCalls.ToList().AsReadOnly(), + annotations: annotations.ToList().AsReadOnly(), + role: role, + functionCall: functionCall, + outputAudio: outputAudio, + id: id, + patch: default); + } } diff --git a/src/Generated/Models/Chat/ChatCompletionMessageListDatum.Serialization.cs b/src/Generated/Models/Chat/ChatCompletionMessageListDatum.Serialization.cs index fd1c9d1b3..eaa1bfeab 100644 --- a/src/Generated/Models/Chat/ChatCompletionMessageListDatum.Serialization.cs +++ b/src/Generated/Models/Chat/ChatCompletionMessageListDatum.Serialization.cs @@ -13,7 +13,7 @@ namespace OpenAI.Chat { public partial class ChatCompletionMessageListDatum : IJsonModel { - internal ChatCompletionMessageListDatum() : this(null, null, null, null, default, null, null, null, default) + internal ChatCompletionMessageListDatum() : this(null, null, null, null, default, null, null, null, null, default) { } @@ -119,6 +119,29 @@ protected virtual void JsonModelWriteCore(Utf8JsonWriter writer, ModelReaderWrit writer.WritePropertyName("audio"u8); writer.WriteObjectValue(OutputAudio, options); } + if (Patch.Contains("$.content_parts"u8)) + { + if (!Patch.IsRemoved("$.content_parts"u8)) + { + writer.WritePropertyName("content_parts"u8); + writer.WriteRawValue(Patch.GetJson("$.content_parts"u8)); + } + } + else if (Optional.IsCollectionDefined(ContentParts)) + { + writer.WritePropertyName("content_parts"u8); + writer.WriteStartArray(); + for (int i = 0; i < ContentParts.Count; i++) + { + if (ContentParts[i].Patch.IsRemoved("$"u8)) + { + continue; + } + writer.WriteObjectValue(ContentParts[i], options); + } + Patch.WriteTo(writer, "$.content_parts"u8); + writer.WriteEndArray(); + } if (!Patch.Contains("$.id"u8)) { writer.WritePropertyName("id"u8); @@ -155,6 +178,7 @@ internal static ChatCompletionMessageListDatum DeserializeChatCompletionMessageL ChatMessageRole role = default; InternalChatCompletionResponseMessageFunctionCall functionCall = default; ChatOutputAudio outputAudio = default; + IList contentParts = default; string id = default; #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. JsonPatch patch = new JsonPatch(data is null ? ReadOnlyMemory.Empty : data.ToMemory()); @@ -233,6 +257,20 @@ internal static ChatCompletionMessageListDatum DeserializeChatCompletionMessageL outputAudio = ChatOutputAudio.DeserializeChatOutputAudio(prop.Value, prop.Value.GetUtf8Bytes(), options); continue; } + if (prop.NameEquals("content_parts"u8)) + { + if (prop.Value.ValueKind == JsonValueKind.Null) + { + continue; + } + List array = new List(); + foreach (var item in prop.Value.EnumerateArray()) + { + array.Add(ChatMessageContentPart.DeserializeChatMessageContentPart(item, item.GetUtf8Bytes(), options)); + } + contentParts = array; + continue; + } if (prop.NameEquals("id"u8)) { id = prop.Value.GetString(); @@ -248,6 +286,7 @@ internal static ChatCompletionMessageListDatum DeserializeChatCompletionMessageL role, functionCall, outputAudio, + contentParts ?? new ChangeTrackingList(), id, patch); } @@ -315,6 +354,16 @@ private bool PropagateGet(ReadOnlySpan jsonPath, out JsonPatch.EncodedValu } return Annotations[index].Patch.TryGetEncodedValue([.. "$"u8, .. currentSlice.Slice(bytesConsumed)], out value); } + if (local.StartsWith("content_parts"u8)) + { + int propertyLength = "content_parts"u8.Length; + ReadOnlySpan currentSlice = local.Slice(propertyLength); + if (!currentSlice.TryGetIndex(out int index, out int bytesConsumed)) + { + return false; + } + return ContentParts[index].Patch.TryGetEncodedValue([.. "$"u8, .. currentSlice.Slice(bytesConsumed)], out value); + } return false; } #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. @@ -351,6 +400,17 @@ private bool PropagateSet(ReadOnlySpan jsonPath, JsonPatch.EncodedValue va Annotations[index].Patch.Set([.. "$"u8, .. currentSlice.Slice(bytesConsumed)], value); return true; } + if (local.StartsWith("content_parts"u8)) + { + int propertyLength = "content_parts"u8.Length; + ReadOnlySpan currentSlice = local.Slice(propertyLength); + if (!currentSlice.TryGetIndex(out int index, out int bytesConsumed)) + { + return false; + } + ContentParts[index].Patch.Set([.. "$"u8, .. currentSlice.Slice(bytesConsumed)], value); + return true; + } return false; } #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. diff --git a/src/Generated/Models/Chat/ChatCompletionMessageListDatum.cs b/src/Generated/Models/Chat/ChatCompletionMessageListDatum.cs index d967a3a71..700b781dc 100644 --- a/src/Generated/Models/Chat/ChatCompletionMessageListDatum.cs +++ b/src/Generated/Models/Chat/ChatCompletionMessageListDatum.cs @@ -22,11 +22,12 @@ internal ChatCompletionMessageListDatum(string content, string refusal, string i Refusal = refusal; ToolCalls = new ChangeTrackingList(); Annotations = new ChangeTrackingList(); + ContentParts = new ChangeTrackingList(); Id = id; } #pragma warning disable SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal ChatCompletionMessageListDatum(string content, string refusal, IReadOnlyList toolCalls, IReadOnlyList annotations, ChatMessageRole role, InternalChatCompletionResponseMessageFunctionCall functionCall, ChatOutputAudio outputAudio, string id, in JsonPatch patch) + internal ChatCompletionMessageListDatum(string content, string refusal, IReadOnlyList toolCalls, IReadOnlyList annotations, ChatMessageRole role, InternalChatCompletionResponseMessageFunctionCall functionCall, ChatOutputAudio outputAudio, IList contentParts, string id, in JsonPatch patch) { // Plugin customization: ensure initialization of collections Content = content; @@ -36,6 +37,7 @@ internal ChatCompletionMessageListDatum(string content, string refusal, IReadOnl Role = role; FunctionCall = functionCall; OutputAudio = outputAudio; + ContentParts = contentParts ?? new ChangeTrackingList(); Id = id; _patch = patch; _patch.SetPropagators(PropagateSet, PropagateGet); @@ -56,6 +58,8 @@ internal ChatCompletionMessageListDatum(string content, string refusal, IReadOnl internal InternalChatCompletionResponseMessageFunctionCall FunctionCall { get; } + public IList ContentParts { get; } + public string Id { get; } } } diff --git a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudio.cs b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudio.cs index 0563c4c7f..372322c9f 100644 --- a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudio.cs +++ b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudio.cs @@ -23,6 +23,6 @@ internal InternalChatCompletionRequestMessageContentPartAudio(in JsonPatch patch } #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal InternalChatCompletionRequestMessageContentPartAudioInputAudio InputAudio { get; } + internal InternalChatCompletionRequestMessageContentPartAudioInputAudio InputAudio { get; set; } } } diff --git a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudioInputAudio.cs b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudioInputAudio.cs index 3df15da9a..f23fb139f 100644 --- a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudioInputAudio.cs +++ b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartAudioInputAudio.cs @@ -36,8 +36,8 @@ internal InternalChatCompletionRequestMessageContentPartAudioInputAudio(BinaryDa [Experimental("SCME0001")] public ref JsonPatch Patch => ref _patch; - public BinaryData Data { get; } + public BinaryData Data { get; set; } - public ChatInputAudioFormat Format { get; } + public ChatInputAudioFormat Format { get; set; } } } diff --git a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartFile.cs b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartFile.cs index 15ce3bca8..bb8adf67f 100644 --- a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartFile.cs +++ b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartFile.cs @@ -23,6 +23,6 @@ internal InternalChatCompletionRequestMessageContentPartFile(in JsonPatch patch, } #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal InternalChatCompletionRequestMessageContentPartFileFile File { get; } + internal InternalChatCompletionRequestMessageContentPartFileFile File { get; set; } } } diff --git a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartImage.cs b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartImage.cs index 4956a4b4b..16c0c16b0 100644 --- a/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartImage.cs +++ b/src/Generated/Models/Chat/InternalChatCompletionRequestMessageContentPartImage.cs @@ -23,6 +23,6 @@ internal InternalChatCompletionRequestMessageContentPartImage(in JsonPatch patch } #pragma warning restore SCME0001 // Type is for evaluation purposes only and is subject to change or removal in future updates. - internal InternalChatCompletionRequestMessageContentPartImageImageUrl ImageUrl { get; } + internal InternalChatCompletionRequestMessageContentPartImageImageUrl ImageUrl { get; set; } } } diff --git a/tests/Chat/ChatStoreTests.cs b/tests/Chat/ChatStoreTests.cs index b5b31aa66..138dedd81 100644 --- a/tests/Chat/ChatStoreTests.cs +++ b/tests/Chat/ChatStoreTests.cs @@ -696,12 +696,15 @@ public async Task GetChatCompletionMessagesWithPagination() ChatClient client = GetTestClient(); // Create completion with multiple messages (conversation with tool calls) + // and one with multiple content parts List conversationMessages = new() { new UserChatMessage("What's the weather like today? Use the weather tool."), new UserChatMessage("Name something I could do outside in this weather."), new UserChatMessage("Name something else I could do outside in this weather."), - new UserChatMessage("Name something yet another thing I could do outside in this weather.") + new UserChatMessage([ + ChatMessageContentPart.CreateTextPart("Whose logo is this?: "), + ChatMessageContentPart.CreateImagePart(new Uri("https://upload.wikimedia.org/wikipedia/commons/c/c3/Openai.png"))]), }; // Add function definition to trigger more back-and-forth @@ -743,15 +746,26 @@ await RetryWithExponentialBackoffAsync(async () => PageSizeLimit = 2 }; + bool foundContentParts = false; + await foreach (var message in client.GetChatCompletionMessagesAsync(completion.Id, options)) { totalMessages++; lastMessageId = message.Id; + + // Check if the message contains any content parts + if (message.ContentParts.Count > 0) + { + foundContentParts = true; + Assert.That(message.ContentParts[0].Text, Is.EqualTo("Whose logo is this?: ")); + Assert.That(message.ContentParts[1].ImageBytes, Is.Not.Null); + } Assert.That(message.Id, Is.Not.Null.And.Not.Empty); if (totalMessages >= 4) break; // Get a few pages worth } + Assert.That(foundContentParts, Is.True); Assert.That(totalMessages, Is.GreaterThan(3)); Assert.That(lastMessageId, Is.Not.Null); }); diff --git a/tspCodeModel.json b/tspCodeModel.json index 3aa5496a6..c81d22494 100644 --- a/tspCodeModel.json +++ b/tspCodeModel.json @@ -2032,7 +2032,7 @@ "namespace": "OpenAI", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { @@ -2091,7 +2091,7 @@ "namespace": "OpenAI", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { @@ -2137,7 +2137,7 @@ "namespace": "OpenAI", "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [] }, { @@ -33004,7 +33004,7 @@ "name": "ChatCompletionRequestMessageContentPart", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPart", - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [ { "name": "TypeSpec.HttpClient.CSharp.@dynamicModel", @@ -33044,7 +33044,7 @@ "name": "ChatCompletionRequestMessageContentPartText", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartText", - "usage": "Input,Json", + "usage": "Input,Output,Json", "doc": "Learn about [text inputs](/docs/guides/text-generation).", "discriminatorValue": "text", "decorators": [ @@ -33155,7 +33155,7 @@ ], "isFixed": true, "isFlags": false, - "usage": "Input,Json", + "usage": "Input,Output,Json", "access": "public", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartType", "apiVersions": [], @@ -33211,7 +33211,7 @@ "name": "ChatCompletionRequestMessageContentPartImage", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartImage", - "usage": "Input,Json", + "usage": "Input,Output,Json", "doc": "Learn about [image inputs](/docs/guides/vision).", "discriminatorValue": "image_url", "decorators": [ @@ -33267,7 +33267,7 @@ "name": "ChatCompletionRequestMessageContentPartImageImageUrl", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartImage.image_url.anonymous", - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [], "properties": [ { @@ -33341,7 +33341,7 @@ "name": "ChatCompletionRequestMessageContentPartRefusal", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartRefusal", - "usage": "Input,Json", + "usage": "Input,Output,Json", "discriminatorValue": "refusal", "decorators": [ { @@ -33419,7 +33419,7 @@ "name": "ChatCompletionRequestMessageContentPartFile", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartFile", - "usage": "Input,Json", + "usage": "Input,Output,Json", "doc": "Learn about [file inputs](/docs/guides/text) for text generation.", "discriminatorValue": "file", "decorators": [ @@ -33475,7 +33475,7 @@ "name": "ChatCompletionRequestMessageContentPartFileFile", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartFile.file.anonymous", - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [], "properties": [ { @@ -33579,7 +33579,7 @@ "name": "ChatCompletionRequestMessageContentPartAudio", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartAudio", - "usage": "Input,Json", + "usage": "Input,Output,Json", "doc": "Learn about [audio inputs](/docs/guides/audio).", "discriminatorValue": "input_audio", "decorators": [ @@ -33635,7 +33635,7 @@ "name": "ChatCompletionRequestMessageContentPartAudioInputAudio", "namespace": "OpenAI", "crossLanguageDefinitionId": "OpenAI.ChatCompletionRequestMessageContentPartAudio.input_audio.anonymous", - "usage": "Input,Json", + "usage": "Input,Output,Json", "decorators": [], "properties": [ { @@ -37502,11 +37502,37 @@ { "$id": "3256", "kind": "property", + "name": "content_parts", + "serializedName": "content_parts", + "type": { + "$id": "3257", + "kind": "nullable", + "type": { + "$ref": "2926" + }, + "namespace": "OpenAI" + }, + "optional": true, + "readOnly": false, + "discriminator": false, + "flatten": false, + "decorators": [], + "crossLanguageDefinitionId": "OpenAI.ChatCompletionMessageList.datum.anonymous.content_parts", + "serializationOptions": { + "json": { + "name": "content_parts" + } + }, + "isHttpMetadata": false + }, + { + "$id": "3258", + "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the chat message.", "type": { - "$id": "3257", + "$id": "3259", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37544,13 +37570,13 @@ "isHttpMetadata": false }, { - "$id": "3258", + "$id": "3260", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first chat message in the data array.", "type": { - "$id": "3259", + "$id": "3261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37570,13 +37596,13 @@ "isHttpMetadata": false }, { - "$id": "3260", + "$id": "3262", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last chat message in the data array.", "type": { - "$id": "3261", + "$id": "3263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37596,13 +37622,13 @@ "isHttpMetadata": false }, { - "$id": "3262", + "$id": "3264", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more chat messages available.", "type": { - "$id": "3263", + "$id": "3265", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -37627,7 +37653,7 @@ "$ref": "3247" }, { - "$id": "3264", + "$id": "3266", "kind": "model", "name": "ContainerListResource", "namespace": "OpenAI", @@ -37636,7 +37662,7 @@ "decorators": [], "properties": [ { - "$id": "3265", + "$id": "3267", "kind": "property", "name": "object", "serializedName": "object", @@ -37658,17 +37684,17 @@ "isHttpMetadata": false }, { - "$id": "3266", + "$id": "3268", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of containers.", "type": { - "$id": "3267", + "$id": "3269", "kind": "array", "name": "ArrayContainerResource", "valueType": { - "$id": "3268", + "$id": "3270", "kind": "model", "name": "ContainerResource", "namespace": "OpenAI", @@ -37677,13 +37703,13 @@ "decorators": [], "properties": [ { - "$id": "3269", + "$id": "3271", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the container.", "type": { - "$id": "3270", + "$id": "3272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37703,13 +37729,13 @@ "isHttpMetadata": false }, { - "$id": "3271", + "$id": "3273", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object.", "type": { - "$id": "3272", + "$id": "3274", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37729,13 +37755,13 @@ "isHttpMetadata": false }, { - "$id": "3273", + "$id": "3275", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container.", "type": { - "$id": "3274", + "$id": "3276", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37755,18 +37781,18 @@ "isHttpMetadata": false }, { - "$id": "3275", + "$id": "3277", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the container was created.", "type": { - "$id": "3276", + "$id": "3278", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3277", + "$id": "3279", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37789,13 +37815,13 @@ "isHttpMetadata": false }, { - "$id": "3278", + "$id": "3280", "kind": "property", "name": "status", "serializedName": "status", "doc": "Status of the container (e.g., active, deleted).", "type": { - "$id": "3279", + "$id": "3281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37815,13 +37841,13 @@ "isHttpMetadata": false }, { - "$id": "3280", + "$id": "3282", "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": "3281", + "$id": "3283", "kind": "model", "name": "ContainerResourceExpiresAfter", "namespace": "OpenAI", @@ -37830,7 +37856,7 @@ "decorators": [], "properties": [ { - "$id": "3282", + "$id": "3284", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -37852,13 +37878,13 @@ "isHttpMetadata": false }, { - "$id": "3283", + "$id": "3285", "kind": "property", "name": "minutes", "serializedName": "minutes", "doc": "The number of minutes after the anchor before the container expires.", "type": { - "$id": "3284", + "$id": "3286", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -37911,13 +37937,13 @@ "isHttpMetadata": false }, { - "$id": "3285", + "$id": "3287", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first container in the list.", "type": { - "$id": "3286", + "$id": "3288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37937,13 +37963,13 @@ "isHttpMetadata": false }, { - "$id": "3287", + "$id": "3289", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last container in the list.", "type": { - "$id": "3288", + "$id": "3290", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -37963,13 +37989,13 @@ "isHttpMetadata": false }, { - "$id": "3289", + "$id": "3291", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more containers available.", "type": { - "$id": "3290", + "$id": "3292", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -37991,13 +38017,13 @@ ] }, { - "$ref": "3268" + "$ref": "3270" }, { - "$ref": "3281" + "$ref": "3283" }, { - "$id": "3291", + "$id": "3293", "kind": "model", "name": "CreateContainerBody", "namespace": "OpenAI", @@ -38006,13 +38032,13 @@ "decorators": [], "properties": [ { - "$id": "3292", + "$id": "3294", "kind": "property", "name": "name", "serializedName": "name", "doc": "Name of the container to create.", "type": { - "$id": "3293", + "$id": "3295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38032,7 +38058,7 @@ "isHttpMetadata": false }, { - "$id": "3294", + "$id": "3296", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -38054,13 +38080,13 @@ "isHttpMetadata": false }, { - "$id": "3295", + "$id": "3297", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "doc": "Container expiration time in seconds relative to the 'anchor' time.", "type": { - "$id": "3296", + "$id": "3298", "kind": "model", "name": "CreateContainerBodyExpiresAfter", "namespace": "OpenAI", @@ -38069,7 +38095,7 @@ "decorators": [], "properties": [ { - "$id": "3297", + "$id": "3299", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -38091,12 +38117,12 @@ "isHttpMetadata": false }, { - "$id": "3298", + "$id": "3300", "kind": "property", "name": "minutes", "serializedName": "minutes", "type": { - "$id": "3299", + "$id": "3301", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38133,10 +38159,10 @@ ] }, { - "$ref": "3296" + "$ref": "3298" }, { - "$id": "3300", + "$id": "3302", "kind": "model", "name": "DeleteContainerResponse", "namespace": "OpenAI", @@ -38145,12 +38171,12 @@ "decorators": [], "properties": [ { - "$id": "3301", + "$id": "3303", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3302", + "$id": "3304", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38170,7 +38196,7 @@ "isHttpMetadata": false }, { - "$id": "3303", + "$id": "3305", "kind": "property", "name": "object", "serializedName": "object", @@ -38191,7 +38217,7 @@ "isHttpMetadata": false }, { - "$id": "3304", + "$id": "3306", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -38214,7 +38240,7 @@ ] }, { - "$id": "3305", + "$id": "3307", "kind": "model", "name": "CreateContainerFileBody", "namespace": "OpenAI", @@ -38223,13 +38249,13 @@ "decorators": [], "properties": [ { - "$id": "3306", + "$id": "3308", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "Name of the file to create.", "type": { - "$id": "3307", + "$id": "3309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38255,13 +38281,13 @@ "isHttpMetadata": false }, { - "$id": "3308", + "$id": "3310", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3309", + "$id": "3311", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -38290,7 +38316,7 @@ ] }, { - "$id": "3310", + "$id": "3312", "kind": "model", "name": "ContainerFileResource", "namespace": "OpenAI", @@ -38299,13 +38325,13 @@ "decorators": [], "properties": [ { - "$id": "3311", + "$id": "3313", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the file.", "type": { - "$id": "3312", + "$id": "3314", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38325,13 +38351,13 @@ "isHttpMetadata": false }, { - "$id": "3313", + "$id": "3315", "kind": "property", "name": "object", "serializedName": "object", "doc": "The type of this object (`container.file`).", "type": { - "$id": "3314", + "$id": "3316", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38351,13 +38377,13 @@ "isHttpMetadata": false }, { - "$id": "3315", + "$id": "3317", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The container this file belongs to.", "type": { - "$id": "3316", + "$id": "3318", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38377,18 +38403,18 @@ "isHttpMetadata": false }, { - "$id": "3317", + "$id": "3319", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the file was created.", "type": { - "$id": "3318", + "$id": "3320", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3319", + "$id": "3321", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38411,13 +38437,13 @@ "isHttpMetadata": false }, { - "$id": "3320", + "$id": "3322", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "Size of the file in bytes.", "type": { - "$id": "3321", + "$id": "3323", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38437,13 +38463,13 @@ "isHttpMetadata": false }, { - "$id": "3322", + "$id": "3324", "kind": "property", "name": "path", "serializedName": "path", "doc": "Path of the file in the container.", "type": { - "$id": "3323", + "$id": "3325", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38463,13 +38489,13 @@ "isHttpMetadata": false }, { - "$id": "3324", + "$id": "3326", "kind": "property", "name": "source", "serializedName": "source", "doc": "Source of the file (e.g., `user`, `assistant`).", "type": { - "$id": "3325", + "$id": "3327", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38491,7 +38517,7 @@ ] }, { - "$id": "3326", + "$id": "3328", "kind": "model", "name": "ContainerFileListResource", "namespace": "OpenAI", @@ -38500,7 +38526,7 @@ "decorators": [], "properties": [ { - "$id": "3327", + "$id": "3329", "kind": "property", "name": "object", "serializedName": "object", @@ -38522,17 +38548,17 @@ "isHttpMetadata": false }, { - "$id": "3328", + "$id": "3330", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of container files.", "type": { - "$id": "3329", + "$id": "3331", "kind": "array", "name": "ArrayContainerFileResource", "valueType": { - "$ref": "3310" + "$ref": "3312" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -38551,13 +38577,13 @@ "isHttpMetadata": false }, { - "$id": "3330", + "$id": "3332", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first file in the list.", "type": { - "$id": "3331", + "$id": "3333", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38577,13 +38603,13 @@ "isHttpMetadata": false }, { - "$id": "3332", + "$id": "3334", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last file in the list.", "type": { - "$id": "3333", + "$id": "3335", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38603,13 +38629,13 @@ "isHttpMetadata": false }, { - "$id": "3334", + "$id": "3336", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more files available.", "type": { - "$id": "3335", + "$id": "3337", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -38631,7 +38657,7 @@ ] }, { - "$id": "3336", + "$id": "3338", "kind": "model", "name": "DeleteContainerFileResponse", "namespace": "OpenAI", @@ -38640,12 +38666,12 @@ "decorators": [], "properties": [ { - "$id": "3337", + "$id": "3339", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3338", + "$id": "3340", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38665,7 +38691,7 @@ "isHttpMetadata": false }, { - "$id": "3339", + "$id": "3341", "kind": "property", "name": "object", "serializedName": "object", @@ -38686,7 +38712,7 @@ "isHttpMetadata": false }, { - "$id": "3340", + "$id": "3342", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -38709,7 +38735,7 @@ ] }, { - "$id": "3341", + "$id": "3343", "kind": "model", "name": "CreateEmbeddingRequest", "namespace": "OpenAI", @@ -38723,18 +38749,18 @@ ], "properties": [ { - "$id": "3342", + "$id": "3344", "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": "3343", + "$id": "3345", "kind": "union", "name": "CreateEmbeddingRequestInput", "variantTypes": [ { - "$id": "3344", + "$id": "3346", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38747,7 +38773,7 @@ "$ref": "2604" }, { - "$id": "3345", + "$id": "3347", "kind": "array", "name": "ArrayArray", "valueType": { @@ -38774,7 +38800,7 @@ "isHttpMetadata": false }, { - "$id": "3346", + "$id": "3348", "kind": "property", "name": "model", "serializedName": "model", @@ -38796,7 +38822,7 @@ "isHttpMetadata": false }, { - "$id": "3347", + "$id": "3349", "kind": "property", "name": "encoding_format", "serializedName": "encoding_format", @@ -38818,13 +38844,13 @@ "isHttpMetadata": false }, { - "$id": "3348", + "$id": "3350", "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": "3349", + "$id": "3351", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38844,13 +38870,13 @@ "isHttpMetadata": false }, { - "$id": "3350", + "$id": "3352", "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": "3351", + "$id": "3353", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38872,7 +38898,7 @@ ] }, { - "$id": "3352", + "$id": "3354", "kind": "model", "name": "CreateEmbeddingResponse", "namespace": "OpenAI", @@ -38886,17 +38912,17 @@ ], "properties": [ { - "$id": "3353", + "$id": "3355", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of embeddings generated by the model.", "type": { - "$id": "3354", + "$id": "3356", "kind": "array", "name": "ArrayEmbedding", "valueType": { - "$id": "3355", + "$id": "3357", "kind": "model", "name": "Embedding", "namespace": "OpenAI", @@ -38911,13 +38937,13 @@ ], "properties": [ { - "$id": "3356", + "$id": "3358", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the embedding in the list of embeddings.", "type": { - "$id": "3357", + "$id": "3359", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -38937,22 +38963,22 @@ "isHttpMetadata": false }, { - "$id": "3358", + "$id": "3360", "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": "3359", + "$id": "3361", "kind": "union", "name": "EmbeddingEmbedding", "variantTypes": [ { - "$id": "3360", + "$id": "3362", "kind": "array", "name": "Array14", "valueType": { - "$id": "3361", + "$id": "3363", "kind": "float", "name": "float", "crossLanguageDefinitionId": "TypeSpec.float", @@ -38962,7 +38988,7 @@ "decorators": [] }, { - "$id": "3362", + "$id": "3364", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -38986,7 +39012,7 @@ "isHttpMetadata": false }, { - "$id": "3363", + "$id": "3365", "kind": "property", "name": "object", "serializedName": "object", @@ -39026,13 +39052,13 @@ "isHttpMetadata": false }, { - "$id": "3364", + "$id": "3366", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model used to generate the embedding.", "type": { - "$id": "3365", + "$id": "3367", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39052,7 +39078,7 @@ "isHttpMetadata": false }, { - "$id": "3366", + "$id": "3368", "kind": "property", "name": "object", "serializedName": "object", @@ -39074,13 +39100,13 @@ "isHttpMetadata": false }, { - "$id": "3367", + "$id": "3369", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "The usage information for the request.", "type": { - "$id": "3368", + "$id": "3370", "kind": "model", "name": "CreateEmbeddingResponseUsage", "namespace": "OpenAI", @@ -39089,13 +39115,13 @@ "decorators": [], "properties": [ { - "$id": "3369", + "$id": "3371", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of tokens used by the prompt.", "type": { - "$id": "3370", + "$id": "3372", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39115,13 +39141,13 @@ "isHttpMetadata": false }, { - "$id": "3371", + "$id": "3373", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used by the request.", "type": { - "$id": "3372", + "$id": "3374", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39158,13 +39184,13 @@ ] }, { - "$ref": "3355" + "$ref": "3357" }, { - "$ref": "3368" + "$ref": "3370" }, { - "$id": "3373", + "$id": "3375", "kind": "model", "name": "ListFilesResponse", "namespace": "OpenAI", @@ -39173,7 +39199,7 @@ "decorators": [], "properties": [ { - "$id": "3374", + "$id": "3376", "kind": "property", "name": "object", "serializedName": "object", @@ -39194,16 +39220,16 @@ "isHttpMetadata": false }, { - "$id": "3375", + "$id": "3377", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3376", + "$id": "3378", "kind": "array", "name": "ArrayOpenAiFile", "valueType": { - "$id": "3377", + "$id": "3379", "kind": "model", "name": "OpenAIFile", "namespace": "OpenAI", @@ -39213,13 +39239,13 @@ "decorators": [], "properties": [ { - "$id": "3378", + "$id": "3380", "kind": "property", "name": "id", "serializedName": "id", "doc": "The file identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3379", + "$id": "3381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39239,16 +39265,16 @@ "isHttpMetadata": false }, { - "$id": "3380", + "$id": "3382", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The size of the file, in bytes.", "type": { - "$id": "3381", + "$id": "3383", "kind": "nullable", "type": { - "$id": "3382", + "$id": "3384", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -39270,18 +39296,18 @@ "isHttpMetadata": false }, { - "$id": "3383", + "$id": "3385", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the file was created.", "type": { - "$id": "3384", + "$id": "3386", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3385", + "$id": "3387", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39304,18 +39330,18 @@ "isHttpMetadata": false }, { - "$id": "3386", + "$id": "3388", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the file will expire.", "type": { - "$id": "3387", + "$id": "3389", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3388", + "$id": "3390", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39338,13 +39364,13 @@ "isHttpMetadata": false }, { - "$id": "3389", + "$id": "3391", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "3390", + "$id": "3392", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39364,7 +39390,7 @@ "isHttpMetadata": false }, { - "$id": "3391", + "$id": "3393", "kind": "property", "name": "object", "serializedName": "object", @@ -39386,7 +39412,7 @@ "isHttpMetadata": false }, { - "$id": "3392", + "$id": "3394", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -39408,7 +39434,7 @@ "isHttpMetadata": false }, { - "$id": "3393", + "$id": "3395", "kind": "property", "name": "status", "serializedName": "status", @@ -39430,13 +39456,13 @@ "isHttpMetadata": false }, { - "$id": "3394", + "$id": "3396", "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": "3395", + "$id": "3397", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39474,12 +39500,12 @@ "isHttpMetadata": false }, { - "$id": "3396", + "$id": "3398", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3397", + "$id": "3399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39499,12 +39525,12 @@ "isHttpMetadata": false }, { - "$id": "3398", + "$id": "3400", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3399", + "$id": "3401", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39524,12 +39550,12 @@ "isHttpMetadata": false }, { - "$id": "3400", + "$id": "3402", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3401", + "$id": "3403", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -39551,10 +39577,10 @@ ] }, { - "$ref": "3377" + "$ref": "3379" }, { - "$id": "3402", + "$id": "3404", "kind": "model", "name": "CreateFileRequest", "namespace": "OpenAI", @@ -39563,13 +39589,13 @@ "decorators": [], "properties": [ { - "$id": "3403", + "$id": "3405", "kind": "property", "name": "file", "serializedName": "file", "doc": "The File object (not file name) to be uploaded.", "type": { - "$id": "3404", + "$id": "3406", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -39596,7 +39622,7 @@ "isHttpMetadata": false }, { - "$id": "3405", + "$id": "3407", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -39626,7 +39652,7 @@ ] }, { - "$id": "3406", + "$id": "3408", "kind": "model", "name": "DeleteFileResponse", "namespace": "OpenAI", @@ -39635,12 +39661,12 @@ "decorators": [], "properties": [ { - "$id": "3407", + "$id": "3409", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "3408", + "$id": "3410", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39660,7 +39686,7 @@ "isHttpMetadata": false }, { - "$id": "3409", + "$id": "3411", "kind": "property", "name": "object", "serializedName": "object", @@ -39681,12 +39707,12 @@ "isHttpMetadata": false }, { - "$id": "3410", + "$id": "3412", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "3411", + "$id": "3413", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -39708,7 +39734,7 @@ ] }, { - "$id": "3412", + "$id": "3414", "kind": "model", "name": "ListFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -39717,16 +39743,16 @@ "decorators": [], "properties": [ { - "$id": "3413", + "$id": "3415", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3414", + "$id": "3416", "kind": "array", "name": "ArrayFineTuningCheckpointPermission", "valueType": { - "$id": "3415", + "$id": "3417", "kind": "model", "name": "FineTuningCheckpointPermission", "namespace": "OpenAI", @@ -39736,13 +39762,13 @@ "decorators": [], "properties": [ { - "$id": "3416", + "$id": "3418", "kind": "property", "name": "id", "serializedName": "id", "doc": "The permission identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3417", + "$id": "3419", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39762,18 +39788,18 @@ "isHttpMetadata": false }, { - "$id": "3418", + "$id": "3420", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the permission was created.", "type": { - "$id": "3419", + "$id": "3421", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3420", + "$id": "3422", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -39796,13 +39822,13 @@ "isHttpMetadata": false }, { - "$id": "3421", + "$id": "3423", "kind": "property", "name": "project_id", "serializedName": "project_id", "doc": "The project identifier that the permission is for.", "type": { - "$id": "3422", + "$id": "3424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39822,7 +39848,7 @@ "isHttpMetadata": false }, { - "$id": "3423", + "$id": "3425", "kind": "property", "name": "object", "serializedName": "object", @@ -39862,7 +39888,7 @@ "isHttpMetadata": false }, { - "$id": "3424", + "$id": "3426", "kind": "property", "name": "object", "serializedName": "object", @@ -39883,15 +39909,15 @@ "isHttpMetadata": false }, { - "$id": "3425", + "$id": "3427", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3426", + "$id": "3428", "kind": "nullable", "type": { - "$id": "3427", + "$id": "3429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39913,15 +39939,15 @@ "isHttpMetadata": false }, { - "$id": "3428", + "$id": "3430", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3429", + "$id": "3431", "kind": "nullable", "type": { - "$id": "3430", + "$id": "3432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -39943,12 +39969,12 @@ "isHttpMetadata": false }, { - "$id": "3431", + "$id": "3433", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3432", + "$id": "3434", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -39970,10 +39996,10 @@ ] }, { - "$ref": "3415" + "$ref": "3417" }, { - "$id": "3433", + "$id": "3435", "kind": "model", "name": "CreateFineTuningCheckpointPermissionRequest", "namespace": "OpenAI", @@ -39982,7 +40008,7 @@ "decorators": [], "properties": [ { - "$id": "3434", + "$id": "3436", "kind": "property", "name": "project_ids", "serializedName": "project_ids", @@ -40006,7 +40032,7 @@ ] }, { - "$id": "3435", + "$id": "3437", "kind": "model", "name": "DeleteFineTuningCheckpointPermissionResponse", "namespace": "OpenAI", @@ -40015,13 +40041,13 @@ "decorators": [], "properties": [ { - "$id": "3436", + "$id": "3438", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the fine-tuned model checkpoint permission that was deleted.", "type": { - "$id": "3437", + "$id": "3439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40041,7 +40067,7 @@ "isHttpMetadata": false }, { - "$id": "3438", + "$id": "3440", "kind": "property", "name": "object", "serializedName": "object", @@ -40063,13 +40089,13 @@ "isHttpMetadata": false }, { - "$id": "3439", + "$id": "3441", "kind": "property", "name": "deleted", "serializedName": "deleted", "doc": "Whether the fine-tuned model checkpoint permission was successfully deleted.", "type": { - "$id": "3440", + "$id": "3442", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -40091,7 +40117,7 @@ ] }, { - "$id": "3441", + "$id": "3443", "kind": "model", "name": "CreateFineTuningJobRequest", "namespace": "OpenAI", @@ -40100,7 +40126,7 @@ "decorators": [], "properties": [ { - "$id": "3442", + "$id": "3444", "kind": "property", "name": "model", "serializedName": "model", @@ -40122,13 +40148,13 @@ "isHttpMetadata": false }, { - "$id": "3443", + "$id": "3445", "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": "3444", + "$id": "3446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40148,13 +40174,13 @@ "isHttpMetadata": false }, { - "$id": "3445", + "$id": "3447", "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": "3446", + "$id": "3448", "kind": "model", "name": "CreateFineTuningJobRequestHyperparameters", "namespace": "OpenAI", @@ -40163,13 +40189,13 @@ "decorators": [], "properties": [ { - "$id": "3447", + "$id": "3449", "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": "3448", + "$id": "3450", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersBatchSize", "variantTypes": [ @@ -40177,7 +40203,7 @@ "$ref": "1579" }, { - "$id": "3449", + "$id": "3451", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40201,13 +40227,13 @@ "isHttpMetadata": false }, { - "$id": "3450", + "$id": "3452", "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": "3451", + "$id": "3453", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -40215,7 +40241,7 @@ "$ref": "1581" }, { - "$id": "3452", + "$id": "3454", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40239,13 +40265,13 @@ "isHttpMetadata": false }, { - "$id": "3453", + "$id": "3455", "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": "3454", + "$id": "3456", "kind": "union", "name": "CreateFineTuningJobRequestHyperparametersNEpochs", "variantTypes": [ @@ -40253,7 +40279,7 @@ "$ref": "1583" }, { - "$id": "3455", + "$id": "3457", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40292,16 +40318,16 @@ "isHttpMetadata": false }, { - "$id": "3456", + "$id": "3458", "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": "3457", + "$id": "3459", "kind": "nullable", "type": { - "$id": "3458", + "$id": "3460", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40323,16 +40349,16 @@ "isHttpMetadata": false }, { - "$id": "3459", + "$id": "3461", "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": "3460", + "$id": "3462", "kind": "nullable", "type": { - "$id": "3461", + "$id": "3463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40354,20 +40380,20 @@ "isHttpMetadata": false }, { - "$id": "3462", + "$id": "3464", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for your fine-tuning job.", "type": { - "$id": "3463", + "$id": "3465", "kind": "nullable", "type": { - "$id": "3464", + "$id": "3466", "kind": "array", "name": "ArrayCreateFineTuningJobRequestIntegration", "valueType": { - "$id": "3465", + "$id": "3467", "kind": "model", "name": "CreateFineTuningJobRequestIntegration", "namespace": "OpenAI", @@ -40375,7 +40401,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3466", + "$id": "3468", "kind": "property", "name": "type", "serializedName": "type", @@ -40397,12 +40423,12 @@ }, "properties": [ { - "$ref": "3466" + "$ref": "3468" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3467", + "$id": "3469", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegration", "namespace": "OpenAI", @@ -40411,16 +40437,16 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3465" + "$ref": "3467" }, "properties": [ { - "$id": "3468", + "$id": "3470", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3469", + "$id": "3471", "kind": "enumvalue", "name": "wandb", "value": "wandb", @@ -40428,14 +40454,14 @@ "$ref": "314" }, "enumType": { - "$id": "3470", + "$id": "3472", "kind": "enum", "decorators": [], "name": "CreateFineTuningJobRequestIntegrationType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "3471", + "$id": "3473", "kind": "string", "decorators": [], "name": "string", @@ -40444,16 +40470,16 @@ }, "values": [ { - "$id": "3472", + "$id": "3474", "kind": "enumvalue", "decorators": [], "name": "wandb", "value": "wandb", "valueType": { - "$ref": "3471" + "$ref": "3473" }, "enumType": { - "$ref": "3470" + "$ref": "3472" } } ], @@ -40482,12 +40508,12 @@ "isHttpMetadata": false }, { - "$id": "3473", + "$id": "3475", "kind": "property", "name": "wandb", "serializedName": "wandb", "type": { - "$id": "3474", + "$id": "3476", "kind": "model", "name": "CreateFineTuningJobRequestWandbIntegrationWandb", "namespace": "OpenAI", @@ -40496,12 +40522,12 @@ "decorators": [], "properties": [ { - "$id": "3475", + "$id": "3477", "kind": "property", "name": "project", "serializedName": "project", "type": { - "$id": "3476", + "$id": "3478", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40521,15 +40547,15 @@ "isHttpMetadata": false }, { - "$id": "3477", + "$id": "3479", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "3478", + "$id": "3480", "kind": "nullable", "type": { - "$id": "3479", + "$id": "3481", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40551,15 +40577,15 @@ "isHttpMetadata": false }, { - "$id": "3480", + "$id": "3482", "kind": "property", "name": "entity", "serializedName": "entity", "type": { - "$id": "3481", + "$id": "3483", "kind": "nullable", "type": { - "$id": "3482", + "$id": "3484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -40581,7 +40607,7 @@ "isHttpMetadata": false }, { - "$id": "3483", + "$id": "3485", "kind": "property", "name": "tags", "serializedName": "tags", @@ -40639,16 +40665,16 @@ "isHttpMetadata": false }, { - "$id": "3484", + "$id": "3486", "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": "3485", + "$id": "3487", "kind": "nullable", "type": { - "$id": "3486", + "$id": "3488", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40670,12 +40696,12 @@ "isHttpMetadata": false }, { - "$id": "3487", + "$id": "3489", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$id": "3488", + "$id": "3490", "kind": "model", "name": "FineTuneMethod", "namespace": "OpenAI", @@ -40685,7 +40711,7 @@ "decorators": [], "properties": [ { - "$id": "3489", + "$id": "3491", "kind": "property", "name": "type", "serializedName": "type", @@ -40707,12 +40733,12 @@ "isHttpMetadata": false }, { - "$id": "3490", + "$id": "3492", "kind": "property", "name": "supervised", "serializedName": "supervised", "type": { - "$id": "3491", + "$id": "3493", "kind": "model", "name": "FineTuneSupervisedMethod", "namespace": "OpenAI", @@ -40722,12 +40748,12 @@ "decorators": [], "properties": [ { - "$id": "3492", + "$id": "3494", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3493", + "$id": "3495", "kind": "model", "name": "FineTuneSupervisedHyperparameters", "namespace": "OpenAI", @@ -40737,13 +40763,13 @@ "decorators": [], "properties": [ { - "$id": "3494", + "$id": "3496", "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": "3495", + "$id": "3497", "kind": "union", "name": "FineTuneSupervisedHyperparametersBatchSize", "variantTypes": [ @@ -40751,7 +40777,7 @@ "$ref": "1585" }, { - "$id": "3496", + "$id": "3498", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40775,13 +40801,13 @@ "isHttpMetadata": false }, { - "$id": "3497", + "$id": "3499", "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": "3498", + "$id": "3500", "kind": "union", "name": "FineTuneSupervisedHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -40789,7 +40815,7 @@ "$ref": "1587" }, { - "$id": "3499", + "$id": "3501", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40813,13 +40839,13 @@ "isHttpMetadata": false }, { - "$id": "3500", + "$id": "3502", "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": "3501", + "$id": "3503", "kind": "union", "name": "FineTuneSupervisedHyperparametersNEpochs", "variantTypes": [ @@ -40827,7 +40853,7 @@ "$ref": "1589" }, { - "$id": "3502", + "$id": "3504", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40881,12 +40907,12 @@ "isHttpMetadata": false }, { - "$id": "3503", + "$id": "3505", "kind": "property", "name": "dpo", "serializedName": "dpo", "type": { - "$id": "3504", + "$id": "3506", "kind": "model", "name": "FineTuneDPOMethod", "namespace": "OpenAI", @@ -40896,12 +40922,12 @@ "decorators": [], "properties": [ { - "$id": "3505", + "$id": "3507", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3506", + "$id": "3508", "kind": "model", "name": "FineTuneDPOHyperparameters", "namespace": "OpenAI", @@ -40911,13 +40937,13 @@ "decorators": [], "properties": [ { - "$id": "3507", + "$id": "3509", "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": "3508", + "$id": "3510", "kind": "union", "name": "FineTuneDPOHyperparametersBeta", "variantTypes": [ @@ -40925,7 +40951,7 @@ "$ref": "1591" }, { - "$id": "3509", + "$id": "3511", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -40949,13 +40975,13 @@ "isHttpMetadata": false }, { - "$id": "3510", + "$id": "3512", "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": "3511", + "$id": "3513", "kind": "union", "name": "FineTuneDPOHyperparametersBatchSize", "variantTypes": [ @@ -40963,7 +40989,7 @@ "$ref": "1593" }, { - "$id": "3512", + "$id": "3514", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -40987,13 +41013,13 @@ "isHttpMetadata": false }, { - "$id": "3513", + "$id": "3515", "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": "3514", + "$id": "3516", "kind": "union", "name": "FineTuneDPOHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -41001,7 +41027,7 @@ "$ref": "1595" }, { - "$id": "3515", + "$id": "3517", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -41025,13 +41051,13 @@ "isHttpMetadata": false }, { - "$id": "3516", + "$id": "3518", "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": "3517", + "$id": "3519", "kind": "union", "name": "FineTuneDPOHyperparametersNEpochs", "variantTypes": [ @@ -41039,7 +41065,7 @@ "$ref": "1597" }, { - "$id": "3518", + "$id": "3520", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -41093,12 +41119,12 @@ "isHttpMetadata": false }, { - "$id": "3519", + "$id": "3521", "kind": "property", "name": "reinforcement", "serializedName": "reinforcement", "type": { - "$id": "3520", + "$id": "3522", "kind": "model", "name": "FineTuneReinforcementMethod", "namespace": "OpenAI", @@ -41108,18 +41134,18 @@ "decorators": [], "properties": [ { - "$id": "3521", + "$id": "3523", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3522", + "$id": "3524", "kind": "union", "name": "FineTuneReinforcementMethodGrader", "variantTypes": [ { - "$id": "3523", + "$id": "3525", "kind": "model", "name": "GraderStringCheck", "namespace": "OpenAI", @@ -41129,7 +41155,7 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$id": "3524", + "$id": "3526", "kind": "model", "name": "Grader", "namespace": "OpenAI", @@ -41137,7 +41163,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3525", + "$id": "3527", "kind": "property", "name": "type", "serializedName": "type", @@ -41159,15 +41185,15 @@ }, "properties": [ { - "$ref": "3525" + "$ref": "3527" } ], "discriminatedSubtypes": { "string_check": { - "$ref": "3523" + "$ref": "3525" }, "text_similarity": { - "$id": "3526", + "$id": "3528", "kind": "model", "name": "GraderTextSimilarity", "namespace": "OpenAI", @@ -41177,17 +41203,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3524" + "$ref": "3526" }, "properties": [ { - "$id": "3527", + "$id": "3529", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$id": "3528", + "$id": "3530", "kind": "enumvalue", "name": "text_similarity", "value": "text_similarity", @@ -41195,14 +41221,14 @@ "$ref": "328" }, "enumType": { - "$id": "3529", + "$id": "3531", "kind": "enum", "decorators": [], "name": "GraderType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3530", + "$id": "3532", "kind": "string", "decorators": [], "name": "string", @@ -41211,81 +41237,81 @@ }, "values": [ { - "$id": "3531", + "$id": "3533", "kind": "enumvalue", "decorators": [], "name": "string_check", "value": "string_check", "valueType": { - "$ref": "3530" + "$ref": "3532" }, "enumType": { - "$ref": "3529" + "$ref": "3531" } }, { - "$id": "3532", + "$id": "3534", "kind": "enumvalue", "decorators": [], "name": "text_similarity", "value": "text_similarity", "valueType": { - "$ref": "3530" + "$ref": "3532" }, "enumType": { - "$ref": "3529" + "$ref": "3531" } }, { - "$id": "3533", + "$id": "3535", "kind": "enumvalue", "decorators": [], "name": "score_model", "value": "score_model", "valueType": { - "$ref": "3530" + "$ref": "3532" }, "enumType": { - "$ref": "3529" + "$ref": "3531" } }, { - "$id": "3534", + "$id": "3536", "kind": "enumvalue", "decorators": [], "name": "label_model", "value": "label_model", "valueType": { - "$ref": "3530" + "$ref": "3532" }, "enumType": { - "$ref": "3529" + "$ref": "3531" } }, { - "$id": "3535", + "$id": "3537", "kind": "enumvalue", "decorators": [], "name": "python", "value": "python", "valueType": { - "$ref": "3530" + "$ref": "3532" }, "enumType": { - "$ref": "3529" + "$ref": "3531" } }, { - "$id": "3536", + "$id": "3538", "kind": "enumvalue", "decorators": [], "name": "multi", "value": "multi", "valueType": { - "$ref": "3530" + "$ref": "3532" }, "enumType": { - "$ref": "3529" + "$ref": "3531" } } ], @@ -41314,13 +41340,13 @@ "isHttpMetadata": false }, { - "$id": "3537", + "$id": "3539", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3538", + "$id": "3540", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41340,13 +41366,13 @@ "isHttpMetadata": false }, { - "$id": "3539", + "$id": "3541", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3540", + "$id": "3542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41366,13 +41392,13 @@ "isHttpMetadata": false }, { - "$id": "3541", + "$id": "3543", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3542", + "$id": "3544", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41392,7 +41418,7 @@ "isHttpMetadata": false }, { - "$id": "3543", + "$id": "3545", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -41416,7 +41442,7 @@ ] }, "python": { - "$id": "3544", + "$id": "3546", "kind": "model", "name": "GraderPython", "namespace": "OpenAI", @@ -41426,17 +41452,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3524" + "$ref": "3526" }, "properties": [ { - "$id": "3545", + "$id": "3547", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$id": "3546", + "$id": "3548", "kind": "enumvalue", "name": "python", "value": "python", @@ -41444,7 +41470,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3529" + "$ref": "3531" }, "decorators": [] }, @@ -41462,13 +41488,13 @@ "isHttpMetadata": false }, { - "$id": "3547", + "$id": "3549", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3548", + "$id": "3550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41488,13 +41514,13 @@ "isHttpMetadata": false }, { - "$id": "3549", + "$id": "3551", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3550", + "$id": "3552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41514,13 +41540,13 @@ "isHttpMetadata": false }, { - "$id": "3551", + "$id": "3553", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3552", + "$id": "3554", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41542,7 +41568,7 @@ ] }, "score_model": { - "$id": "3553", + "$id": "3555", "kind": "model", "name": "GraderScoreModel", "namespace": "OpenAI", @@ -41552,17 +41578,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3524" + "$ref": "3526" }, "properties": [ { - "$id": "3554", + "$id": "3556", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$id": "3555", + "$id": "3557", "kind": "enumvalue", "name": "score_model", "value": "score_model", @@ -41570,7 +41596,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3529" + "$ref": "3531" }, "decorators": [] }, @@ -41588,13 +41614,13 @@ "isHttpMetadata": false }, { - "$id": "3556", + "$id": "3558", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3557", + "$id": "3559", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41614,13 +41640,13 @@ "isHttpMetadata": false }, { - "$id": "3558", + "$id": "3560", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3559", + "$id": "3561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41640,13 +41666,13 @@ "isHttpMetadata": false }, { - "$id": "3560", + "$id": "3562", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3561", + "$id": "3563", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -41666,17 +41692,17 @@ "isHttpMetadata": false }, { - "$id": "3562", + "$id": "3564", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3563", + "$id": "3565", "kind": "array", "name": "ArrayEvalItem", "valueType": { - "$id": "3564", + "$id": "3566", "kind": "model", "name": "EvalItem", "namespace": "OpenAI", @@ -41686,7 +41712,7 @@ "decorators": [], "properties": [ { - "$id": "3565", + "$id": "3567", "kind": "property", "name": "role", "serializedName": "role", @@ -41708,25 +41734,25 @@ "isHttpMetadata": false }, { - "$id": "3566", + "$id": "3568", "kind": "property", "name": "content", "serializedName": "content", "doc": "Text inputs to the model - can contain template strings.", "type": { - "$id": "3567", + "$id": "3569", "kind": "union", "name": "EvalItemContent1", "variantTypes": [ { - "$id": "3568", + "$id": "3570", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "3569", + "$id": "3571", "kind": "model", "name": "EvalItemContent", "namespace": "OpenAI", @@ -41734,7 +41760,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3570", + "$id": "3572", "kind": "property", "name": "type", "serializedName": "type", @@ -41756,12 +41782,12 @@ }, "properties": [ { - "$ref": "3570" + "$ref": "3572" } ], "discriminatedSubtypes": { "input_text": { - "$id": "3571", + "$id": "3573", "kind": "model", "name": "EvalItemContentInputText", "namespace": "OpenAI", @@ -41770,16 +41796,16 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$ref": "3569" + "$ref": "3571" }, "properties": [ { - "$id": "3572", + "$id": "3574", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3573", + "$id": "3575", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -41787,14 +41813,14 @@ "$ref": "354" }, "enumType": { - "$id": "3574", + "$id": "3576", "kind": "enum", "decorators": [], "name": "EvalItemContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3575", + "$id": "3577", "kind": "string", "decorators": [], "name": "string", @@ -41803,29 +41829,29 @@ }, "values": [ { - "$id": "3576", + "$id": "3578", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "3575" + "$ref": "3577" }, "enumType": { - "$ref": "3574" + "$ref": "3576" } }, { - "$id": "3577", + "$id": "3579", "kind": "enumvalue", "decorators": [], "name": "output_text", "value": "output_text", "valueType": { - "$ref": "3575" + "$ref": "3577" }, "enumType": { - "$ref": "3574" + "$ref": "3576" } } ], @@ -41854,12 +41880,12 @@ "isHttpMetadata": false }, { - "$id": "3578", + "$id": "3580", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3579", + "$id": "3581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41881,7 +41907,7 @@ ] }, "output_text": { - "$id": "3580", + "$id": "3582", "kind": "model", "name": "EvalItemContentOutputText", "namespace": "OpenAI", @@ -41890,16 +41916,16 @@ "discriminatorValue": "output_text", "decorators": [], "baseModel": { - "$ref": "3569" + "$ref": "3571" }, "properties": [ { - "$id": "3581", + "$id": "3583", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "3582", + "$id": "3584", "kind": "enumvalue", "name": "output_text", "value": "output_text", @@ -41907,7 +41933,7 @@ "$ref": "354" }, "enumType": { - "$ref": "3574" + "$ref": "3576" }, "decorators": [] }, @@ -41925,12 +41951,12 @@ "isHttpMetadata": false }, { - "$id": "3583", + "$id": "3585", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "3584", + "$id": "3586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -41971,7 +41997,7 @@ "isHttpMetadata": false }, { - "$id": "3585", + "$id": "3587", "kind": "property", "name": "type", "serializedName": "type", @@ -42011,7 +42037,7 @@ "isHttpMetadata": false }, { - "$id": "3586", + "$id": "3588", "kind": "property", "name": "range", "serializedName": "range", @@ -42035,7 +42061,7 @@ ] }, "multi": { - "$id": "3587", + "$id": "3589", "kind": "model", "name": "GraderMulti", "namespace": "OpenAI", @@ -42045,17 +42071,17 @@ "discriminatorValue": "multi", "decorators": [], "baseModel": { - "$ref": "3524" + "$ref": "3526" }, "properties": [ { - "$id": "3588", + "$id": "3590", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `multi`.", "type": { - "$id": "3589", + "$id": "3591", "kind": "enumvalue", "name": "multi", "value": "multi", @@ -42063,7 +42089,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3529" + "$ref": "3531" }, "decorators": [] }, @@ -42081,13 +42107,13 @@ "isHttpMetadata": false }, { - "$id": "3590", + "$id": "3592", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3591", + "$id": "3593", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42107,29 +42133,29 @@ "isHttpMetadata": false }, { - "$id": "3592", + "$id": "3594", "kind": "property", "name": "graders", "serializedName": "graders", "type": { - "$id": "3593", + "$id": "3595", "kind": "union", "name": "GraderMultiGraders", "variantTypes": [ { - "$ref": "3523" + "$ref": "3525" }, { - "$ref": "3526" + "$ref": "3528" }, { - "$ref": "3544" + "$ref": "3546" }, { - "$ref": "3553" + "$ref": "3555" }, { - "$id": "3594", + "$id": "3596", "kind": "model", "name": "GraderLabelModel", "namespace": "OpenAI", @@ -42139,17 +42165,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3524" + "$ref": "3526" }, "properties": [ { - "$id": "3595", + "$id": "3597", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$id": "3596", + "$id": "3598", "kind": "enumvalue", "name": "label_model", "value": "label_model", @@ -42157,7 +42183,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3529" + "$ref": "3531" }, "decorators": [] }, @@ -42175,13 +42201,13 @@ "isHttpMetadata": false }, { - "$id": "3597", + "$id": "3599", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3598", + "$id": "3600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42201,13 +42227,13 @@ "isHttpMetadata": false }, { - "$id": "3599", + "$id": "3601", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3600", + "$id": "3602", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42227,12 +42253,12 @@ "isHttpMetadata": false }, { - "$id": "3601", + "$id": "3603", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3563" + "$ref": "3565" }, "optional": false, "readOnly": false, @@ -42248,7 +42274,7 @@ "isHttpMetadata": false }, { - "$id": "3602", + "$id": "3604", "kind": "property", "name": "labels", "serializedName": "labels", @@ -42270,7 +42296,7 @@ "isHttpMetadata": false }, { - "$id": "3603", + "$id": "3605", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", @@ -42311,13 +42337,13 @@ "isHttpMetadata": false }, { - "$id": "3604", + "$id": "3606", "kind": "property", "name": "calculate_output", "serializedName": "calculate_output", "doc": "A formula to calculate the output based on grader results.", "type": { - "$id": "3605", + "$id": "3607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42339,19 +42365,19 @@ ] }, "label_model": { - "$ref": "3594" + "$ref": "3596" } } }, "properties": [ { - "$id": "3606", + "$id": "3608", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$id": "3607", + "$id": "3609", "kind": "enumvalue", "name": "string_check", "value": "string_check", @@ -42359,7 +42385,7 @@ "$ref": "328" }, "enumType": { - "$ref": "3529" + "$ref": "3531" }, "decorators": [] }, @@ -42377,13 +42403,13 @@ "isHttpMetadata": false }, { - "$id": "3608", + "$id": "3610", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3609", + "$id": "3611", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42403,13 +42429,13 @@ "isHttpMetadata": false }, { - "$id": "3610", + "$id": "3612", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3611", + "$id": "3613", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42429,13 +42455,13 @@ "isHttpMetadata": false }, { - "$id": "3612", + "$id": "3614", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3613", + "$id": "3615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42455,7 +42481,7 @@ "isHttpMetadata": false }, { - "$id": "3614", + "$id": "3616", "kind": "property", "name": "operation", "serializedName": "operation", @@ -42479,16 +42505,16 @@ ] }, { - "$ref": "3526" + "$ref": "3528" }, { - "$ref": "3544" + "$ref": "3546" }, { - "$ref": "3553" + "$ref": "3555" }, { - "$ref": "3587" + "$ref": "3589" } ], "namespace": "OpenAI", @@ -42508,12 +42534,12 @@ "isHttpMetadata": false }, { - "$id": "3615", + "$id": "3617", "kind": "property", "name": "hyperparameters", "serializedName": "hyperparameters", "type": { - "$id": "3616", + "$id": "3618", "kind": "model", "name": "FineTuneReinforcementHyperparameters", "namespace": "OpenAI", @@ -42523,13 +42549,13 @@ "decorators": [], "properties": [ { - "$id": "3617", + "$id": "3619", "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": "3618", + "$id": "3620", "kind": "union", "name": "FineTuneReinforcementHyperparametersBatchSize", "variantTypes": [ @@ -42537,7 +42563,7 @@ "$ref": "1599" }, { - "$id": "3619", + "$id": "3621", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42561,13 +42587,13 @@ "isHttpMetadata": false }, { - "$id": "3620", + "$id": "3622", "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": "3621", + "$id": "3623", "kind": "union", "name": "FineTuneReinforcementHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -42575,7 +42601,7 @@ "$ref": "1601" }, { - "$id": "3622", + "$id": "3624", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42599,13 +42625,13 @@ "isHttpMetadata": false }, { - "$id": "3623", + "$id": "3625", "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": "3624", + "$id": "3626", "kind": "union", "name": "FineTuneReinforcementHyperparametersNEpochs", "variantTypes": [ @@ -42613,7 +42639,7 @@ "$ref": "1603" }, { - "$id": "3625", + "$id": "3627", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42637,7 +42663,7 @@ "isHttpMetadata": false }, { - "$id": "3626", + "$id": "3628", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", @@ -42659,13 +42685,13 @@ "isHttpMetadata": false }, { - "$id": "3627", + "$id": "3629", "kind": "property", "name": "compute_multiplier", "serializedName": "compute_multiplier", "doc": "Multiplier on amount of compute used for exploring search space during training.", "type": { - "$id": "3628", + "$id": "3630", "kind": "union", "name": "FineTuneReinforcementHyperparametersComputeMultiplier", "variantTypes": [ @@ -42673,7 +42699,7 @@ "$ref": "1605" }, { - "$id": "3629", + "$id": "3631", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -42697,13 +42723,13 @@ "isHttpMetadata": false }, { - "$id": "3630", + "$id": "3632", "kind": "property", "name": "eval_interval", "serializedName": "eval_interval", "doc": "The number of training steps between evaluation runs.", "type": { - "$id": "3631", + "$id": "3633", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalInterval", "variantTypes": [ @@ -42711,7 +42737,7 @@ "$ref": "1607" }, { - "$id": "3632", + "$id": "3634", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42735,13 +42761,13 @@ "isHttpMetadata": false }, { - "$id": "3633", + "$id": "3635", "kind": "property", "name": "eval_samples", "serializedName": "eval_samples", "doc": "Number of evaluation samples to generate per training step.", "type": { - "$id": "3634", + "$id": "3636", "kind": "union", "name": "FineTuneReinforcementHyperparametersEvalSamples", "variantTypes": [ @@ -42749,7 +42775,7 @@ "$ref": "1609" }, { - "$id": "3635", + "$id": "3637", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -42818,7 +42844,7 @@ "isHttpMetadata": false }, { - "$id": "3636", + "$id": "3638", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -42842,73 +42868,73 @@ ] }, { - "$ref": "3446" - }, - { - "$ref": "3465" + "$ref": "3448" }, { "$ref": "3467" }, { - "$ref": "3474" + "$ref": "3469" }, { - "$ref": "3488" + "$ref": "3476" }, { - "$ref": "3491" + "$ref": "3490" }, { "$ref": "3493" }, { - "$ref": "3504" + "$ref": "3495" }, { "$ref": "3506" }, { - "$ref": "3520" + "$ref": "3508" }, { - "$ref": "3523" + "$ref": "3522" }, { - "$ref": "3524" + "$ref": "3525" }, { "$ref": "3526" }, { - "$ref": "3544" + "$ref": "3528" }, { - "$ref": "3553" + "$ref": "3546" }, { - "$ref": "3564" + "$ref": "3555" }, { - "$ref": "3569" + "$ref": "3566" }, { "$ref": "3571" }, { - "$ref": "3580" + "$ref": "3573" + }, + { + "$ref": "3582" }, { - "$ref": "3587" + "$ref": "3589" }, { - "$ref": "3594" + "$ref": "3596" }, { - "$ref": "3616" + "$ref": "3618" }, { - "$id": "3637", + "$id": "3639", "kind": "model", "name": "FineTuningJob", "namespace": "OpenAI", @@ -42918,16 +42944,16 @@ "decorators": [], "properties": [ { - "$id": "3638", + "$id": "3640", "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": "3639", + "$id": "3641", "kind": "nullable", "type": { - "$id": "3640", + "$id": "3642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42949,13 +42975,13 @@ "isHttpMetadata": false }, { - "$id": "3641", + "$id": "3643", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3642", + "$id": "3644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -42975,18 +43001,18 @@ "isHttpMetadata": false }, { - "$id": "3643", + "$id": "3645", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3644", + "$id": "3646", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3645", + "$id": "3647", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43009,16 +43035,16 @@ "isHttpMetadata": false }, { - "$id": "3646", + "$id": "3648", "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": "3647", + "$id": "3649", "kind": "nullable", "type": { - "$id": "3648", + "$id": "3650", "kind": "model", "name": "FineTuningJobError1", "namespace": "OpenAI", @@ -43027,13 +43053,13 @@ "decorators": [], "properties": [ { - "$id": "3649", + "$id": "3651", "kind": "property", "name": "code", "serializedName": "code", "doc": "A machine-readable error code.", "type": { - "$id": "3650", + "$id": "3652", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43053,13 +43079,13 @@ "isHttpMetadata": false }, { - "$id": "3651", + "$id": "3653", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "3652", + "$id": "3654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43079,16 +43105,16 @@ "isHttpMetadata": false }, { - "$id": "3653", + "$id": "3655", "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": "3654", + "$id": "3656", "kind": "nullable", "type": { - "$id": "3655", + "$id": "3657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43127,16 +43153,16 @@ "isHttpMetadata": false }, { - "$id": "3656", + "$id": "3658", "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": "3657", + "$id": "3659", "kind": "nullable", "type": { - "$id": "3658", + "$id": "3660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43158,21 +43184,21 @@ "isHttpMetadata": false }, { - "$id": "3659", + "$id": "3661", "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": "3660", + "$id": "3662", "kind": "nullable", "type": { - "$id": "3661", + "$id": "3663", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3662", + "$id": "3664", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43197,13 +43223,13 @@ "isHttpMetadata": false }, { - "$id": "3663", + "$id": "3665", "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": "3664", + "$id": "3666", "kind": "model", "name": "FineTuningJobHyperparameters", "namespace": "OpenAI", @@ -43212,16 +43238,16 @@ "decorators": [], "properties": [ { - "$id": "3665", + "$id": "3667", "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": "3666", + "$id": "3668", "kind": "nullable", "type": { - "$id": "3667", + "$id": "3669", "kind": "union", "name": "FineTuningJobHyperparametersBatchSize", "variantTypes": [ @@ -43229,7 +43255,7 @@ "$ref": "1611" }, { - "$id": "3668", + "$id": "3670", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43255,13 +43281,13 @@ "isHttpMetadata": false }, { - "$id": "3669", + "$id": "3671", "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": "3670", + "$id": "3672", "kind": "union", "name": "FineTuningJobHyperparametersLearningRateMultiplier", "variantTypes": [ @@ -43269,7 +43295,7 @@ "$ref": "1613" }, { - "$id": "3671", + "$id": "3673", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -43293,13 +43319,13 @@ "isHttpMetadata": false }, { - "$id": "3672", + "$id": "3674", "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": "3673", + "$id": "3675", "kind": "union", "name": "FineTuningJobHyperparametersNEpochs", "variantTypes": [ @@ -43307,7 +43333,7 @@ "$ref": "1615" }, { - "$id": "3674", + "$id": "3676", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43346,13 +43372,13 @@ "isHttpMetadata": false }, { - "$id": "3675", + "$id": "3677", "kind": "property", "name": "model", "serializedName": "model", "doc": "The base model that is being fine-tuned.", "type": { - "$id": "3676", + "$id": "3678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43372,7 +43398,7 @@ "isHttpMetadata": false }, { - "$id": "3677", + "$id": "3679", "kind": "property", "name": "object", "serializedName": "object", @@ -43394,13 +43420,13 @@ "isHttpMetadata": false }, { - "$id": "3678", + "$id": "3680", "kind": "property", "name": "organization_id", "serializedName": "organization_id", "doc": "The organization that owns the fine-tuning job.", "type": { - "$id": "3679", + "$id": "3681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43420,7 +43446,7 @@ "isHttpMetadata": false }, { - "$id": "3680", + "$id": "3682", "kind": "property", "name": "result_files", "serializedName": "result_files", @@ -43442,7 +43468,7 @@ "isHttpMetadata": false }, { - "$id": "3681", + "$id": "3683", "kind": "property", "name": "status", "serializedName": "status", @@ -43464,16 +43490,16 @@ "isHttpMetadata": false }, { - "$id": "3682", + "$id": "3684", "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": "3683", + "$id": "3685", "kind": "nullable", "type": { - "$id": "3684", + "$id": "3686", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43495,13 +43521,13 @@ "isHttpMetadata": false }, { - "$id": "3685", + "$id": "3687", "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": "3686", + "$id": "3688", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43521,16 +43547,16 @@ "isHttpMetadata": false }, { - "$id": "3687", + "$id": "3689", "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": "3688", + "$id": "3690", "kind": "nullable", "type": { - "$id": "3689", + "$id": "3691", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43552,20 +43578,20 @@ "isHttpMetadata": false }, { - "$id": "3690", + "$id": "3692", "kind": "property", "name": "integrations", "serializedName": "integrations", "doc": "A list of integrations to enable for this fine-tuning job.", "type": { - "$id": "3691", + "$id": "3693", "kind": "nullable", "type": { - "$id": "3692", + "$id": "3694", "kind": "array", "name": "ArrayFineTuningIntegration", "valueType": { - "$id": "3693", + "$id": "3695", "kind": "model", "name": "FineTuningIntegration", "namespace": "OpenAI", @@ -43573,7 +43599,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3694", + "$id": "3696", "kind": "property", "name": "type", "serializedName": "type", @@ -43595,12 +43621,12 @@ }, "properties": [ { - "$ref": "3694" + "$ref": "3696" } ], "discriminatedSubtypes": { "wandb": { - "$id": "3695", + "$id": "3697", "kind": "model", "name": "FineTuningIntegrationWandb", "namespace": "OpenAI", @@ -43609,17 +43635,17 @@ "discriminatorValue": "wandb", "decorators": [], "baseModel": { - "$ref": "3693" + "$ref": "3695" }, "properties": [ { - "$id": "3696", + "$id": "3698", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the integration being enabled for the fine-tuning job", "type": { - "$id": "3697", + "$id": "3699", "kind": "enumvalue", "name": "wandb", "value": "wandb", @@ -43627,14 +43653,14 @@ "$ref": "376" }, "enumType": { - "$id": "3698", + "$id": "3700", "kind": "enum", "decorators": [], "name": "FineTuningIntegrationType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "3699", + "$id": "3701", "kind": "string", "decorators": [], "name": "string", @@ -43643,16 +43669,16 @@ }, "values": [ { - "$id": "3700", + "$id": "3702", "kind": "enumvalue", "decorators": [], "name": "wandb", "value": "wandb", "valueType": { - "$ref": "3699" + "$ref": "3701" }, "enumType": { - "$ref": "3698" + "$ref": "3700" } } ], @@ -43681,13 +43707,13 @@ "isHttpMetadata": false }, { - "$id": "3701", + "$id": "3703", "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": "3702", + "$id": "3704", "kind": "model", "name": "FineTuningIntegrationWandbWandb", "namespace": "OpenAI", @@ -43696,13 +43722,13 @@ "decorators": [], "properties": [ { - "$id": "3703", + "$id": "3705", "kind": "property", "name": "project", "serializedName": "project", "doc": "The name of the project that the new run will be created under.", "type": { - "$id": "3704", + "$id": "3706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43722,16 +43748,16 @@ "isHttpMetadata": false }, { - "$id": "3705", + "$id": "3707", "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": "3706", + "$id": "3708", "kind": "nullable", "type": { - "$id": "3707", + "$id": "3709", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43753,16 +43779,16 @@ "isHttpMetadata": false }, { - "$id": "3708", + "$id": "3710", "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": "3709", + "$id": "3711", "kind": "nullable", "type": { - "$id": "3710", + "$id": "3712", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -43784,7 +43810,7 @@ "isHttpMetadata": false }, { - "$id": "3711", + "$id": "3713", "kind": "property", "name": "tags", "serializedName": "tags", @@ -43843,13 +43869,13 @@ "isHttpMetadata": false }, { - "$id": "3712", + "$id": "3714", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for the fine-tuning job.", "type": { - "$id": "3713", + "$id": "3715", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43869,21 +43895,21 @@ "isHttpMetadata": false }, { - "$id": "3714", + "$id": "3716", "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": "3715", + "$id": "3717", "kind": "nullable", "type": { - "$id": "3716", + "$id": "3718", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3717", + "$id": "3719", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -43908,12 +43934,12 @@ "isHttpMetadata": false }, { - "$id": "3718", + "$id": "3720", "kind": "property", "name": "method", "serializedName": "method", "type": { - "$ref": "3488" + "$ref": "3490" }, "optional": true, "readOnly": false, @@ -43929,7 +43955,7 @@ "isHttpMetadata": false }, { - "$id": "3719", + "$id": "3721", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -43953,22 +43979,22 @@ ] }, { - "$ref": "3648" + "$ref": "3650" }, { - "$ref": "3664" + "$ref": "3666" }, { - "$ref": "3693" + "$ref": "3695" }, { - "$ref": "3695" + "$ref": "3697" }, { - "$ref": "3702" + "$ref": "3704" }, { - "$id": "3720", + "$id": "3722", "kind": "model", "name": "ListPaginatedFineTuningJobsResponse", "namespace": "OpenAI", @@ -43977,16 +44003,16 @@ "decorators": [], "properties": [ { - "$id": "3721", + "$id": "3723", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3722", + "$id": "3724", "kind": "array", "name": "ArrayFineTuningJob", "valueType": { - "$ref": "3637" + "$ref": "3639" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -44005,12 +44031,12 @@ "isHttpMetadata": false }, { - "$id": "3723", + "$id": "3725", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3724", + "$id": "3726", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -44030,7 +44056,7 @@ "isHttpMetadata": false }, { - "$id": "3725", + "$id": "3727", "kind": "property", "name": "object", "serializedName": "object", @@ -44053,7 +44079,7 @@ ] }, { - "$id": "3726", + "$id": "3728", "kind": "model", "name": "ListFineTuningJobCheckpointsResponse", "namespace": "OpenAI", @@ -44062,16 +44088,16 @@ "decorators": [], "properties": [ { - "$id": "3727", + "$id": "3729", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3728", + "$id": "3730", "kind": "array", "name": "ArrayFineTuningJobCheckpoint", "valueType": { - "$id": "3729", + "$id": "3731", "kind": "model", "name": "FineTuningJobCheckpoint", "namespace": "OpenAI", @@ -44081,13 +44107,13 @@ "decorators": [], "properties": [ { - "$id": "3730", + "$id": "3732", "kind": "property", "name": "id", "serializedName": "id", "doc": "The checkpoint identifier, which can be referenced in the API endpoints.", "type": { - "$id": "3731", + "$id": "3733", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44107,18 +44133,18 @@ "isHttpMetadata": false }, { - "$id": "3732", + "$id": "3734", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the checkpoint was created.", "type": { - "$id": "3733", + "$id": "3735", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3734", + "$id": "3736", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44141,13 +44167,13 @@ "isHttpMetadata": false }, { - "$id": "3735", + "$id": "3737", "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": "3736", + "$id": "3738", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44167,13 +44193,13 @@ "isHttpMetadata": false }, { - "$id": "3737", + "$id": "3739", "kind": "property", "name": "step_number", "serializedName": "step_number", "doc": "The step number that the checkpoint was created at.", "type": { - "$id": "3738", + "$id": "3740", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44193,13 +44219,13 @@ "isHttpMetadata": false }, { - "$id": "3739", + "$id": "3741", "kind": "property", "name": "metrics", "serializedName": "metrics", "doc": "Metrics at the step number during the fine-tuning job.", "type": { - "$id": "3740", + "$id": "3742", "kind": "model", "name": "FineTuningJobCheckpointMetrics", "namespace": "OpenAI", @@ -44208,12 +44234,12 @@ "decorators": [], "properties": [ { - "$id": "3741", + "$id": "3743", "kind": "property", "name": "step", "serializedName": "step", "type": { - "$id": "3742", + "$id": "3744", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44233,12 +44259,12 @@ "isHttpMetadata": false }, { - "$id": "3743", + "$id": "3745", "kind": "property", "name": "train_loss", "serializedName": "train_loss", "type": { - "$id": "3744", + "$id": "3746", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44258,12 +44284,12 @@ "isHttpMetadata": false }, { - "$id": "3745", + "$id": "3747", "kind": "property", "name": "train_mean_token_accuracy", "serializedName": "train_mean_token_accuracy", "type": { - "$id": "3746", + "$id": "3748", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44283,12 +44309,12 @@ "isHttpMetadata": false }, { - "$id": "3747", + "$id": "3749", "kind": "property", "name": "valid_loss", "serializedName": "valid_loss", "type": { - "$id": "3748", + "$id": "3750", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44308,12 +44334,12 @@ "isHttpMetadata": false }, { - "$id": "3749", + "$id": "3751", "kind": "property", "name": "valid_mean_token_accuracy", "serializedName": "valid_mean_token_accuracy", "type": { - "$id": "3750", + "$id": "3752", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44333,12 +44359,12 @@ "isHttpMetadata": false }, { - "$id": "3751", + "$id": "3753", "kind": "property", "name": "full_valid_loss", "serializedName": "full_valid_loss", "type": { - "$id": "3752", + "$id": "3754", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44358,12 +44384,12 @@ "isHttpMetadata": false }, { - "$id": "3753", + "$id": "3755", "kind": "property", "name": "full_valid_mean_token_accuracy", "serializedName": "full_valid_mean_token_accuracy", "type": { - "$id": "3754", + "$id": "3756", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44398,13 +44424,13 @@ "isHttpMetadata": false }, { - "$id": "3755", + "$id": "3757", "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": "3756", + "$id": "3758", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44424,7 +44450,7 @@ "isHttpMetadata": false }, { - "$id": "3757", + "$id": "3759", "kind": "property", "name": "object", "serializedName": "object", @@ -44464,7 +44490,7 @@ "isHttpMetadata": false }, { - "$id": "3758", + "$id": "3760", "kind": "property", "name": "object", "serializedName": "object", @@ -44485,15 +44511,15 @@ "isHttpMetadata": false }, { - "$id": "3759", + "$id": "3761", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "3760", + "$id": "3762", "kind": "nullable", "type": { - "$id": "3761", + "$id": "3763", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44515,15 +44541,15 @@ "isHttpMetadata": false }, { - "$id": "3762", + "$id": "3764", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "3763", + "$id": "3765", "kind": "nullable", "type": { - "$id": "3764", + "$id": "3766", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44545,12 +44571,12 @@ "isHttpMetadata": false }, { - "$id": "3765", + "$id": "3767", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3766", + "$id": "3768", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -44572,13 +44598,13 @@ ] }, { - "$ref": "3729" + "$ref": "3731" }, { - "$ref": "3740" + "$ref": "3742" }, { - "$id": "3767", + "$id": "3769", "kind": "model", "name": "ListFineTuningJobEventsResponse", "namespace": "OpenAI", @@ -44587,16 +44613,16 @@ "decorators": [], "properties": [ { - "$id": "3768", + "$id": "3770", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "3769", + "$id": "3771", "kind": "array", "name": "ArrayFineTuningJobEvent", "valueType": { - "$id": "3770", + "$id": "3772", "kind": "model", "name": "FineTuningJobEvent", "namespace": "OpenAI", @@ -44606,7 +44632,7 @@ "decorators": [], "properties": [ { - "$id": "3771", + "$id": "3773", "kind": "property", "name": "object", "serializedName": "object", @@ -44628,13 +44654,13 @@ "isHttpMetadata": false }, { - "$id": "3772", + "$id": "3774", "kind": "property", "name": "id", "serializedName": "id", "doc": "The object identifier.", "type": { - "$id": "3773", + "$id": "3775", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44654,18 +44680,18 @@ "isHttpMetadata": false }, { - "$id": "3774", + "$id": "3776", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the fine-tuning job was created.", "type": { - "$id": "3775", + "$id": "3777", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3776", + "$id": "3778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -44688,7 +44714,7 @@ "isHttpMetadata": false }, { - "$id": "3777", + "$id": "3779", "kind": "property", "name": "level", "serializedName": "level", @@ -44710,13 +44736,13 @@ "isHttpMetadata": false }, { - "$id": "3778", + "$id": "3780", "kind": "property", "name": "message", "serializedName": "message", "doc": "The message of the event.", "type": { - "$id": "3779", + "$id": "3781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44736,7 +44762,7 @@ "isHttpMetadata": false }, { - "$id": "3780", + "$id": "3782", "kind": "property", "name": "type", "serializedName": "type", @@ -44758,13 +44784,13 @@ "isHttpMetadata": false }, { - "$id": "3781", + "$id": "3783", "kind": "property", "name": "data", "serializedName": "data", "doc": "The data associated with the event.", "type": { - "$id": "3782", + "$id": "3784", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -44802,7 +44828,7 @@ "isHttpMetadata": false }, { - "$id": "3783", + "$id": "3785", "kind": "property", "name": "object", "serializedName": "object", @@ -44823,12 +44849,12 @@ "isHttpMetadata": false }, { - "$id": "3784", + "$id": "3786", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "3785", + "$id": "3787", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -44850,10 +44876,10 @@ ] }, { - "$ref": "3770" + "$ref": "3772" }, { - "$id": "3786", + "$id": "3788", "kind": "model", "name": "RunGraderRequest", "namespace": "OpenAI", @@ -44862,30 +44888,30 @@ "decorators": [], "properties": [ { - "$id": "3787", + "$id": "3789", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3788", + "$id": "3790", "kind": "union", "name": "RunGraderRequestGrader", "variantTypes": [ { - "$ref": "3523" + "$ref": "3525" }, { - "$ref": "3526" + "$ref": "3528" }, { - "$ref": "3544" + "$ref": "3546" }, { - "$ref": "3553" + "$ref": "3555" }, { - "$ref": "3587" + "$ref": "3589" } ], "namespace": "OpenAI", @@ -44905,13 +44931,13 @@ "isHttpMetadata": false }, { - "$id": "3789", + "$id": "3791", "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": "3790", + "$id": "3792", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -44931,13 +44957,13 @@ "isHttpMetadata": false }, { - "$id": "3791", + "$id": "3793", "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": "3792", + "$id": "3794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -44959,7 +44985,7 @@ ] }, { - "$id": "3793", + "$id": "3795", "kind": "model", "name": "RunGraderResponse", "namespace": "OpenAI", @@ -44968,11 +44994,11 @@ "decorators": [], "properties": [ { - "$id": "3794", + "$id": "3796", "kind": "property", "name": "reward", "type": { - "$id": "3795", + "$id": "3797", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -44988,11 +45014,11 @@ "isHttpMetadata": false }, { - "$id": "3796", + "$id": "3798", "kind": "property", "name": "metadata", "type": { - "$id": "3797", + "$id": "3799", "kind": "model", "name": "RunGraderResponseMetadata", "namespace": "OpenAI", @@ -45001,11 +45027,11 @@ "decorators": [], "properties": [ { - "$id": "3798", + "$id": "3800", "kind": "property", "name": "name", "type": { - "$id": "3799", + "$id": "3801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45021,11 +45047,11 @@ "isHttpMetadata": false }, { - "$id": "3800", + "$id": "3802", "kind": "property", "name": "type", "type": { - "$id": "3801", + "$id": "3803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45041,11 +45067,11 @@ "isHttpMetadata": false }, { - "$id": "3802", + "$id": "3804", "kind": "property", "name": "errors", "type": { - "$id": "3803", + "$id": "3805", "kind": "model", "name": "RunGraderResponseMetadataErrors", "namespace": "OpenAI", @@ -45054,11 +45080,11 @@ "decorators": [], "properties": [ { - "$id": "3804", + "$id": "3806", "kind": "property", "name": "formula_parse_error", "type": { - "$id": "3805", + "$id": "3807", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45074,11 +45100,11 @@ "isHttpMetadata": false }, { - "$id": "3806", + "$id": "3808", "kind": "property", "name": "sample_parse_error", "type": { - "$id": "3807", + "$id": "3809", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45094,11 +45120,11 @@ "isHttpMetadata": false }, { - "$id": "3808", + "$id": "3810", "kind": "property", "name": "truncated_observation_error", "type": { - "$id": "3809", + "$id": "3811", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45114,11 +45140,11 @@ "isHttpMetadata": false }, { - "$id": "3810", + "$id": "3812", "kind": "property", "name": "unresponsive_reward_error", "type": { - "$id": "3811", + "$id": "3813", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45134,11 +45160,11 @@ "isHttpMetadata": false }, { - "$id": "3812", + "$id": "3814", "kind": "property", "name": "invalid_variable_error", "type": { - "$id": "3813", + "$id": "3815", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45154,11 +45180,11 @@ "isHttpMetadata": false }, { - "$id": "3814", + "$id": "3816", "kind": "property", "name": "other_error", "type": { - "$id": "3815", + "$id": "3817", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45174,11 +45200,11 @@ "isHttpMetadata": false }, { - "$id": "3816", + "$id": "3818", "kind": "property", "name": "python_grader_server_error", "type": { - "$id": "3817", + "$id": "3819", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45194,14 +45220,14 @@ "isHttpMetadata": false }, { - "$id": "3818", + "$id": "3820", "kind": "property", "name": "python_grader_server_error_type", "type": { - "$id": "3819", + "$id": "3821", "kind": "nullable", "type": { - "$id": "3820", + "$id": "3822", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45219,11 +45245,11 @@ "isHttpMetadata": false }, { - "$id": "3821", + "$id": "3823", "kind": "property", "name": "python_grader_runtime_error", "type": { - "$id": "3822", + "$id": "3824", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45239,14 +45265,14 @@ "isHttpMetadata": false }, { - "$id": "3823", + "$id": "3825", "kind": "property", "name": "python_grader_runtime_error_details", "type": { - "$id": "3824", + "$id": "3826", "kind": "nullable", "type": { - "$id": "3825", + "$id": "3827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45264,11 +45290,11 @@ "isHttpMetadata": false }, { - "$id": "3826", + "$id": "3828", "kind": "property", "name": "model_grader_server_error", "type": { - "$id": "3827", + "$id": "3829", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45284,11 +45310,11 @@ "isHttpMetadata": false }, { - "$id": "3828", + "$id": "3830", "kind": "property", "name": "model_grader_refusal_error", "type": { - "$id": "3829", + "$id": "3831", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45304,11 +45330,11 @@ "isHttpMetadata": false }, { - "$id": "3830", + "$id": "3832", "kind": "property", "name": "model_grader_parse_error", "type": { - "$id": "3831", + "$id": "3833", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -45324,14 +45350,14 @@ "isHttpMetadata": false }, { - "$id": "3832", + "$id": "3834", "kind": "property", "name": "model_grader_server_error_details", "type": { - "$id": "3833", + "$id": "3835", "kind": "nullable", "type": { - "$id": "3834", + "$id": "3836", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45360,11 +45386,11 @@ "isHttpMetadata": false }, { - "$id": "3835", + "$id": "3837", "kind": "property", "name": "execution_time", "type": { - "$id": "3836", + "$id": "3838", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -45380,11 +45406,11 @@ "isHttpMetadata": false }, { - "$id": "3837", + "$id": "3839", "kind": "property", "name": "scores", "type": { - "$id": "3838", + "$id": "3840", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45400,14 +45426,14 @@ "isHttpMetadata": false }, { - "$id": "3839", + "$id": "3841", "kind": "property", "name": "token_usage", "type": { - "$id": "3840", + "$id": "3842", "kind": "nullable", "type": { - "$id": "3841", + "$id": "3843", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -45425,14 +45451,14 @@ "isHttpMetadata": false }, { - "$id": "3842", + "$id": "3844", "kind": "property", "name": "sampled_model_name", "type": { - "$id": "3843", + "$id": "3845", "kind": "nullable", "type": { - "$id": "3844", + "$id": "3846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45461,11 +45487,11 @@ "isHttpMetadata": false }, { - "$id": "3845", + "$id": "3847", "kind": "property", "name": "sub_rewards", "type": { - "$id": "3846", + "$id": "3848", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45481,11 +45507,11 @@ "isHttpMetadata": false }, { - "$id": "3847", + "$id": "3849", "kind": "property", "name": "model_grader_token_usage_per_model", "type": { - "$id": "3848", + "$id": "3850", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45503,13 +45529,13 @@ ] }, { - "$ref": "3797" + "$ref": "3799" }, { - "$ref": "3803" + "$ref": "3805" }, { - "$id": "3849", + "$id": "3851", "kind": "model", "name": "ValidateGraderRequest", "namespace": "OpenAI", @@ -45518,30 +45544,30 @@ "decorators": [], "properties": [ { - "$id": "3850", + "$id": "3852", "kind": "property", "name": "grader", "serializedName": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3851", + "$id": "3853", "kind": "union", "name": "ValidateGraderRequestGrader", "variantTypes": [ { - "$ref": "3523" + "$ref": "3525" }, { - "$ref": "3526" + "$ref": "3528" }, { - "$ref": "3544" + "$ref": "3546" }, { - "$ref": "3553" + "$ref": "3555" }, { - "$ref": "3587" + "$ref": "3589" } ], "namespace": "OpenAI", @@ -45563,7 +45589,7 @@ ] }, { - "$id": "3852", + "$id": "3854", "kind": "model", "name": "ValidateGraderResponse", "namespace": "OpenAI", @@ -45572,29 +45598,29 @@ "decorators": [], "properties": [ { - "$id": "3853", + "$id": "3855", "kind": "property", "name": "grader", "doc": "The grader used for the fine-tuning job.", "type": { - "$id": "3854", + "$id": "3856", "kind": "union", "name": "ValidateGraderResponseGrader", "variantTypes": [ { - "$ref": "3523" + "$ref": "3525" }, { - "$ref": "3526" + "$ref": "3528" }, { - "$ref": "3544" + "$ref": "3546" }, { - "$ref": "3553" + "$ref": "3555" }, { - "$ref": "3587" + "$ref": "3589" } ], "namespace": "OpenAI", @@ -45612,7 +45638,7 @@ ] }, { - "$id": "3855", + "$id": "3857", "kind": "model", "name": "EvalList", "namespace": "OpenAI", @@ -45622,7 +45648,7 @@ "decorators": [], "properties": [ { - "$id": "3856", + "$id": "3858", "kind": "property", "name": "object", "serializedName": "object", @@ -45644,17 +45670,17 @@ "isHttpMetadata": false }, { - "$id": "3857", + "$id": "3859", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval objects.", "type": { - "$id": "3858", + "$id": "3860", "kind": "array", "name": "ArrayEval", "valueType": { - "$id": "3859", + "$id": "3861", "kind": "model", "name": "Eval", "namespace": "OpenAI", @@ -45664,7 +45690,7 @@ "decorators": [], "properties": [ { - "$id": "3860", + "$id": "3862", "kind": "property", "name": "object", "serializedName": "object", @@ -45686,13 +45712,13 @@ "isHttpMetadata": false }, { - "$id": "3861", + "$id": "3863", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation.", "type": { - "$id": "3862", + "$id": "3864", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45712,13 +45738,13 @@ "isHttpMetadata": false }, { - "$id": "3863", + "$id": "3865", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3864", + "$id": "3866", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -45738,13 +45764,13 @@ "isHttpMetadata": false }, { - "$id": "3865", + "$id": "3867", "kind": "property", "name": "data_source_config", "serializedName": "data_source_config", "doc": "Configuration of data sources used in runs of the evaluation.", "type": { - "$id": "3866", + "$id": "3868", "kind": "model", "name": "EvalDataSourceConfigResource", "namespace": "OpenAI", @@ -45752,7 +45778,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3867", + "$id": "3869", "kind": "property", "name": "type", "serializedName": "type", @@ -45774,12 +45800,12 @@ }, "properties": [ { - "$ref": "3867" + "$ref": "3869" } ], "discriminatedSubtypes": { "custom": { - "$id": "3868", + "$id": "3870", "kind": "model", "name": "EvalCustomDataSourceConfigResource", "namespace": "OpenAI", @@ -45789,17 +45815,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3866" + "$ref": "3868" }, "properties": [ { - "$id": "3869", + "$id": "3871", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$id": "3870", + "$id": "3872", "kind": "enumvalue", "name": "custom", "value": "custom", @@ -45807,14 +45833,14 @@ "$ref": "388" }, "enumType": { - "$id": "3871", + "$id": "3873", "kind": "enum", "decorators": [], "name": "EvalDataSourceConfigType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "3872", + "$id": "3874", "kind": "string", "decorators": [], "name": "string", @@ -45823,42 +45849,42 @@ }, "values": [ { - "$id": "3873", + "$id": "3875", "kind": "enumvalue", "decorators": [], "name": "custom", "value": "custom", "valueType": { - "$ref": "3872" + "$ref": "3874" }, "enumType": { - "$ref": "3871" + "$ref": "3873" } }, { - "$id": "3874", + "$id": "3876", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "3872" + "$ref": "3874" }, "enumType": { - "$ref": "3871" + "$ref": "3873" } }, { - "$id": "3875", + "$id": "3877", "kind": "enumvalue", "decorators": [], "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "3872" + "$ref": "3874" }, "enumType": { - "$ref": "3871" + "$ref": "3873" } } ], @@ -45887,23 +45913,23 @@ "isHttpMetadata": false }, { - "$id": "3876", + "$id": "3878", "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": "3877", + "$id": "3879", "kind": "dict", "keyType": { - "$id": "3878", + "$id": "3880", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "3879", + "$id": "3881", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -45927,7 +45953,7 @@ ] }, "stored_completions": { - "$id": "3880", + "$id": "3882", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigResource", "namespace": "OpenAI", @@ -45938,17 +45964,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3866" + "$ref": "3868" }, "properties": [ { - "$id": "3881", + "$id": "3883", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$id": "3882", + "$id": "3884", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", @@ -45956,7 +45982,7 @@ "$ref": "388" }, "enumType": { - "$ref": "3871" + "$ref": "3873" }, "decorators": [] }, @@ -45974,7 +46000,7 @@ "isHttpMetadata": false }, { - "$id": "3883", + "$id": "3885", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -45996,13 +46022,13 @@ "isHttpMetadata": false }, { - "$id": "3884", + "$id": "3886", "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": "3877" + "$ref": "3879" }, "optional": false, "readOnly": false, @@ -46020,7 +46046,7 @@ ] }, "logs": { - "$id": "3885", + "$id": "3887", "kind": "model", "name": "EvalLogsDataSourceConfigResource", "namespace": "OpenAI", @@ -46030,17 +46056,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3866" + "$ref": "3868" }, "properties": [ { - "$id": "3886", + "$id": "3888", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$id": "3887", + "$id": "3889", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -46048,7 +46074,7 @@ "$ref": "388" }, "enumType": { - "$ref": "3871" + "$ref": "3873" }, "decorators": [] }, @@ -46066,7 +46092,7 @@ "isHttpMetadata": false }, { - "$id": "3888", + "$id": "3890", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -46088,13 +46114,13 @@ "isHttpMetadata": false }, { - "$id": "3889", + "$id": "3891", "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": "3877" + "$ref": "3879" }, "optional": false, "readOnly": false, @@ -46127,20 +46153,20 @@ "isHttpMetadata": false }, { - "$id": "3890", + "$id": "3892", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A list of testing criteria.", "type": { - "$id": "3891", + "$id": "3893", "kind": "nullable", "type": { - "$id": "3892", + "$id": "3894", "kind": "array", "name": "ArrayEvalGraderResource", "valueType": { - "$id": "3893", + "$id": "3895", "kind": "model", "name": "EvalGraderResource", "namespace": "OpenAI", @@ -46148,7 +46174,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "3894", + "$id": "3896", "kind": "property", "name": "type", "serializedName": "type", @@ -46170,12 +46196,12 @@ }, "properties": [ { - "$ref": "3894" + "$ref": "3896" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3895", + "$id": "3897", "kind": "model", "name": "EvalGraderLabelModelResource", "namespace": "OpenAI", @@ -46184,17 +46210,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3893" + "$ref": "3895" }, "properties": [ { - "$id": "3896", + "$id": "3898", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "3596" + "$ref": "3598" }, "optional": false, "readOnly": false, @@ -46210,13 +46236,13 @@ "isHttpMetadata": false }, { - "$id": "3897", + "$id": "3899", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3898", + "$id": "3900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46236,13 +46262,13 @@ "isHttpMetadata": false }, { - "$id": "3899", + "$id": "3901", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3900", + "$id": "3902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46262,12 +46288,12 @@ "isHttpMetadata": false }, { - "$id": "3901", + "$id": "3903", "kind": "property", "name": "input", "serializedName": "input", "type": { - "$ref": "3563" + "$ref": "3565" }, "optional": false, "readOnly": false, @@ -46283,7 +46309,7 @@ "isHttpMetadata": false }, { - "$id": "3902", + "$id": "3904", "kind": "property", "name": "labels", "serializedName": "labels", @@ -46305,7 +46331,7 @@ "isHttpMetadata": false }, { - "$id": "3903", + "$id": "3905", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", @@ -46329,7 +46355,7 @@ ] }, "text_similarity": { - "$id": "3904", + "$id": "3906", "kind": "model", "name": "EvalGraderTextSimilarityResource", "namespace": "OpenAI", @@ -46338,17 +46364,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3893" + "$ref": "3895" }, "properties": [ { - "$id": "3905", + "$id": "3907", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "3528" + "$ref": "3530" }, "optional": false, "readOnly": false, @@ -46364,13 +46390,13 @@ "isHttpMetadata": false }, { - "$id": "3906", + "$id": "3908", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3907", + "$id": "3909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46390,13 +46416,13 @@ "isHttpMetadata": false }, { - "$id": "3908", + "$id": "3910", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3909", + "$id": "3911", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46416,13 +46442,13 @@ "isHttpMetadata": false }, { - "$id": "3910", + "$id": "3912", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "3911", + "$id": "3913", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46442,7 +46468,7 @@ "isHttpMetadata": false }, { - "$id": "3912", + "$id": "3914", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -46464,13 +46490,13 @@ "isHttpMetadata": false }, { - "$id": "3913", + "$id": "3915", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3914", + "$id": "3916", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -46492,7 +46518,7 @@ ] }, "python": { - "$id": "3915", + "$id": "3917", "kind": "model", "name": "EvalGraderPythonResource", "namespace": "OpenAI", @@ -46501,17 +46527,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3893" + "$ref": "3895" }, "properties": [ { - "$id": "3916", + "$id": "3918", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "3546" + "$ref": "3548" }, "optional": false, "readOnly": false, @@ -46527,13 +46553,13 @@ "isHttpMetadata": false }, { - "$id": "3917", + "$id": "3919", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3918", + "$id": "3920", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46553,13 +46579,13 @@ "isHttpMetadata": false }, { - "$id": "3919", + "$id": "3921", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "3920", + "$id": "3922", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46579,13 +46605,13 @@ "isHttpMetadata": false }, { - "$id": "3921", + "$id": "3923", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "3922", + "$id": "3924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46605,13 +46631,13 @@ "isHttpMetadata": false }, { - "$id": "3923", + "$id": "3925", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3924", + "$id": "3926", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -46633,7 +46659,7 @@ ] }, "score_model": { - "$id": "3925", + "$id": "3927", "kind": "model", "name": "EvalGraderScoreModelResource", "namespace": "OpenAI", @@ -46642,17 +46668,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3893" + "$ref": "3895" }, "properties": [ { - "$id": "3926", + "$id": "3928", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "3555" + "$ref": "3557" }, "optional": false, "readOnly": false, @@ -46668,13 +46694,13 @@ "isHttpMetadata": false }, { - "$id": "3927", + "$id": "3929", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3928", + "$id": "3930", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46694,13 +46720,13 @@ "isHttpMetadata": false }, { - "$id": "3929", + "$id": "3931", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "3930", + "$id": "3932", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46720,13 +46746,13 @@ "isHttpMetadata": false }, { - "$id": "3931", + "$id": "3933", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "3932", + "$id": "3934", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -46746,13 +46772,13 @@ "isHttpMetadata": false }, { - "$id": "3933", + "$id": "3935", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3563" + "$ref": "3565" }, "optional": false, "readOnly": false, @@ -46768,7 +46794,7 @@ "isHttpMetadata": false }, { - "$id": "3934", + "$id": "3936", "kind": "property", "name": "range", "serializedName": "range", @@ -46790,13 +46816,13 @@ "isHttpMetadata": false }, { - "$id": "3935", + "$id": "3937", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "3936", + "$id": "3938", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -46838,18 +46864,18 @@ "isHttpMetadata": false }, { - "$id": "3937", + "$id": "3939", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the eval was created.", "type": { - "$id": "3938", + "$id": "3940", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "3939", + "$id": "3941", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -46872,7 +46898,7 @@ "isHttpMetadata": false }, { - "$id": "3940", + "$id": "3942", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -46912,13 +46938,13 @@ "isHttpMetadata": false }, { - "$id": "3941", + "$id": "3943", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval in the data array.", "type": { - "$id": "3942", + "$id": "3944", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46938,13 +46964,13 @@ "isHttpMetadata": false }, { - "$id": "3943", + "$id": "3945", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval in the data array.", "type": { - "$id": "3944", + "$id": "3946", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -46964,13 +46990,13 @@ "isHttpMetadata": false }, { - "$id": "3945", + "$id": "3947", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "3946", + "$id": "3948", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -46992,37 +47018,37 @@ ] }, { - "$ref": "3859" - }, - { - "$ref": "3866" + "$ref": "3861" }, { "$ref": "3868" }, { - "$ref": "3880" + "$ref": "3870" }, { - "$ref": "3885" + "$ref": "3882" }, { - "$ref": "3893" + "$ref": "3887" }, { "$ref": "3895" }, { - "$ref": "3904" + "$ref": "3897" + }, + { + "$ref": "3906" }, { - "$ref": "3915" + "$ref": "3917" }, { - "$ref": "3925" + "$ref": "3927" }, { - "$id": "3947", + "$id": "3949", "kind": "model", "name": "CreateEvalRequest", "namespace": "OpenAI", @@ -47031,13 +47057,13 @@ "decorators": [], "properties": [ { - "$id": "3948", + "$id": "3950", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation.", "type": { - "$id": "3949", + "$id": "3951", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47057,7 +47083,7 @@ "isHttpMetadata": false }, { - "$id": "3950", + "$id": "3952", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -47079,13 +47105,13 @@ "isHttpMetadata": false }, { - "$id": "3951", + "$id": "3953", "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": "3952", + "$id": "3954", "kind": "model", "name": "EvalDataSourceConfigParams", "namespace": "OpenAI", @@ -47093,7 +47119,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3953", + "$id": "3955", "kind": "property", "name": "type", "serializedName": "type", @@ -47115,12 +47141,12 @@ }, "properties": [ { - "$ref": "3953" + "$ref": "3955" } ], "discriminatedSubtypes": { "custom": { - "$id": "3954", + "$id": "3956", "kind": "model", "name": "EvalCustomDataSourceConfigParams", "namespace": "OpenAI", @@ -47130,17 +47156,17 @@ "discriminatorValue": "custom", "decorators": [], "baseModel": { - "$ref": "3952" + "$ref": "3954" }, "properties": [ { - "$id": "3955", + "$id": "3957", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `custom`.", "type": { - "$ref": "3870" + "$ref": "3872" }, "optional": false, "readOnly": false, @@ -47156,13 +47182,13 @@ "isHttpMetadata": false }, { - "$id": "3956", + "$id": "3958", "kind": "property", "name": "item_schema", "serializedName": "item_schema", "doc": "The json schema for each row in the data source.", "type": { - "$ref": "3877" + "$ref": "3879" }, "optional": false, "readOnly": false, @@ -47178,13 +47204,13 @@ "isHttpMetadata": false }, { - "$id": "3957", + "$id": "3959", "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": "3958", + "$id": "3960", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -47206,7 +47232,7 @@ ] }, "logs": { - "$id": "3959", + "$id": "3961", "kind": "model", "name": "EvalLogsDataSourceConfigParams", "namespace": "OpenAI", @@ -47216,17 +47242,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "3952" + "$ref": "3954" }, "properties": [ { - "$id": "3960", + "$id": "3962", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `logs`.", "type": { - "$ref": "3887" + "$ref": "3889" }, "optional": false, "readOnly": false, @@ -47242,7 +47268,7 @@ "isHttpMetadata": false }, { - "$id": "3961", + "$id": "3963", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -47266,7 +47292,7 @@ ] }, "stored_completions": { - "$id": "3962", + "$id": "3964", "kind": "model", "name": "EvalStoredCompletionsDataSourceConfigParams", "namespace": "OpenAI", @@ -47277,17 +47303,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "3952" + "$ref": "3954" }, "properties": [ { - "$id": "3963", + "$id": "3965", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `stored_completions`.", "type": { - "$ref": "3882" + "$ref": "3884" }, "optional": false, "readOnly": false, @@ -47303,13 +47329,13 @@ "isHttpMetadata": false }, { - "$id": "3964", + "$id": "3966", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "Metadata filters for the stored completions data source.", "type": { - "$ref": "3877" + "$ref": "3879" }, "optional": true, "readOnly": false, @@ -47342,17 +47368,17 @@ "isHttpMetadata": false }, { - "$id": "3965", + "$id": "3967", "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": "3966", + "$id": "3968", "kind": "array", "name": "ArrayEvalGraderParams", "valueType": { - "$id": "3967", + "$id": "3969", "kind": "model", "name": "EvalGraderParams", "namespace": "OpenAI", @@ -47360,7 +47386,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "3968", + "$id": "3970", "kind": "property", "name": "type", "serializedName": "type", @@ -47382,12 +47408,12 @@ }, "properties": [ { - "$ref": "3968" + "$ref": "3970" } ], "discriminatedSubtypes": { "label_model": { - "$id": "3969", + "$id": "3971", "kind": "model", "name": "EvalGraderLabelModelParams", "namespace": "OpenAI", @@ -47397,17 +47423,17 @@ "discriminatorValue": "label_model", "decorators": [], "baseModel": { - "$ref": "3967" + "$ref": "3969" }, "properties": [ { - "$id": "3970", + "$id": "3972", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `label_model`.", "type": { - "$ref": "3596" + "$ref": "3598" }, "optional": false, "readOnly": false, @@ -47423,13 +47449,13 @@ "isHttpMetadata": false }, { - "$id": "3971", + "$id": "3973", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3972", + "$id": "3974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47449,13 +47475,13 @@ "isHttpMetadata": false }, { - "$id": "3973", + "$id": "3975", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation. Must support structured outputs.", "type": { - "$id": "3974", + "$id": "3976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47475,22 +47501,22 @@ "isHttpMetadata": false }, { - "$id": "3975", + "$id": "3977", "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": "3976", + "$id": "3978", "kind": "array", "name": "ArrayCreateEvalItem", "valueType": { - "$id": "3977", + "$id": "3979", "kind": "union", "name": "CreateEvalItem", "variantTypes": [ { - "$id": "3978", + "$id": "3980", "kind": "model", "name": "EvalGraderLabelModelParamsInput", "namespace": "OpenAI", @@ -47499,13 +47525,13 @@ "decorators": [], "properties": [ { - "$id": "3979", + "$id": "3981", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "3980", + "$id": "3982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47525,13 +47551,13 @@ "isHttpMetadata": false }, { - "$id": "3981", + "$id": "3983", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "3982", + "$id": "3984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47553,7 +47579,7 @@ ] }, { - "$ref": "3564" + "$ref": "3566" } ], "namespace": "OpenAI", @@ -47576,7 +47602,7 @@ "isHttpMetadata": false }, { - "$id": "3983", + "$id": "3985", "kind": "property", "name": "labels", "serializedName": "labels", @@ -47598,7 +47624,7 @@ "isHttpMetadata": false }, { - "$id": "3984", + "$id": "3986", "kind": "property", "name": "passing_labels", "serializedName": "passing_labels", @@ -47622,7 +47648,7 @@ ] }, "string_check": { - "$id": "3985", + "$id": "3987", "kind": "model", "name": "EvalGraderStringCheckParams", "namespace": "OpenAI", @@ -47631,17 +47657,17 @@ "discriminatorValue": "string_check", "decorators": [], "baseModel": { - "$ref": "3967" + "$ref": "3969" }, "properties": [ { - "$id": "3986", + "$id": "3988", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `string_check`.", "type": { - "$ref": "3607" + "$ref": "3609" }, "optional": false, "readOnly": false, @@ -47657,13 +47683,13 @@ "isHttpMetadata": false }, { - "$id": "3987", + "$id": "3989", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3988", + "$id": "3990", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47683,13 +47709,13 @@ "isHttpMetadata": false }, { - "$id": "3989", + "$id": "3991", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$id": "3990", + "$id": "3992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47709,13 +47735,13 @@ "isHttpMetadata": false }, { - "$id": "3991", + "$id": "3993", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The reference text. This may include template strings.", "type": { - "$id": "3992", + "$id": "3994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47735,7 +47761,7 @@ "isHttpMetadata": false }, { - "$id": "3993", + "$id": "3995", "kind": "property", "name": "operation", "serializedName": "operation", @@ -47759,7 +47785,7 @@ ] }, "text_similarity": { - "$id": "3994", + "$id": "3996", "kind": "model", "name": "EvalGraderTextSimilarityParams", "namespace": "OpenAI", @@ -47768,17 +47794,17 @@ "discriminatorValue": "text_similarity", "decorators": [], "baseModel": { - "$ref": "3967" + "$ref": "3969" }, "properties": [ { - "$id": "3995", + "$id": "3997", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of grader.", "type": { - "$ref": "3528" + "$ref": "3530" }, "optional": false, "readOnly": false, @@ -47794,13 +47820,13 @@ "isHttpMetadata": false }, { - "$id": "3996", + "$id": "3998", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "3997", + "$id": "3999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47820,13 +47846,13 @@ "isHttpMetadata": false }, { - "$id": "3998", + "$id": "4000", "kind": "property", "name": "input", "serializedName": "input", "doc": "The text being graded.", "type": { - "$id": "3999", + "$id": "4001", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47846,13 +47872,13 @@ "isHttpMetadata": false }, { - "$id": "4000", + "$id": "4002", "kind": "property", "name": "reference", "serializedName": "reference", "doc": "The text being graded against.", "type": { - "$id": "4001", + "$id": "4003", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47872,7 +47898,7 @@ "isHttpMetadata": false }, { - "$id": "4002", + "$id": "4004", "kind": "property", "name": "evaluation_metric", "serializedName": "evaluation_metric", @@ -47894,13 +47920,13 @@ "isHttpMetadata": false }, { - "$id": "4003", + "$id": "4005", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4004", + "$id": "4006", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -47922,7 +47948,7 @@ ] }, "python": { - "$id": "4005", + "$id": "4007", "kind": "model", "name": "EvalGraderPythonParams", "namespace": "OpenAI", @@ -47931,17 +47957,17 @@ "discriminatorValue": "python", "decorators": [], "baseModel": { - "$ref": "3967" + "$ref": "3969" }, "properties": [ { - "$id": "4006", + "$id": "4008", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `python`.", "type": { - "$ref": "3546" + "$ref": "3548" }, "optional": false, "readOnly": false, @@ -47957,13 +47983,13 @@ "isHttpMetadata": false }, { - "$id": "4007", + "$id": "4009", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4008", + "$id": "4010", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -47983,13 +48009,13 @@ "isHttpMetadata": false }, { - "$id": "4009", + "$id": "4011", "kind": "property", "name": "source", "serializedName": "source", "doc": "The source code of the python script.", "type": { - "$id": "4010", + "$id": "4012", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48009,13 +48035,13 @@ "isHttpMetadata": false }, { - "$id": "4011", + "$id": "4013", "kind": "property", "name": "image_tag", "serializedName": "image_tag", "doc": "The image tag to use for the python script.", "type": { - "$id": "4012", + "$id": "4014", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48035,13 +48061,13 @@ "isHttpMetadata": false }, { - "$id": "4013", + "$id": "4015", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4014", + "$id": "4016", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48063,7 +48089,7 @@ ] }, "score_model": { - "$id": "4015", + "$id": "4017", "kind": "model", "name": "EvalGraderScoreModelParams", "namespace": "OpenAI", @@ -48072,17 +48098,17 @@ "discriminatorValue": "score_model", "decorators": [], "baseModel": { - "$ref": "3967" + "$ref": "3969" }, "properties": [ { - "$id": "4016", + "$id": "4018", "kind": "property", "name": "type", "serializedName": "type", "doc": "The object type, which is always `score_model`.", "type": { - "$ref": "3555" + "$ref": "3557" }, "optional": false, "readOnly": false, @@ -48098,13 +48124,13 @@ "isHttpMetadata": false }, { - "$id": "4017", + "$id": "4019", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the grader.", "type": { - "$id": "4018", + "$id": "4020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48124,13 +48150,13 @@ "isHttpMetadata": false }, { - "$id": "4019", + "$id": "4021", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for the evaluation.", "type": { - "$id": "4020", + "$id": "4022", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48150,13 +48176,13 @@ "isHttpMetadata": false }, { - "$id": "4021", + "$id": "4023", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "doc": "The sampling parameters for the model.", "type": { - "$id": "4022", + "$id": "4024", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -48176,13 +48202,13 @@ "isHttpMetadata": false }, { - "$id": "4023", + "$id": "4025", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input text. This may include template strings.", "type": { - "$ref": "3563" + "$ref": "3565" }, "optional": false, "readOnly": false, @@ -48198,7 +48224,7 @@ "isHttpMetadata": false }, { - "$id": "4024", + "$id": "4026", "kind": "property", "name": "range", "serializedName": "range", @@ -48220,13 +48246,13 @@ "isHttpMetadata": false }, { - "$id": "4025", + "$id": "4027", "kind": "property", "name": "pass_threshold", "serializedName": "pass_threshold", "doc": "The threshold for the score.", "type": { - "$id": "4026", + "$id": "4028", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -48267,41 +48293,41 @@ } ] }, - { - "$ref": "3952" - }, { "$ref": "3954" }, { - "$ref": "3959" + "$ref": "3956" }, { - "$ref": "3962" + "$ref": "3961" }, { - "$ref": "3967" + "$ref": "3964" }, { "$ref": "3969" }, { - "$ref": "3978" + "$ref": "3971" + }, + { + "$ref": "3980" }, { - "$ref": "3985" + "$ref": "3987" }, { - "$ref": "3994" + "$ref": "3996" }, { - "$ref": "4005" + "$ref": "4007" }, { - "$ref": "4015" + "$ref": "4017" }, { - "$id": "4027", + "$id": "4029", "kind": "model", "name": "UpdateEvalRequest", "namespace": "OpenAI", @@ -48310,12 +48336,12 @@ "decorators": [], "properties": [ { - "$id": "4028", + "$id": "4030", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "4029", + "$id": "4031", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48335,12 +48361,12 @@ "isHttpMetadata": false }, { - "$id": "4030", + "$id": "4032", "kind": "property", "name": "metadata", "serializedName": "metadata", "type": { - "$id": "4031", + "$id": "4033", "kind": "model", "name": "MetadataPropertyForRequest", "namespace": "OpenAI", @@ -48350,7 +48376,7 @@ "decorators": [], "properties": [ { - "$id": "4032", + "$id": "4034", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -48389,10 +48415,10 @@ ] }, { - "$ref": "4031" + "$ref": "4033" }, { - "$id": "4033", + "$id": "4035", "kind": "model", "name": "DeleteEvalResponse", "namespace": "OpenAI", @@ -48401,7 +48427,7 @@ "decorators": [], "properties": [ { - "$id": "4034", + "$id": "4036", "kind": "property", "name": "object", "serializedName": "object", @@ -48422,12 +48448,12 @@ "isHttpMetadata": false }, { - "$id": "4035", + "$id": "4037", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "4036", + "$id": "4038", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -48447,12 +48473,12 @@ "isHttpMetadata": false }, { - "$id": "4037", + "$id": "4039", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "4038", + "$id": "4040", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48474,7 +48500,7 @@ ] }, { - "$id": "4039", + "$id": "4041", "kind": "model", "name": "EvalRunList", "namespace": "OpenAI", @@ -48484,7 +48510,7 @@ "decorators": [], "properties": [ { - "$id": "4040", + "$id": "4042", "kind": "property", "name": "object", "serializedName": "object", @@ -48506,17 +48532,17 @@ "isHttpMetadata": false }, { - "$id": "4041", + "$id": "4043", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run objects.", "type": { - "$id": "4042", + "$id": "4044", "kind": "array", "name": "ArrayEvalRun", "valueType": { - "$id": "4043", + "$id": "4045", "kind": "model", "name": "EvalRun", "namespace": "OpenAI", @@ -48526,7 +48552,7 @@ "decorators": [], "properties": [ { - "$id": "4044", + "$id": "4046", "kind": "property", "name": "object", "serializedName": "object", @@ -48548,13 +48574,13 @@ "isHttpMetadata": false }, { - "$id": "4045", + "$id": "4047", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run.", "type": { - "$id": "4046", + "$id": "4048", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48574,13 +48600,13 @@ "isHttpMetadata": false }, { - "$id": "4047", + "$id": "4049", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the associated evaluation.", "type": { - "$id": "4048", + "$id": "4050", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48600,13 +48626,13 @@ "isHttpMetadata": false }, { - "$id": "4049", + "$id": "4051", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "4050", + "$id": "4052", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48626,13 +48652,13 @@ "isHttpMetadata": false }, { - "$id": "4051", + "$id": "4053", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that is evaluated, if applicable.", "type": { - "$id": "4052", + "$id": "4054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48652,13 +48678,13 @@ "isHttpMetadata": false }, { - "$id": "4053", + "$id": "4055", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the evaluation run.", "type": { - "$id": "4054", + "$id": "4056", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48678,18 +48704,18 @@ "isHttpMetadata": false }, { - "$id": "4055", + "$id": "4057", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "4056", + "$id": "4058", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4057", + "$id": "4059", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48712,13 +48738,13 @@ "isHttpMetadata": false }, { - "$id": "4058", + "$id": "4060", "kind": "property", "name": "report_url", "serializedName": "report_url", "doc": "The URL to the rendered evaluation run report on the UI dashboard.", "type": { - "$id": "4059", + "$id": "4061", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48738,13 +48764,13 @@ "isHttpMetadata": false }, { - "$id": "4060", + "$id": "4062", "kind": "property", "name": "result_counts", "serializedName": "result_counts", "doc": "Counters summarizing the outcomes of the evaluation run.", "type": { - "$id": "4061", + "$id": "4063", "kind": "model", "name": "EvalRunResultCounts", "namespace": "OpenAI", @@ -48753,13 +48779,13 @@ "decorators": [], "properties": [ { - "$id": "4062", + "$id": "4064", "kind": "property", "name": "total", "serializedName": "total", "doc": "Total number of executed output items.", "type": { - "$id": "4063", + "$id": "4065", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48779,13 +48805,13 @@ "isHttpMetadata": false }, { - "$id": "4064", + "$id": "4066", "kind": "property", "name": "errored", "serializedName": "errored", "doc": "Number of output items that resulted in an error.", "type": { - "$id": "4065", + "$id": "4067", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48805,13 +48831,13 @@ "isHttpMetadata": false }, { - "$id": "4066", + "$id": "4068", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of output items that failed to pass the evaluation.", "type": { - "$id": "4067", + "$id": "4069", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48831,13 +48857,13 @@ "isHttpMetadata": false }, { - "$id": "4068", + "$id": "4070", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of output items that passed the evaluation.", "type": { - "$id": "4069", + "$id": "4071", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48872,17 +48898,17 @@ "isHttpMetadata": false }, { - "$id": "4070", + "$id": "4072", "kind": "property", "name": "per_model_usage", "serializedName": "per_model_usage", "doc": "Usage statistics for each model during the evaluation run.", "type": { - "$id": "4071", + "$id": "4073", "kind": "array", "name": "Array15", "valueType": { - "$id": "4072", + "$id": "4074", "kind": "model", "name": "EvalRunPerModelUsage", "namespace": "OpenAI", @@ -48891,13 +48917,13 @@ "decorators": [], "properties": [ { - "$id": "4073", + "$id": "4075", "kind": "property", "name": "model_name", "serializedName": "model_name", "doc": "The name of the model.", "type": { - "$id": "4074", + "$id": "4076", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -48917,13 +48943,13 @@ "isHttpMetadata": false }, { - "$id": "4075", + "$id": "4077", "kind": "property", "name": "invocation_count", "serializedName": "invocation_count", "doc": "The number of invocations.", "type": { - "$id": "4076", + "$id": "4078", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48943,13 +48969,13 @@ "isHttpMetadata": false }, { - "$id": "4077", + "$id": "4079", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4078", + "$id": "4080", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48969,13 +48995,13 @@ "isHttpMetadata": false }, { - "$id": "4079", + "$id": "4081", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4080", + "$id": "4082", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -48995,13 +49021,13 @@ "isHttpMetadata": false }, { - "$id": "4081", + "$id": "4083", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4082", + "$id": "4084", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49021,13 +49047,13 @@ "isHttpMetadata": false }, { - "$id": "4083", + "$id": "4085", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4084", + "$id": "4086", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49065,17 +49091,17 @@ "isHttpMetadata": false }, { - "$id": "4085", + "$id": "4087", "kind": "property", "name": "per_testing_criteria_results", "serializedName": "per_testing_criteria_results", "doc": "Results per testing criteria applied during the evaluation run.", "type": { - "$id": "4086", + "$id": "4088", "kind": "array", "name": "Array16", "valueType": { - "$id": "4087", + "$id": "4089", "kind": "model", "name": "EvalRunPerTestingCriteriaResult", "namespace": "OpenAI", @@ -49084,13 +49110,13 @@ "decorators": [], "properties": [ { - "$id": "4088", + "$id": "4090", "kind": "property", "name": "testing_criteria", "serializedName": "testing_criteria", "doc": "A description of the testing criteria.", "type": { - "$id": "4089", + "$id": "4091", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49110,13 +49136,13 @@ "isHttpMetadata": false }, { - "$id": "4090", + "$id": "4092", "kind": "property", "name": "passed", "serializedName": "passed", "doc": "Number of tests passed for this criteria.", "type": { - "$id": "4091", + "$id": "4093", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49136,13 +49162,13 @@ "isHttpMetadata": false }, { - "$id": "4092", + "$id": "4094", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "Number of tests failed for this criteria.", "type": { - "$id": "4093", + "$id": "4095", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49180,13 +49206,13 @@ "isHttpMetadata": false }, { - "$id": "4094", + "$id": "4096", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Information about the run's data source.", "type": { - "$id": "4095", + "$id": "4097", "kind": "model", "name": "EvalRunDataSourceResource", "namespace": "OpenAI", @@ -49195,7 +49221,7 @@ "decorators": [], "properties": [ { - "$id": "4096", + "$id": "4098", "kind": "property", "name": "type", "serializedName": "type", @@ -49231,7 +49257,7 @@ "isHttpMetadata": false }, { - "$id": "4097", + "$id": "4099", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -49253,12 +49279,12 @@ "isHttpMetadata": false }, { - "$id": "4098", + "$id": "4100", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "4099", + "$id": "4101", "kind": "model", "name": "EvalApiError", "namespace": "OpenAI", @@ -49268,13 +49294,13 @@ "decorators": [], "properties": [ { - "$id": "4100", + "$id": "4102", "kind": "property", "name": "code", "serializedName": "code", "doc": "The error code.", "type": { - "$id": "4101", + "$id": "4103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49294,13 +49320,13 @@ "isHttpMetadata": false }, { - "$id": "4102", + "$id": "4104", "kind": "property", "name": "message", "serializedName": "message", "doc": "The error message.", "type": { - "$id": "4103", + "$id": "4105", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49353,13 +49379,13 @@ "isHttpMetadata": false }, { - "$id": "4104", + "$id": "4106", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run in the data array.", "type": { - "$id": "4105", + "$id": "4107", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49379,13 +49405,13 @@ "isHttpMetadata": false }, { - "$id": "4106", + "$id": "4108", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run in the data array.", "type": { - "$id": "4107", + "$id": "4109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49405,13 +49431,13 @@ "isHttpMetadata": false }, { - "$id": "4108", + "$id": "4110", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more evals available.", "type": { - "$id": "4109", + "$id": "4111", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -49433,25 +49459,25 @@ ] }, { - "$ref": "4043" + "$ref": "4045" }, { - "$ref": "4061" + "$ref": "4063" }, { - "$ref": "4072" + "$ref": "4074" }, { - "$ref": "4087" + "$ref": "4089" }, { - "$ref": "4095" + "$ref": "4097" }, { - "$ref": "4099" + "$ref": "4101" }, { - "$id": "4110", + "$id": "4112", "kind": "model", "name": "CreateEvalRunRequest", "namespace": "OpenAI", @@ -49460,13 +49486,13 @@ "decorators": [], "properties": [ { - "$id": "4111", + "$id": "4113", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the run.", "type": { - "$id": "4112", + "$id": "4114", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49486,7 +49512,7 @@ "isHttpMetadata": false }, { - "$id": "4113", + "$id": "4115", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -49508,13 +49534,13 @@ "isHttpMetadata": false }, { - "$id": "4114", + "$id": "4116", "kind": "property", "name": "data_source", "serializedName": "data_source", "doc": "Details about the run's data source.", "type": { - "$id": "4115", + "$id": "4117", "kind": "model", "name": "EvalRunDataSourceParams", "namespace": "OpenAI", @@ -49522,7 +49548,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4116", + "$id": "4118", "kind": "property", "name": "type", "serializedName": "type", @@ -49544,12 +49570,12 @@ }, "properties": [ { - "$ref": "4116" + "$ref": "4118" } ], "discriminatedSubtypes": { "jsonl": { - "$id": "4117", + "$id": "4119", "kind": "model", "name": "EvalJsonlRunDataSourceParams", "namespace": "OpenAI", @@ -49559,17 +49585,17 @@ "discriminatorValue": "jsonl", "decorators": [], "baseModel": { - "$ref": "4115" + "$ref": "4117" }, "properties": [ { - "$id": "4118", + "$id": "4120", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of data source. Always `jsonl`.", "type": { - "$id": "4119", + "$id": "4121", "kind": "enumvalue", "name": "jsonl", "value": "jsonl", @@ -49577,14 +49603,14 @@ "$ref": "393" }, "enumType": { - "$id": "4120", + "$id": "4122", "kind": "enum", "decorators": [], "name": "EvalRunDataSourceType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4121", + "$id": "4123", "kind": "string", "decorators": [], "name": "string", @@ -49593,42 +49619,42 @@ }, "values": [ { - "$id": "4122", + "$id": "4124", "kind": "enumvalue", "decorators": [], "name": "jsonl", "value": "jsonl", "valueType": { - "$ref": "4121" + "$ref": "4123" }, "enumType": { - "$ref": "4120" + "$ref": "4122" } }, { - "$id": "4123", + "$id": "4125", "kind": "enumvalue", "decorators": [], "name": "completions", "value": "completions", "valueType": { - "$ref": "4121" + "$ref": "4123" }, "enumType": { - "$ref": "4120" + "$ref": "4122" } }, { - "$id": "4124", + "$id": "4126", "kind": "enumvalue", "decorators": [], "name": "responses", "value": "responses", "valueType": { - "$ref": "4121" + "$ref": "4123" }, "enumType": { - "$ref": "4120" + "$ref": "4122" } } ], @@ -49657,18 +49683,18 @@ "isHttpMetadata": false }, { - "$id": "4125", + "$id": "4127", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in the data source.", "type": { - "$id": "4126", + "$id": "4128", "kind": "union", "name": "EvalJsonlRunDataSourceParamsSource", "variantTypes": [ { - "$id": "4127", + "$id": "4129", "kind": "model", "name": "EvalRunFileContentDataContentSource", "namespace": "OpenAI", @@ -49677,7 +49703,7 @@ "discriminatorValue": "file_content", "decorators": [], "baseModel": { - "$id": "4128", + "$id": "4130", "kind": "model", "name": "EvalRunDataContentSource", "namespace": "OpenAI", @@ -49685,7 +49711,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "4129", + "$id": "4131", "kind": "property", "name": "type", "serializedName": "type", @@ -49707,15 +49733,15 @@ }, "properties": [ { - "$ref": "4129" + "$ref": "4131" } ], "discriminatedSubtypes": { "file_content": { - "$ref": "4127" + "$ref": "4129" }, "file_id": { - "$id": "4130", + "$id": "4132", "kind": "model", "name": "EvalRunFileIdDataContentSource", "namespace": "OpenAI", @@ -49724,17 +49750,17 @@ "discriminatorValue": "file_id", "decorators": [], "baseModel": { - "$ref": "4128" + "$ref": "4130" }, "properties": [ { - "$id": "4131", + "$id": "4133", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_id`.", "type": { - "$id": "4132", + "$id": "4134", "kind": "enumvalue", "name": "file_id", "value": "file_id", @@ -49742,14 +49768,14 @@ "$ref": "398" }, "enumType": { - "$id": "4133", + "$id": "4135", "kind": "enum", "decorators": [], "name": "EvalRunDataContentSourceType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4134", + "$id": "4136", "kind": "string", "decorators": [], "name": "string", @@ -49758,55 +49784,55 @@ }, "values": [ { - "$id": "4135", + "$id": "4137", "kind": "enumvalue", "decorators": [], "name": "file_id", "value": "file_id", "valueType": { - "$ref": "4134" + "$ref": "4136" }, "enumType": { - "$ref": "4133" + "$ref": "4135" } }, { - "$id": "4136", + "$id": "4138", "kind": "enumvalue", "decorators": [], "name": "file_content", "value": "file_content", "valueType": { - "$ref": "4134" + "$ref": "4136" }, "enumType": { - "$ref": "4133" + "$ref": "4135" } }, { - "$id": "4137", + "$id": "4139", "kind": "enumvalue", "decorators": [], "name": "stored_completions", "value": "stored_completions", "valueType": { - "$ref": "4134" + "$ref": "4136" }, "enumType": { - "$ref": "4133" + "$ref": "4135" } }, { - "$id": "4138", + "$id": "4140", "kind": "enumvalue", "decorators": [], "name": "responses", "value": "responses", "valueType": { - "$ref": "4134" + "$ref": "4136" }, "enumType": { - "$ref": "4133" + "$ref": "4135" } } ], @@ -49835,13 +49861,13 @@ "isHttpMetadata": false }, { - "$id": "4139", + "$id": "4141", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the file.", "type": { - "$id": "4140", + "$id": "4142", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49863,7 +49889,7 @@ ] }, "stored_completions": { - "$id": "4141", + "$id": "4143", "kind": "model", "name": "EvalRunStoredCompletionsDataContentSource", "namespace": "OpenAI", @@ -49873,17 +49899,17 @@ "discriminatorValue": "stored_completions", "decorators": [], "baseModel": { - "$ref": "4128" + "$ref": "4130" }, "properties": [ { - "$id": "4142", + "$id": "4144", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of source. Always `stored_completions`.", "type": { - "$id": "4143", + "$id": "4145", "kind": "enumvalue", "name": "stored_completions", "value": "stored_completions", @@ -49891,7 +49917,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4133" + "$ref": "4135" }, "decorators": [] }, @@ -49909,7 +49935,7 @@ "isHttpMetadata": false }, { - "$id": "4144", + "$id": "4146", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -49931,16 +49957,16 @@ "isHttpMetadata": false }, { - "$id": "4145", + "$id": "4147", "kind": "property", "name": "model", "serializedName": "model", "doc": "An optional model to filter by (e.g., 'gpt-4o').", "type": { - "$id": "4146", + "$id": "4148", "kind": "nullable", "type": { - "$id": "4147", + "$id": "4149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -49962,16 +49988,16 @@ "isHttpMetadata": false }, { - "$id": "4148", + "$id": "4150", "kind": "property", "name": "created_after", "serializedName": "created_after", "doc": "An optional Unix timestamp to filter items created after this time.", "type": { - "$id": "4149", + "$id": "4151", "kind": "nullable", "type": { - "$id": "4150", + "$id": "4152", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -49993,16 +50019,16 @@ "isHttpMetadata": false }, { - "$id": "4151", + "$id": "4153", "kind": "property", "name": "created_before", "serializedName": "created_before", "doc": "An optional Unix timestamp to filter items created before this time.", "type": { - "$id": "4152", + "$id": "4154", "kind": "nullable", "type": { - "$id": "4153", + "$id": "4155", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50024,16 +50050,16 @@ "isHttpMetadata": false }, { - "$id": "4154", + "$id": "4156", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "An optional maximum number of items to return.", "type": { - "$id": "4155", + "$id": "4157", "kind": "nullable", "type": { - "$id": "4156", + "$id": "4158", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50057,7 +50083,7 @@ ] }, "responses": { - "$id": "4157", + "$id": "4159", "kind": "model", "name": "EvalRunResponsesDataContentSource", "namespace": "OpenAI", @@ -50067,17 +50093,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "4128" + "$ref": "4130" }, "properties": [ { - "$id": "4158", + "$id": "4160", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$id": "4159", + "$id": "4161", "kind": "enumvalue", "name": "responses", "value": "responses", @@ -50085,7 +50111,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4133" + "$ref": "4135" }, "decorators": [] }, @@ -50103,7 +50129,7 @@ "isHttpMetadata": false }, { - "$id": "4160", + "$id": "4162", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -50125,16 +50151,16 @@ "isHttpMetadata": false }, { - "$id": "4161", + "$id": "4163", "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": "4162", + "$id": "4164", "kind": "nullable", "type": { - "$id": "4163", + "$id": "4165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50156,16 +50182,16 @@ "isHttpMetadata": false }, { - "$id": "4164", + "$id": "4166", "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": "4165", + "$id": "4167", "kind": "nullable", "type": { - "$id": "4166", + "$id": "4168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50187,16 +50213,16 @@ "isHttpMetadata": false }, { - "$id": "4167", + "$id": "4169", "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": "4168", + "$id": "4170", "kind": "nullable", "type": { - "$id": "4169", + "$id": "4171", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50218,16 +50244,16 @@ "isHttpMetadata": false }, { - "$id": "4170", + "$id": "4172", "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": "4171", + "$id": "4173", "kind": "nullable", "type": { - "$id": "4172", + "$id": "4174", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50249,13 +50275,13 @@ "isHttpMetadata": false }, { - "$id": "4173", + "$id": "4175", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "doc": "Optional reasoning effort parameter. This is a query parameter used to select responses.", "type": { - "$id": "4174", + "$id": "4176", "kind": "nullable", "type": { "$ref": "53" @@ -50276,16 +50302,16 @@ "isHttpMetadata": false }, { - "$id": "4175", + "$id": "4177", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature. This is a query parameter used to select responses.", "type": { - "$id": "4176", + "$id": "4178", "kind": "nullable", "type": { - "$id": "4177", + "$id": "4179", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50307,16 +50333,16 @@ "isHttpMetadata": false }, { - "$id": "4178", + "$id": "4180", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "Nucleus sampling parameter. This is a query parameter used to select responses.", "type": { - "$id": "4179", + "$id": "4181", "kind": "nullable", "type": { - "$id": "4180", + "$id": "4182", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50338,13 +50364,13 @@ "isHttpMetadata": false }, { - "$id": "4181", + "$id": "4183", "kind": "property", "name": "users", "serializedName": "users", "doc": "List of user identifiers. This is a query parameter used to select responses.", "type": { - "$id": "4182", + "$id": "4184", "kind": "nullable", "type": { "$ref": "2371" @@ -50365,13 +50391,13 @@ "isHttpMetadata": false }, { - "$id": "4183", + "$id": "4185", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "List of tool names. This is a query parameter used to select responses.", "type": { - "$id": "4184", + "$id": "4186", "kind": "nullable", "type": { "$ref": "2371" @@ -50397,13 +50423,13 @@ }, "properties": [ { - "$id": "4185", + "$id": "4187", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of jsonl source. Always `file_content`.", "type": { - "$id": "4186", + "$id": "4188", "kind": "enumvalue", "name": "file_content", "value": "file_content", @@ -50411,7 +50437,7 @@ "$ref": "398" }, "enumType": { - "$ref": "4133" + "$ref": "4135" }, "decorators": [] }, @@ -50429,17 +50455,17 @@ "isHttpMetadata": false }, { - "$id": "4187", + "$id": "4189", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the jsonl file.", "type": { - "$id": "4188", + "$id": "4190", "kind": "array", "name": "Array17", "valueType": { - "$id": "4189", + "$id": "4191", "kind": "model", "name": "EvalRunFileContentDataContentSourceContent", "namespace": "OpenAI", @@ -50448,12 +50474,12 @@ "decorators": [], "properties": [ { - "$id": "4190", + "$id": "4192", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "3877" + "$ref": "3879" }, "optional": false, "readOnly": false, @@ -50469,12 +50495,12 @@ "isHttpMetadata": false }, { - "$id": "4191", + "$id": "4193", "kind": "property", "name": "sample", "serializedName": "sample", "type": { - "$ref": "3877" + "$ref": "3879" }, "optional": true, "readOnly": false, @@ -50510,7 +50536,7 @@ ] }, { - "$ref": "4130" + "$ref": "4132" } ], "namespace": "OpenAI", @@ -50532,7 +50558,7 @@ ] }, "completions": { - "$id": "4192", + "$id": "4194", "kind": "model", "name": "EvalCompletionsRunDataSourceParams", "namespace": "OpenAI", @@ -50542,17 +50568,17 @@ "discriminatorValue": "completions", "decorators": [], "baseModel": { - "$ref": "4115" + "$ref": "4117" }, "properties": [ { - "$id": "4193", + "$id": "4195", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `completions`.", "type": { - "$id": "4194", + "$id": "4196", "kind": "enumvalue", "name": "completions", "value": "completions", @@ -50560,7 +50586,7 @@ "$ref": "393" }, "enumType": { - "$ref": "4120" + "$ref": "4122" }, "decorators": [] }, @@ -50578,18 +50604,18 @@ "isHttpMetadata": false }, { - "$id": "4195", + "$id": "4197", "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": "4196", + "$id": "4198", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4197", + "$id": "4199", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -50598,7 +50624,7 @@ "decorators": [], "properties": [ { - "$id": "4198", + "$id": "4200", "kind": "property", "name": "type", "serializedName": "type", @@ -50620,29 +50646,29 @@ "isHttpMetadata": false }, { - "$id": "4199", + "$id": "4201", "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": "4200", + "$id": "4202", "kind": "array", "name": "Array18", "valueType": { - "$id": "4201", + "$id": "4203", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4202", + "$id": "4204", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", "decorators": [] }, { - "$ref": "3564" + "$ref": "3566" } ], "namespace": "OpenAI", @@ -50667,7 +50693,7 @@ ] }, { - "$id": "4203", + "$id": "4205", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -50676,7 +50702,7 @@ "decorators": [], "properties": [ { - "$id": "4204", + "$id": "4206", "kind": "property", "name": "type", "serializedName": "type", @@ -50698,13 +50724,13 @@ "isHttpMetadata": false }, { - "$id": "4205", + "$id": "4207", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.input_trajectory\"", "type": { - "$id": "4206", + "$id": "4208", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -50743,12 +50769,12 @@ "isHttpMetadata": false }, { - "$id": "4207", + "$id": "4209", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4208", + "$id": "4210", "kind": "model", "name": "EvalCompletionsRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -50757,13 +50783,13 @@ "decorators": [], "properties": [ { - "$id": "4209", + "$id": "4211", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4210", + "$id": "4212", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50783,13 +50809,13 @@ "isHttpMetadata": false }, { - "$id": "4211", + "$id": "4213", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4212", + "$id": "4214", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50809,13 +50835,13 @@ "isHttpMetadata": false }, { - "$id": "4213", + "$id": "4215", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4214", + "$id": "4216", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -50835,13 +50861,13 @@ "isHttpMetadata": false }, { - "$id": "4215", + "$id": "4217", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4216", + "$id": "4218", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -50861,13 +50887,13 @@ "isHttpMetadata": false }, { - "$id": "4217", + "$id": "4219", "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": "4218", + "$id": "4220", "kind": "model", "name": "ResponseTextFormatConfiguration", "namespace": "OpenAI", @@ -50880,7 +50906,7 @@ } ], "discriminatorProperty": { - "$id": "4219", + "$id": "4221", "kind": "property", "name": "type", "serializedName": "type", @@ -50902,12 +50928,12 @@ }, "properties": [ { - "$ref": "4219" + "$ref": "4221" } ], "discriminatedSubtypes": { "text": { - "$id": "4220", + "$id": "4222", "kind": "model", "name": "ResponseTextFormatConfigurationText", "namespace": "OpenAI", @@ -50921,16 +50947,16 @@ } ], "baseModel": { - "$ref": "4218" + "$ref": "4220" }, "properties": [ { - "$id": "4221", + "$id": "4223", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4222", + "$id": "4224", "kind": "enumvalue", "name": "text", "value": "text", @@ -50938,7 +50964,7 @@ "$ref": "404" }, "enumType": { - "$id": "4223", + "$id": "4225", "kind": "enum", "decorators": [], "name": "ResponseTextFormatConfigurationType", @@ -50946,7 +50972,7 @@ "namespace": "OpenAI", "doc": "An object specifying the format that the model must output.\n\nConfiguring `{ \"type\": \"json_schema\" }` enables Structured Outputs,\nwhich ensures the model will match your supplied JSON schema. Learn more in the\n[Structured Outputs guide](/docs/guides/structured-outputs).\n\nThe default format is `{ \"type\": \"text\" }` with no additional options.\n\n**Not recommended for gpt-4o and newer models:**\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.", "valueType": { - "$id": "4224", + "$id": "4226", "kind": "string", "decorators": [], "name": "string", @@ -50955,42 +50981,42 @@ }, "values": [ { - "$id": "4225", + "$id": "4227", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "4224" + "$ref": "4226" }, "enumType": { - "$ref": "4223" + "$ref": "4225" } }, { - "$id": "4226", + "$id": "4228", "kind": "enumvalue", "decorators": [], "name": "json_schema", "value": "json_schema", "valueType": { - "$ref": "4224" + "$ref": "4226" }, "enumType": { - "$ref": "4223" + "$ref": "4225" } }, { - "$id": "4227", + "$id": "4229", "kind": "enumvalue", "decorators": [], "name": "json_object", "value": "json_object", "valueType": { - "$ref": "4224" + "$ref": "4226" }, "enumType": { - "$ref": "4223" + "$ref": "4225" } } ], @@ -51021,7 +51047,7 @@ ] }, "json_object": { - "$id": "4228", + "$id": "4230", "kind": "model", "name": "ResponseTextFormatConfigurationJsonObject", "namespace": "OpenAI", @@ -51035,16 +51061,16 @@ } ], "baseModel": { - "$ref": "4218" + "$ref": "4220" }, "properties": [ { - "$id": "4229", + "$id": "4231", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4230", + "$id": "4232", "kind": "enumvalue", "name": "json_object", "value": "json_object", @@ -51052,7 +51078,7 @@ "$ref": "404" }, "enumType": { - "$ref": "4223" + "$ref": "4225" }, "decorators": [] }, @@ -51072,7 +51098,7 @@ ] }, "json_schema": { - "$id": "4231", + "$id": "4233", "kind": "model", "name": "ResponseTextFormatConfigurationJsonSchema", "namespace": "OpenAI", @@ -51087,17 +51113,17 @@ } ], "baseModel": { - "$ref": "4218" + "$ref": "4220" }, "properties": [ { - "$id": "4232", + "$id": "4234", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of response format being defined. Always `json_schema`.", "type": { - "$id": "4233", + "$id": "4235", "kind": "enumvalue", "name": "json_schema", "value": "json_schema", @@ -51105,7 +51131,7 @@ "$ref": "404" }, "enumType": { - "$ref": "4223" + "$ref": "4225" }, "decorators": [] }, @@ -51123,13 +51149,13 @@ "isHttpMetadata": false }, { - "$id": "4234", + "$id": "4236", "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": "4235", + "$id": "4237", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51149,13 +51175,13 @@ "isHttpMetadata": false }, { - "$id": "4236", + "$id": "4238", "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": "4237", + "$id": "4239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51175,7 +51201,7 @@ "isHttpMetadata": false }, { - "$id": "4238", + "$id": "4240", "kind": "property", "name": "schema", "serializedName": "schema", @@ -51196,16 +51222,16 @@ "isHttpMetadata": false }, { - "$id": "4239", + "$id": "4241", "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": "4240", + "$id": "4242", "kind": "nullable", "type": { - "$id": "4241", + "$id": "4243", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -51244,7 +51270,7 @@ "isHttpMetadata": false }, { - "$id": "4242", + "$id": "4244", "kind": "property", "name": "tools", "serializedName": "tools", @@ -51281,13 +51307,13 @@ "isHttpMetadata": false }, { - "$id": "4243", + "$id": "4245", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4244", + "$id": "4246", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51307,24 +51333,24 @@ "isHttpMetadata": false }, { - "$id": "4245", + "$id": "4247", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4246", + "$id": "4248", "kind": "union", "name": "EvalCompletionsRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4127" + "$ref": "4129" }, { - "$ref": "4130" + "$ref": "4132" }, { - "$ref": "4141" + "$ref": "4143" } ], "namespace": "OpenAI", @@ -51346,7 +51372,7 @@ ] }, "responses": { - "$id": "4247", + "$id": "4249", "kind": "model", "name": "EvalResponsesRunDataSourceParams", "namespace": "OpenAI", @@ -51356,17 +51382,17 @@ "discriminatorValue": "responses", "decorators": [], "baseModel": { - "$ref": "4115" + "$ref": "4117" }, "properties": [ { - "$id": "4248", + "$id": "4250", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of run data source. Always `responses`.", "type": { - "$id": "4249", + "$id": "4251", "kind": "enumvalue", "name": "responses", "value": "responses", @@ -51374,7 +51400,7 @@ "$ref": "393" }, "enumType": { - "$ref": "4120" + "$ref": "4122" }, "decorators": [] }, @@ -51392,18 +51418,18 @@ "isHttpMetadata": false }, { - "$id": "4250", + "$id": "4252", "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": "4251", + "$id": "4253", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessages", "variantTypes": [ { - "$id": "4252", + "$id": "4254", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages1", "namespace": "OpenAI", @@ -51412,7 +51438,7 @@ "decorators": [], "properties": [ { - "$id": "4253", + "$id": "4255", "kind": "property", "name": "type", "serializedName": "type", @@ -51434,22 +51460,22 @@ "isHttpMetadata": false }, { - "$id": "4254", + "$id": "4256", "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": "4255", + "$id": "4257", "kind": "array", "name": "Array19", "valueType": { - "$id": "4256", + "$id": "4258", "kind": "union", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate", "variantTypes": [ { - "$id": "4257", + "$id": "4259", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessagesTemplate1", "namespace": "OpenAI", @@ -51458,13 +51484,13 @@ "decorators": [], "properties": [ { - "$id": "4258", + "$id": "4260", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4259", + "$id": "4261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51484,13 +51510,13 @@ "isHttpMetadata": false }, { - "$id": "4260", + "$id": "4262", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4261", + "$id": "4263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51512,7 +51538,7 @@ ] }, { - "$ref": "3564" + "$ref": "3566" } ], "namespace": "OpenAI", @@ -51537,7 +51563,7 @@ ] }, { - "$id": "4262", + "$id": "4264", "kind": "model", "name": "EvalResponsesRunDataSourceParamsInputMessages2", "namespace": "OpenAI", @@ -51546,7 +51572,7 @@ "decorators": [], "properties": [ { - "$id": "4263", + "$id": "4265", "kind": "property", "name": "type", "serializedName": "type", @@ -51568,13 +51594,13 @@ "isHttpMetadata": false }, { - "$id": "4264", + "$id": "4266", "kind": "property", "name": "item_reference", "serializedName": "item_reference", "doc": "A reference to a variable in the `item` namespace. Ie, \"item.name\"", "type": { - "$id": "4265", + "$id": "4267", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51613,12 +51639,12 @@ "isHttpMetadata": false }, { - "$id": "4266", + "$id": "4268", "kind": "property", "name": "sampling_params", "serializedName": "sampling_params", "type": { - "$id": "4267", + "$id": "4269", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParams", "namespace": "OpenAI", @@ -51627,13 +51653,13 @@ "decorators": [], "properties": [ { - "$id": "4268", + "$id": "4270", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "A higher temperature increases randomness in the outputs.", "type": { - "$id": "4269", + "$id": "4271", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -51653,13 +51679,13 @@ "isHttpMetadata": false }, { - "$id": "4270", + "$id": "4272", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens in the generated output.", "type": { - "$id": "4271", + "$id": "4273", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51679,13 +51705,13 @@ "isHttpMetadata": false }, { - "$id": "4272", + "$id": "4274", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "An alternative to temperature for nucleus sampling; 1.0 includes all tokens.", "type": { - "$id": "4273", + "$id": "4275", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -51705,13 +51731,13 @@ "isHttpMetadata": false }, { - "$id": "4274", + "$id": "4276", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "A seed value to initialize the randomness, during sampling.", "type": { - "$id": "4275", + "$id": "4277", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -51731,17 +51757,17 @@ "isHttpMetadata": false }, { - "$id": "4276", + "$id": "4278", "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": "4277", + "$id": "4279", "kind": "array", "name": "ArrayTool", "valueType": { - "$id": "4278", + "$id": "4280", "kind": "model", "name": "Tool", "namespace": "OpenAI", @@ -51754,7 +51780,7 @@ } ], "discriminatorProperty": { - "$id": "4279", + "$id": "4281", "kind": "property", "name": "type", "serializedName": "type", @@ -51776,12 +51802,12 @@ }, "properties": [ { - "$ref": "4279" + "$ref": "4281" } ], "discriminatedSubtypes": { "function": { - "$id": "4280", + "$id": "4282", "kind": "model", "name": "FunctionTool", "namespace": "OpenAI", @@ -51796,17 +51822,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4281", + "$id": "4283", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the function tool. Always `function`.", "type": { - "$id": "4282", + "$id": "4284", "kind": "enumvalue", "name": "function", "value": "function", @@ -51814,7 +51840,7 @@ "$ref": "409" }, "enumType": { - "$id": "4283", + "$id": "4285", "kind": "enum", "decorators": [], "name": "ToolType", @@ -51822,7 +51848,7 @@ "namespace": "OpenAI", "doc": "A tool that can be used to generate a response.", "valueType": { - "$id": "4284", + "$id": "4286", "kind": "string", "decorators": [], "name": "string", @@ -51831,107 +51857,107 @@ }, "values": [ { - "$id": "4285", + "$id": "4287", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } }, { - "$id": "4286", + "$id": "4288", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } }, { - "$id": "4287", + "$id": "4289", "kind": "enumvalue", "decorators": [], "name": "computer_use_preview", "value": "computer_use_preview", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } }, { - "$id": "4288", + "$id": "4290", "kind": "enumvalue", "decorators": [], "name": "web_search_preview", "value": "web_search_preview", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } }, { - "$id": "4289", + "$id": "4291", "kind": "enumvalue", "decorators": [], "name": "mcp", "value": "mcp", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } }, { - "$id": "4290", + "$id": "4292", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } }, { - "$id": "4291", + "$id": "4293", "kind": "enumvalue", "decorators": [], "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } }, { - "$id": "4292", + "$id": "4294", "kind": "enumvalue", "decorators": [], "name": "local_shell", "value": "local_shell", "valueType": { - "$ref": "4284" + "$ref": "4286" }, "enumType": { - "$ref": "4283" + "$ref": "4285" } } ], @@ -51960,13 +51986,13 @@ "isHttpMetadata": false }, { - "$id": "4293", + "$id": "4295", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4294", + "$id": "4296", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -51986,16 +52012,16 @@ "isHttpMetadata": false }, { - "$id": "4295", + "$id": "4297", "kind": "property", "name": "FunctionDescription", "serializedName": "description", "doc": "A description of the function. Used by the model to determine whether or not to call the function.", "type": { - "$id": "4296", + "$id": "4298", "kind": "nullable", "type": { - "$id": "4297", + "$id": "4299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52017,16 +52043,16 @@ "isHttpMetadata": false }, { - "$id": "4298", + "$id": "4300", "kind": "property", "name": "FunctionParameters", "serializedName": "parameters", "doc": "A JSON schema object describing the parameters of the function.", "type": { - "$id": "4299", + "$id": "4301", "kind": "nullable", "type": { - "$id": "4300", + "$id": "4302", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -52048,16 +52074,16 @@ "isHttpMetadata": false }, { - "$id": "4301", + "$id": "4303", "kind": "property", "name": "StrictModeEnabled", "serializedName": "strict", "doc": "Whether to enforce strict parameter validation. Default `true`.", "type": { - "$id": "4302", + "$id": "4304", "kind": "nullable", "type": { - "$id": "4303", + "$id": "4305", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -52081,7 +52107,7 @@ ] }, "file_search": { - "$id": "4304", + "$id": "4306", "kind": "model", "name": "FileSearchTool", "namespace": "OpenAI", @@ -52096,17 +52122,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4305", + "$id": "4307", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file search tool. Always `file_search`.", "type": { - "$id": "4306", + "$id": "4308", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -52114,7 +52140,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4283" + "$ref": "4285" }, "decorators": [] }, @@ -52132,7 +52158,7 @@ "isHttpMetadata": false }, { - "$id": "4307", + "$id": "4309", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", @@ -52154,13 +52180,13 @@ "isHttpMetadata": false }, { - "$id": "4308", + "$id": "4310", "kind": "property", "name": "MaxResultCount", "serializedName": "max_num_results", "doc": "The maximum number of results to return. This number should be between 1 and 50 inclusive.", "type": { - "$id": "4309", + "$id": "4311", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -52180,13 +52206,13 @@ "isHttpMetadata": false }, { - "$id": "4310", + "$id": "4312", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$id": "4311", + "$id": "4313", "kind": "model", "name": "RankingOptions", "namespace": "OpenAI", @@ -52200,7 +52226,7 @@ ], "properties": [ { - "$id": "4312", + "$id": "4314", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -52222,13 +52248,13 @@ "isHttpMetadata": false }, { - "$id": "4313", + "$id": "4315", "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": "4314", + "$id": "4316", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -52263,21 +52289,21 @@ "isHttpMetadata": false }, { - "$id": "4315", + "$id": "4317", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply.", "type": { - "$id": "4316", + "$id": "4318", "kind": "nullable", "type": { - "$id": "4317", + "$id": "4319", "kind": "union", "name": "Filters", "variantTypes": [ { - "$id": "4318", + "$id": "4320", "kind": "model", "name": "ComparisonFilter", "namespace": "OpenAI", @@ -52290,7 +52316,7 @@ } ], "discriminatorProperty": { - "$id": "4319", + "$id": "4321", "kind": "property", "name": "type", "serializedName": "type", @@ -52312,15 +52338,15 @@ }, "properties": [ { - "$ref": "4319" + "$ref": "4321" }, { - "$id": "4320", + "$id": "4322", "kind": "property", "name": "key", "serializedName": "key", "type": { - "$id": "4321", + "$id": "4323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -52340,31 +52366,31 @@ "isHttpMetadata": false }, { - "$id": "4322", + "$id": "4324", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "4323", + "$id": "4325", "kind": "union", "name": "ComparisonFilterValue", "variantTypes": [ { - "$id": "4324", + "$id": "4326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4325", + "$id": "4327", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", "decorators": [] }, { - "$id": "4326", + "$id": "4328", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -52390,7 +52416,7 @@ ], "discriminatedSubtypes": { "eq": { - "$id": "4327", + "$id": "4329", "kind": "model", "name": "ComparisonFilterEquals", "namespace": "OpenAI", @@ -52404,16 +52430,16 @@ } ], "baseModel": { - "$ref": "4318" + "$ref": "4320" }, "properties": [ { - "$id": "4328", + "$id": "4330", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4329", + "$id": "4331", "kind": "enumvalue", "name": "eq", "value": "eq", @@ -52421,14 +52447,14 @@ "$ref": "423" }, "enumType": { - "$id": "4330", + "$id": "4332", "kind": "enum", "decorators": [], "name": "ComparisonFilterType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "4331", + "$id": "4333", "kind": "string", "decorators": [], "name": "string", @@ -52437,81 +52463,81 @@ }, "values": [ { - "$id": "4332", + "$id": "4334", "kind": "enumvalue", "decorators": [], "name": "eq", "value": "eq", "valueType": { - "$ref": "4331" + "$ref": "4333" }, "enumType": { - "$ref": "4330" + "$ref": "4332" } }, { - "$id": "4333", + "$id": "4335", "kind": "enumvalue", "decorators": [], "name": "ne", "value": "ne", "valueType": { - "$ref": "4331" + "$ref": "4333" }, "enumType": { - "$ref": "4330" + "$ref": "4332" } }, { - "$id": "4334", + "$id": "4336", "kind": "enumvalue", "decorators": [], "name": "gt", "value": "gt", "valueType": { - "$ref": "4331" + "$ref": "4333" }, "enumType": { - "$ref": "4330" + "$ref": "4332" } }, { - "$id": "4335", + "$id": "4337", "kind": "enumvalue", "decorators": [], "name": "gte", "value": "gte", "valueType": { - "$ref": "4331" + "$ref": "4333" }, "enumType": { - "$ref": "4330" + "$ref": "4332" } }, { - "$id": "4336", + "$id": "4338", "kind": "enumvalue", "decorators": [], "name": "lt", "value": "lt", "valueType": { - "$ref": "4331" + "$ref": "4333" }, "enumType": { - "$ref": "4330" + "$ref": "4332" } }, { - "$id": "4337", + "$id": "4339", "kind": "enumvalue", "decorators": [], "name": "lte", "value": "lte", "valueType": { - "$ref": "4331" + "$ref": "4333" }, "enumType": { - "$ref": "4330" + "$ref": "4332" } } ], @@ -52542,7 +52568,7 @@ ] }, "ne": { - "$id": "4338", + "$id": "4340", "kind": "model", "name": "ComparisonFilterNotEquals", "namespace": "OpenAI", @@ -52556,16 +52582,16 @@ } ], "baseModel": { - "$ref": "4318" + "$ref": "4320" }, "properties": [ { - "$id": "4339", + "$id": "4341", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4340", + "$id": "4342", "kind": "enumvalue", "name": "ne", "value": "ne", @@ -52573,7 +52599,7 @@ "$ref": "423" }, "enumType": { - "$ref": "4330" + "$ref": "4332" }, "decorators": [] }, @@ -52593,7 +52619,7 @@ ] }, "gt": { - "$id": "4341", + "$id": "4343", "kind": "model", "name": "ComparisonFilterGreaterThan", "namespace": "OpenAI", @@ -52607,16 +52633,16 @@ } ], "baseModel": { - "$ref": "4318" + "$ref": "4320" }, "properties": [ { - "$id": "4342", + "$id": "4344", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4343", + "$id": "4345", "kind": "enumvalue", "name": "gt", "value": "gt", @@ -52624,7 +52650,7 @@ "$ref": "423" }, "enumType": { - "$ref": "4330" + "$ref": "4332" }, "decorators": [] }, @@ -52644,7 +52670,7 @@ ] }, "gte": { - "$id": "4344", + "$id": "4346", "kind": "model", "name": "ComparisonFilterGreaterThanOrEquals", "namespace": "OpenAI", @@ -52658,16 +52684,16 @@ } ], "baseModel": { - "$ref": "4318" + "$ref": "4320" }, "properties": [ { - "$id": "4345", + "$id": "4347", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4346", + "$id": "4348", "kind": "enumvalue", "name": "gte", "value": "gte", @@ -52675,7 +52701,7 @@ "$ref": "423" }, "enumType": { - "$ref": "4330" + "$ref": "4332" }, "decorators": [] }, @@ -52695,7 +52721,7 @@ ] }, "lt": { - "$id": "4347", + "$id": "4349", "kind": "model", "name": "ComparisonFilterLessThan", "namespace": "OpenAI", @@ -52709,16 +52735,16 @@ } ], "baseModel": { - "$ref": "4318" + "$ref": "4320" }, "properties": [ { - "$id": "4348", + "$id": "4350", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4349", + "$id": "4351", "kind": "enumvalue", "name": "lt", "value": "lt", @@ -52726,7 +52752,7 @@ "$ref": "423" }, "enumType": { - "$ref": "4330" + "$ref": "4332" }, "decorators": [] }, @@ -52746,7 +52772,7 @@ ] }, "lte": { - "$id": "4350", + "$id": "4352", "kind": "model", "name": "ComparisonFilterLessThanOrEquals", "namespace": "OpenAI", @@ -52760,16 +52786,16 @@ } ], "baseModel": { - "$ref": "4318" + "$ref": "4320" }, "properties": [ { - "$id": "4351", + "$id": "4353", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4352", + "$id": "4354", "kind": "enumvalue", "name": "lte", "value": "lte", @@ -52777,7 +52803,7 @@ "$ref": "423" }, "enumType": { - "$ref": "4330" + "$ref": "4332" }, "decorators": [] }, @@ -52799,7 +52825,7 @@ } }, { - "$id": "4353", + "$id": "4355", "kind": "model", "name": "CompoundFilter", "namespace": "OpenAI", @@ -52812,7 +52838,7 @@ } ], "discriminatorProperty": { - "$id": "4354", + "$id": "4356", "kind": "property", "name": "type", "serializedName": "type", @@ -52834,27 +52860,27 @@ }, "properties": [ { - "$ref": "4354" + "$ref": "4356" }, { - "$id": "4355", + "$id": "4357", "kind": "property", "name": "filters", "serializedName": "filters", "type": { - "$id": "4356", + "$id": "4358", "kind": "array", "name": "Array20", "valueType": { - "$id": "4357", + "$id": "4359", "kind": "union", "name": "CompoundFilterFilter", "variantTypes": [ { - "$ref": "4318" + "$ref": "4320" }, { - "$ref": "4353" + "$ref": "4355" } ], "namespace": "OpenAI", @@ -52879,7 +52905,7 @@ ], "discriminatedSubtypes": { "and": { - "$id": "4358", + "$id": "4360", "kind": "model", "name": "CompoundFilterAnd", "namespace": "OpenAI", @@ -52893,16 +52919,16 @@ } ], "baseModel": { - "$ref": "4353" + "$ref": "4355" }, "properties": [ { - "$id": "4359", + "$id": "4361", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4360", + "$id": "4362", "kind": "enumvalue", "name": "and", "value": "and", @@ -52910,14 +52936,14 @@ "$ref": "431" }, "enumType": { - "$id": "4361", + "$id": "4363", "kind": "enum", "decorators": [], "name": "CompoundFilterType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "4362", + "$id": "4364", "kind": "string", "decorators": [], "name": "string", @@ -52926,29 +52952,29 @@ }, "values": [ { - "$id": "4363", + "$id": "4365", "kind": "enumvalue", "decorators": [], "name": "and", "value": "and", "valueType": { - "$ref": "4362" + "$ref": "4364" }, "enumType": { - "$ref": "4361" + "$ref": "4363" } }, { - "$id": "4364", + "$id": "4366", "kind": "enumvalue", "decorators": [], "name": "or", "value": "or", "valueType": { - "$ref": "4362" + "$ref": "4364" }, "enumType": { - "$ref": "4361" + "$ref": "4363" } } ], @@ -52979,7 +53005,7 @@ ] }, "or": { - "$id": "4365", + "$id": "4367", "kind": "model", "name": "CompoundFilterOr", "namespace": "OpenAI", @@ -52993,16 +53019,16 @@ } ], "baseModel": { - "$ref": "4353" + "$ref": "4355" }, "properties": [ { - "$id": "4366", + "$id": "4368", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4367", + "$id": "4369", "kind": "enumvalue", "name": "or", "value": "or", @@ -53010,7 +53036,7 @@ "$ref": "431" }, "enumType": { - "$ref": "4361" + "$ref": "4363" }, "decorators": [] }, @@ -53053,7 +53079,7 @@ ] }, "computer_use_preview": { - "$id": "4368", + "$id": "4370", "kind": "model", "name": "ComputerUsePreviewTool", "namespace": "OpenAI", @@ -53068,17 +53094,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4369", + "$id": "4371", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the computer use tool. Always `computer_use_preview`.", "type": { - "$id": "4370", + "$id": "4372", "kind": "enumvalue", "name": "computer_use_preview", "value": "computer_use_preview", @@ -53086,7 +53112,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4283" + "$ref": "4285" }, "decorators": [] }, @@ -53104,7 +53130,7 @@ "isHttpMetadata": false }, { - "$id": "4371", + "$id": "4373", "kind": "property", "name": "environment", "serializedName": "environment", @@ -53126,13 +53152,13 @@ "isHttpMetadata": false }, { - "$id": "4372", + "$id": "4374", "kind": "property", "name": "display_width", "serializedName": "display_width", "doc": "The width of the computer display.", "type": { - "$id": "4373", + "$id": "4375", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53152,13 +53178,13 @@ "isHttpMetadata": false }, { - "$id": "4374", + "$id": "4376", "kind": "property", "name": "display_height", "serializedName": "display_height", "doc": "The height of the computer display.", "type": { - "$id": "4375", + "$id": "4377", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53180,7 +53206,7 @@ ] }, "web_search_preview": { - "$id": "4376", + "$id": "4378", "kind": "model", "name": "WebSearchPreviewTool", "namespace": "OpenAI", @@ -53195,17 +53221,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4377", + "$id": "4379", "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": { - "$id": "4378", + "$id": "4380", "kind": "enumvalue", "name": "web_search_preview", "value": "web_search_preview", @@ -53213,7 +53239,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4283" + "$ref": "4285" }, "decorators": [] }, @@ -53231,16 +53257,16 @@ "isHttpMetadata": false }, { - "$id": "4379", + "$id": "4381", "kind": "property", "name": "user_location", "serializedName": "user_location", "doc": "The user's location.", "type": { - "$id": "4380", + "$id": "4382", "kind": "nullable", "type": { - "$id": "4381", + "$id": "4383", "kind": "model", "name": "Location", "namespace": "OpenAI", @@ -53253,7 +53279,7 @@ } ], "discriminatorProperty": { - "$id": "4382", + "$id": "4384", "kind": "property", "name": "type", "serializedName": "type", @@ -53275,12 +53301,12 @@ }, "properties": [ { - "$ref": "4382" + "$ref": "4384" } ], "discriminatedSubtypes": { "approximate": { - "$id": "4383", + "$id": "4385", "kind": "model", "name": "ApproximateLocation", "namespace": "OpenAI", @@ -53294,16 +53320,16 @@ } ], "baseModel": { - "$ref": "4381" + "$ref": "4383" }, "properties": [ { - "$id": "4384", + "$id": "4386", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4385", + "$id": "4387", "kind": "enumvalue", "name": "approximate", "value": "approximate", @@ -53311,14 +53337,14 @@ "$ref": "442" }, "enumType": { - "$id": "4386", + "$id": "4388", "kind": "enum", "decorators": [], "name": "LocationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4387", + "$id": "4389", "kind": "string", "decorators": [], "name": "string", @@ -53327,16 +53353,16 @@ }, "values": [ { - "$id": "4388", + "$id": "4390", "kind": "enumvalue", "decorators": [], "name": "approximate", "value": "approximate", "valueType": { - "$ref": "4387" + "$ref": "4389" }, "enumType": { - "$ref": "4386" + "$ref": "4388" } } ], @@ -53365,15 +53391,15 @@ "isHttpMetadata": false }, { - "$id": "4389", + "$id": "4391", "kind": "property", "name": "country", "serializedName": "country", "type": { - "$id": "4390", + "$id": "4392", "kind": "nullable", "type": { - "$id": "4391", + "$id": "4393", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53395,15 +53421,15 @@ "isHttpMetadata": false }, { - "$id": "4392", + "$id": "4394", "kind": "property", "name": "region", "serializedName": "region", "type": { - "$id": "4393", + "$id": "4395", "kind": "nullable", "type": { - "$id": "4394", + "$id": "4396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53425,15 +53451,15 @@ "isHttpMetadata": false }, { - "$id": "4395", + "$id": "4397", "kind": "property", "name": "city", "serializedName": "city", "type": { - "$id": "4396", + "$id": "4398", "kind": "nullable", "type": { - "$id": "4397", + "$id": "4399", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53455,15 +53481,15 @@ "isHttpMetadata": false }, { - "$id": "4398", + "$id": "4400", "kind": "property", "name": "timezone", "serializedName": "timezone", "type": { - "$id": "4399", + "$id": "4401", "kind": "nullable", "type": { - "$id": "4400", + "$id": "4402", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -53504,7 +53530,7 @@ "isHttpMetadata": false }, { - "$id": "4401", + "$id": "4403", "kind": "property", "name": "search_context_size", "serializedName": "search_context_size", @@ -53528,7 +53554,7 @@ ] }, "code_interpreter": { - "$id": "4402", + "$id": "4404", "kind": "model", "name": "CodeInterpreterTool", "namespace": "OpenAI", @@ -53543,17 +53569,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4403", + "$id": "4405", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the code interpreter tool. Always `code_interpreter`.", "type": { - "$id": "4404", + "$id": "4406", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -53561,7 +53587,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4283" + "$ref": "4285" }, "decorators": [] }, @@ -53579,25 +53605,25 @@ "isHttpMetadata": false }, { - "$id": "4405", + "$id": "4407", "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": "4406", + "$id": "4408", "kind": "union", "name": "CodeInterpreterToolContainer", "variantTypes": [ { - "$id": "4407", + "$id": "4409", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4408", + "$id": "4410", "kind": "model", "name": "CodeInterpreterToolAuto", "namespace": "OpenAI", @@ -53612,7 +53638,7 @@ } ], "baseModel": { - "$id": "4409", + "$id": "4411", "kind": "model", "name": "CodeInterpreterContainerConfiguration", "namespace": "OpenAI", @@ -53625,7 +53651,7 @@ } ], "discriminatorProperty": { - "$id": "4410", + "$id": "4412", "kind": "property", "name": "type", "serializedName": "type", @@ -53648,24 +53674,24 @@ }, "properties": [ { - "$ref": "4410" + "$ref": "4412" } ], "discriminatedSubtypes": { "auto": { - "$ref": "4408" + "$ref": "4410" } } }, "properties": [ { - "$id": "4411", + "$id": "4413", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `auto`.", "type": { - "$id": "4412", + "$id": "4414", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -53673,7 +53699,7 @@ "$ref": "450" }, "enumType": { - "$id": "4413", + "$id": "4415", "kind": "enum", "decorators": [ { @@ -53685,7 +53711,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4414", + "$id": "4416", "kind": "string", "decorators": [], "name": "string", @@ -53694,16 +53720,16 @@ }, "values": [ { - "$id": "4415", + "$id": "4417", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "4414" + "$ref": "4416" }, "enumType": { - "$ref": "4413" + "$ref": "4415" } } ], @@ -53732,7 +53758,7 @@ "isHttpMetadata": false }, { - "$id": "4416", + "$id": "4418", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -53775,7 +53801,7 @@ ] }, "image_generation": { - "$id": "4417", + "$id": "4419", "kind": "model", "name": "ImageGenTool", "namespace": "OpenAI", @@ -53790,17 +53816,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4418", + "$id": "4420", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the image generation tool. Always `image_generation`.", "type": { - "$id": "4419", + "$id": "4421", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", @@ -53808,7 +53834,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4283" + "$ref": "4285" }, "decorators": [] }, @@ -53826,7 +53852,7 @@ "isHttpMetadata": false }, { - "$id": "4420", + "$id": "4422", "kind": "property", "name": "model", "serializedName": "model", @@ -53848,7 +53874,7 @@ "isHttpMetadata": false }, { - "$id": "4421", + "$id": "4423", "kind": "property", "name": "quality", "serializedName": "quality", @@ -53870,7 +53896,7 @@ "isHttpMetadata": false }, { - "$id": "4422", + "$id": "4424", "kind": "property", "name": "size", "serializedName": "size", @@ -53892,7 +53918,7 @@ "isHttpMetadata": false }, { - "$id": "4423", + "$id": "4425", "kind": "property", "name": "output_format", "serializedName": "output_format", @@ -53914,13 +53940,13 @@ "isHttpMetadata": false }, { - "$id": "4424", + "$id": "4426", "kind": "property", "name": "output_compression", "serializedName": "output_compression", "doc": "Compression level for the output image. Default: 100.", "type": { - "$id": "4425", + "$id": "4427", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -53940,7 +53966,7 @@ "isHttpMetadata": false }, { - "$id": "4426", + "$id": "4428", "kind": "property", "name": "moderation", "serializedName": "moderation", @@ -53962,7 +53988,7 @@ "isHttpMetadata": false }, { - "$id": "4427", + "$id": "4429", "kind": "property", "name": "background", "serializedName": "background", @@ -53984,7 +54010,7 @@ "isHttpMetadata": false }, { - "$id": "4428", + "$id": "4430", "kind": "property", "name": "input_fidelity", "serializedName": "input_fidelity", @@ -54006,13 +54032,13 @@ "isHttpMetadata": false }, { - "$id": "4429", + "$id": "4431", "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": "4430", + "$id": "4432", "kind": "model", "name": "ImageGenToolInputImageMask", "namespace": "OpenAI", @@ -54021,13 +54047,13 @@ "decorators": [], "properties": [ { - "$id": "4431", + "$id": "4433", "kind": "property", "name": "image_url", "serializedName": "image_url", "doc": "Base64-encoded mask image.", "type": { - "$id": "4432", + "$id": "4434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54047,13 +54073,13 @@ "isHttpMetadata": false }, { - "$id": "4433", + "$id": "4435", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "File ID for the mask image.", "type": { - "$id": "4434", + "$id": "4436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54088,13 +54114,13 @@ "isHttpMetadata": false }, { - "$id": "4435", + "$id": "4437", "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": "4436", + "$id": "4438", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -54116,7 +54142,7 @@ ] }, "local_shell": { - "$id": "4437", + "$id": "4439", "kind": "model", "name": "LocalShellTool", "namespace": "OpenAI", @@ -54131,17 +54157,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4438", + "$id": "4440", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the local shell tool. Always `local_shell`.", "type": { - "$id": "4439", + "$id": "4441", "kind": "enumvalue", "name": "local_shell", "value": "local_shell", @@ -54149,7 +54175,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4283" + "$ref": "4285" }, "decorators": [] }, @@ -54169,7 +54195,7 @@ ] }, "mcp": { - "$id": "4440", + "$id": "4442", "kind": "model", "name": "MCPTool", "namespace": "OpenAI", @@ -54184,17 +54210,17 @@ } ], "baseModel": { - "$ref": "4278" + "$ref": "4280" }, "properties": [ { - "$id": "4441", + "$id": "4443", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the MCP tool. Always `mcp`.", "type": { - "$id": "4442", + "$id": "4444", "kind": "enumvalue", "name": "mcp", "value": "mcp", @@ -54202,7 +54228,7 @@ "$ref": "409" }, "enumType": { - "$ref": "4283" + "$ref": "4285" }, "decorators": [] }, @@ -54220,13 +54246,13 @@ "isHttpMetadata": false }, { - "$id": "4443", + "$id": "4445", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "A label for this MCP server, used to identify it in tool calls.", "type": { - "$id": "4444", + "$id": "4446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54246,13 +54272,13 @@ "isHttpMetadata": false }, { - "$id": "4445", + "$id": "4447", "kind": "property", "name": "ServerUri", "serializedName": "server_url", "doc": "The URL for the MCP server. One of `server_url` or `connector_id` must be\n provided.", "type": { - "$id": "4446", + "$id": "4448", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -54272,7 +54298,7 @@ "isHttpMetadata": false }, { - "$id": "4447", + "$id": "4449", "kind": "property", "name": "connector_id", "serializedName": "connector_id", @@ -54294,13 +54320,13 @@ "isHttpMetadata": false }, { - "$id": "4448", + "$id": "4450", "kind": "property", "name": "AuthorizationToken", "serializedName": "authorization", "doc": "An OAuth access token that can be used with a remote MCP server, either\n with a custom MCP server URL or a service connector. Your application\n must handle the OAuth authorization flow and provide the token here.", "type": { - "$id": "4449", + "$id": "4451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54320,13 +54346,13 @@ "isHttpMetadata": false }, { - "$id": "4450", + "$id": "4452", "kind": "property", "name": "server_description", "serializedName": "server_description", "doc": "Optional description of the MCP server, used to provide more context.", "type": { - "$id": "4451", + "$id": "4453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54346,13 +54372,13 @@ "isHttpMetadata": false }, { - "$id": "4452", + "$id": "4454", "kind": "property", "name": "headers", "serializedName": "headers", "doc": "Optional HTTP headers to send to the MCP server. Use for authentication\n or other purposes.", "type": { - "$id": "4453", + "$id": "4455", "kind": "nullable", "type": { "$ref": "2378" @@ -54373,16 +54399,16 @@ "isHttpMetadata": false }, { - "$id": "4454", + "$id": "4456", "kind": "property", "name": "allowed_tools", "serializedName": "allowed_tools", "doc": "List of allowed tool names or a filter object.", "type": { - "$id": "4455", + "$id": "4457", "kind": "nullable", "type": { - "$id": "4456", + "$id": "4458", "kind": "model", "name": "MCPToolFilter", "namespace": "OpenAI", @@ -54398,7 +54424,7 @@ ], "properties": [ { - "$id": "4457", + "$id": "4459", "kind": "property", "name": "tool_names", "serializedName": "tool_names", @@ -54421,13 +54447,13 @@ "isHttpMetadata": false }, { - "$id": "4458", + "$id": "4460", "kind": "property", "name": "IsReadOnly", "serializedName": "read_only", "doc": "Indicates whether or not a tool modifies data or is read-only. If an\n MCP server is [annotated with `readOnlyHint`](https://modelcontextprotocol.io/specification/2025-06-18/schema#toolannotations-readonlyhint),\n it will match this filter.", "type": { - "$id": "4459", + "$id": "4461", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -54464,21 +54490,21 @@ "isHttpMetadata": false }, { - "$id": "4460", + "$id": "4462", "kind": "property", "name": "require_approval", "serializedName": "require_approval", "doc": "Specify which of the MCP server's tools require approval.", "type": { - "$id": "4461", + "$id": "4463", "kind": "nullable", "type": { - "$id": "4462", + "$id": "4464", "kind": "union", "name": "MCPToolRequireApproval", "variantTypes": [ { - "$id": "4463", + "$id": "4465", "kind": "model", "name": "MCPToolRequireApproval1", "namespace": "OpenAI", @@ -54487,12 +54513,12 @@ "decorators": [], "properties": [ { - "$id": "4464", + "$id": "4466", "kind": "property", "name": "always", "serializedName": "always", "type": { - "$ref": "4456" + "$ref": "4458" }, "optional": true, "readOnly": false, @@ -54508,12 +54534,12 @@ "isHttpMetadata": false }, { - "$id": "4465", + "$id": "4467", "kind": "property", "name": "never", "serializedName": "never", "type": { - "$ref": "4456" + "$ref": "4458" }, "optional": true, "readOnly": false, @@ -54576,13 +54602,13 @@ "isHttpMetadata": false }, { - "$id": "4466", + "$id": "4468", "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": "4467", + "$id": "4469", "kind": "model", "name": "EvalResponsesRunDataSourceParamsSamplingParamsText", "namespace": "OpenAI", @@ -54591,12 +54617,12 @@ "decorators": [], "properties": [ { - "$id": "4468", + "$id": "4470", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4218" + "$ref": "4220" }, "optional": true, "readOnly": false, @@ -54642,13 +54668,13 @@ "isHttpMetadata": false }, { - "$id": "4469", + "$id": "4471", "kind": "property", "name": "model", "serializedName": "model", "doc": "The name of the model to use for generating completions (e.g. \"o3-mini\").", "type": { - "$id": "4470", + "$id": "4472", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54668,24 +54694,24 @@ "isHttpMetadata": false }, { - "$id": "4471", + "$id": "4473", "kind": "property", "name": "source", "serializedName": "source", "doc": "Determines what populates the `item` namespace in this run's data source.", "type": { - "$id": "4472", + "$id": "4474", "kind": "union", "name": "EvalResponsesRunDataSourceParamsSource", "variantTypes": [ { - "$ref": "4127" + "$ref": "4129" }, { - "$ref": "4130" + "$ref": "4132" }, { - "$ref": "4157" + "$ref": "4159" } ], "namespace": "OpenAI", @@ -54723,155 +54749,155 @@ } ] }, - { - "$ref": "4115" - }, { "$ref": "4117" }, { - "$ref": "4127" + "$ref": "4119" }, { - "$ref": "4189" + "$ref": "4129" }, { - "$ref": "4128" + "$ref": "4191" }, { "$ref": "4130" }, { - "$ref": "4141" + "$ref": "4132" }, { - "$ref": "4157" + "$ref": "4143" }, { - "$ref": "4192" + "$ref": "4159" }, { - "$ref": "4197" + "$ref": "4194" }, { - "$ref": "4203" + "$ref": "4199" }, { - "$ref": "4208" + "$ref": "4205" }, { - "$ref": "4218" + "$ref": "4210" }, { "$ref": "4220" }, { - "$ref": "4228" + "$ref": "4222" }, { - "$ref": "4231" + "$ref": "4230" }, { - "$ref": "4247" + "$ref": "4233" }, { - "$ref": "4252" + "$ref": "4249" }, { - "$ref": "4257" + "$ref": "4254" }, { - "$ref": "4262" + "$ref": "4259" }, { - "$ref": "4267" + "$ref": "4264" }, { - "$ref": "4278" + "$ref": "4269" }, { "$ref": "4280" }, { - "$ref": "4304" + "$ref": "4282" }, { - "$ref": "4311" + "$ref": "4306" }, { - "$ref": "4318" + "$ref": "4313" }, { - "$ref": "4327" + "$ref": "4320" }, { - "$ref": "4338" + "$ref": "4329" }, { - "$ref": "4341" + "$ref": "4340" }, { - "$ref": "4344" + "$ref": "4343" }, { - "$ref": "4347" + "$ref": "4346" }, { - "$ref": "4350" + "$ref": "4349" }, { - "$ref": "4353" + "$ref": "4352" }, { - "$ref": "4358" + "$ref": "4355" }, { - "$ref": "4365" + "$ref": "4360" }, { - "$ref": "4368" + "$ref": "4367" }, { - "$ref": "4376" + "$ref": "4370" }, { - "$ref": "4381" + "$ref": "4378" }, { "$ref": "4383" }, { - "$ref": "4402" + "$ref": "4385" }, { - "$ref": "4408" + "$ref": "4404" }, { - "$ref": "4409" + "$ref": "4410" }, { - "$ref": "4417" + "$ref": "4411" }, { - "$ref": "4430" + "$ref": "4419" }, { - "$ref": "4437" + "$ref": "4432" }, { - "$ref": "4440" + "$ref": "4439" }, { - "$ref": "4456" + "$ref": "4442" }, { - "$ref": "4463" + "$ref": "4458" }, { - "$ref": "4467" + "$ref": "4465" }, { - "$id": "4473", + "$ref": "4469" + }, + { + "$id": "4475", "kind": "model", "name": "DeleteEvalRunResponse", "namespace": "OpenAI", @@ -54880,7 +54906,7 @@ "decorators": [], "properties": [ { - "$id": "4474", + "$id": "4476", "kind": "property", "name": "object", "serializedName": "object", @@ -54901,12 +54927,12 @@ "isHttpMetadata": false }, { - "$id": "4475", + "$id": "4477", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "4476", + "$id": "4478", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -54926,12 +54952,12 @@ "isHttpMetadata": false }, { - "$id": "4477", + "$id": "4479", "kind": "property", "name": "eval_run_id", "serializedName": "eval_run_id", "type": { - "$id": "4478", + "$id": "4480", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -54953,7 +54979,7 @@ ] }, { - "$id": "4479", + "$id": "4481", "kind": "model", "name": "EvalRunOutputItemList", "namespace": "OpenAI", @@ -54963,7 +54989,7 @@ "decorators": [], "properties": [ { - "$id": "4480", + "$id": "4482", "kind": "property", "name": "object", "serializedName": "object", @@ -54985,17 +55011,17 @@ "isHttpMetadata": false }, { - "$id": "4481", + "$id": "4483", "kind": "property", "name": "data", "serializedName": "data", "doc": "An array of eval run output item objects.", "type": { - "$id": "4482", + "$id": "4484", "kind": "array", "name": "ArrayEvalRunOutputItem", "valueType": { - "$id": "4483", + "$id": "4485", "kind": "model", "name": "EvalRunOutputItem", "namespace": "OpenAI", @@ -55005,7 +55031,7 @@ "decorators": [], "properties": [ { - "$id": "4484", + "$id": "4486", "kind": "property", "name": "object", "serializedName": "object", @@ -55027,13 +55053,13 @@ "isHttpMetadata": false }, { - "$id": "4485", + "$id": "4487", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for the evaluation run output item.", "type": { - "$id": "4486", + "$id": "4488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55053,13 +55079,13 @@ "isHttpMetadata": false }, { - "$id": "4487", + "$id": "4489", "kind": "property", "name": "run_id", "serializedName": "run_id", "doc": "The identifier of the evaluation run associated with this output item.", "type": { - "$id": "4488", + "$id": "4490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55079,13 +55105,13 @@ "isHttpMetadata": false }, { - "$id": "4489", + "$id": "4491", "kind": "property", "name": "eval_id", "serializedName": "eval_id", "doc": "The identifier of the evaluation group.", "type": { - "$id": "4490", + "$id": "4492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55105,18 +55131,18 @@ "isHttpMetadata": false }, { - "$id": "4491", + "$id": "4493", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) when the evaluation run was created.", "type": { - "$id": "4492", + "$id": "4494", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "4493", + "$id": "4495", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55139,13 +55165,13 @@ "isHttpMetadata": false }, { - "$id": "4494", + "$id": "4496", "kind": "property", "name": "status", "serializedName": "status", "doc": "The status of the evaluation run.", "type": { - "$id": "4495", + "$id": "4497", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55165,13 +55191,13 @@ "isHttpMetadata": false }, { - "$id": "4496", + "$id": "4498", "kind": "property", "name": "datasource_item_id", "serializedName": "datasource_item_id", "doc": "The identifier for the data source item.", "type": { - "$id": "4497", + "$id": "4499", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55191,13 +55217,13 @@ "isHttpMetadata": false }, { - "$id": "4498", + "$id": "4500", "kind": "property", "name": "datasource_item", "serializedName": "datasource_item", "doc": "Details of the input data source item.", "type": { - "$ref": "3877" + "$ref": "3879" }, "optional": false, "readOnly": false, @@ -55213,17 +55239,17 @@ "isHttpMetadata": false }, { - "$id": "4499", + "$id": "4501", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of results from the evaluation run.", "type": { - "$id": "4500", + "$id": "4502", "kind": "array", "name": "ArrayRecord", "valueType": { - "$ref": "3877" + "$ref": "3879" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -55242,13 +55268,13 @@ "isHttpMetadata": false }, { - "$id": "4501", + "$id": "4503", "kind": "property", "name": "sample", "serializedName": "sample", "doc": "A sample containing the input and output of the evaluation run.", "type": { - "$id": "4502", + "$id": "4504", "kind": "model", "name": "EvalRunOutputItemSample", "namespace": "OpenAI", @@ -55257,17 +55283,17 @@ "decorators": [], "properties": [ { - "$id": "4503", + "$id": "4505", "kind": "property", "name": "input", "serializedName": "input", "doc": "An array of input messages.", "type": { - "$id": "4504", + "$id": "4506", "kind": "array", "name": "Array21", "valueType": { - "$id": "4505", + "$id": "4507", "kind": "model", "name": "EvalRunOutputItemSampleInput", "namespace": "OpenAI", @@ -55276,13 +55302,13 @@ "decorators": [], "properties": [ { - "$id": "4506", + "$id": "4508", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message sender (e.g., system, user, developer).", "type": { - "$id": "4507", + "$id": "4509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55302,13 +55328,13 @@ "isHttpMetadata": false }, { - "$id": "4508", + "$id": "4510", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4509", + "$id": "4511", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55346,17 +55372,17 @@ "isHttpMetadata": false }, { - "$id": "4510", + "$id": "4512", "kind": "property", "name": "output", "serializedName": "output", "doc": "An array of output messages.", "type": { - "$id": "4511", + "$id": "4513", "kind": "array", "name": "Array22", "valueType": { - "$id": "4512", + "$id": "4514", "kind": "model", "name": "EvalRunOutputItemSampleOutput", "namespace": "OpenAI", @@ -55365,13 +55391,13 @@ "decorators": [], "properties": [ { - "$id": "4513", + "$id": "4515", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message (e.g. \"system\", \"assistant\", \"user\").", "type": { - "$id": "4514", + "$id": "4516", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55391,13 +55417,13 @@ "isHttpMetadata": false }, { - "$id": "4515", + "$id": "4517", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message.", "type": { - "$id": "4516", + "$id": "4518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55435,13 +55461,13 @@ "isHttpMetadata": false }, { - "$id": "4517", + "$id": "4519", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", "doc": "The reason why the sample generation was finished.", "type": { - "$id": "4518", + "$id": "4520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55461,13 +55487,13 @@ "isHttpMetadata": false }, { - "$id": "4519", + "$id": "4521", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for generating the sample.", "type": { - "$id": "4520", + "$id": "4522", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55487,13 +55513,13 @@ "isHttpMetadata": false }, { - "$id": "4521", + "$id": "4523", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "Token usage details for the sample.", "type": { - "$id": "4522", + "$id": "4524", "kind": "model", "name": "EvalRunOutputItemSampleUsage", "namespace": "OpenAI", @@ -55502,13 +55528,13 @@ "decorators": [], "properties": [ { - "$id": "4523", + "$id": "4525", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "4524", + "$id": "4526", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55528,13 +55554,13 @@ "isHttpMetadata": false }, { - "$id": "4525", + "$id": "4527", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "The number of completion tokens generated.", "type": { - "$id": "4526", + "$id": "4528", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55554,13 +55580,13 @@ "isHttpMetadata": false }, { - "$id": "4527", + "$id": "4529", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "The number of prompt tokens used.", "type": { - "$id": "4528", + "$id": "4530", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55580,13 +55606,13 @@ "isHttpMetadata": false }, { - "$id": "4529", + "$id": "4531", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of tokens retrieved from cache.", "type": { - "$id": "4530", + "$id": "4532", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55621,12 +55647,12 @@ "isHttpMetadata": false }, { - "$id": "4531", + "$id": "4533", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "4099" + "$ref": "4101" }, "optional": false, "readOnly": false, @@ -55642,13 +55668,13 @@ "isHttpMetadata": false }, { - "$id": "4532", + "$id": "4534", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used.", "type": { - "$id": "4533", + "$id": "4535", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -55668,13 +55694,13 @@ "isHttpMetadata": false }, { - "$id": "4534", + "$id": "4536", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of tokens allowed for completion.", "type": { - "$id": "4535", + "$id": "4537", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55694,13 +55720,13 @@ "isHttpMetadata": false }, { - "$id": "4536", + "$id": "4538", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "The top_p value used for sampling.", "type": { - "$id": "4537", + "$id": "4539", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -55720,13 +55746,13 @@ "isHttpMetadata": false }, { - "$id": "4538", + "$id": "4540", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "The seed used for generating the sample.", "type": { - "$id": "4539", + "$id": "4541", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -55779,13 +55805,13 @@ "isHttpMetadata": false }, { - "$id": "4540", + "$id": "4542", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The identifier of the first eval run output item in the data array.", "type": { - "$id": "4541", + "$id": "4543", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55805,13 +55831,13 @@ "isHttpMetadata": false }, { - "$id": "4542", + "$id": "4544", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The identifier of the last eval run output item in the data array.", "type": { - "$id": "4543", + "$id": "4545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55831,13 +55857,13 @@ "isHttpMetadata": false }, { - "$id": "4544", + "$id": "4546", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates whether there are more eval run output items available.", "type": { - "$id": "4545", + "$id": "4547", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -55859,22 +55885,22 @@ ] }, { - "$ref": "4483" + "$ref": "4485" }, { - "$ref": "4502" + "$ref": "4504" }, { - "$ref": "4505" + "$ref": "4507" }, { - "$ref": "4512" + "$ref": "4514" }, { - "$ref": "4522" + "$ref": "4524" }, { - "$id": "4546", + "$id": "4548", "kind": "model", "name": "CreateResponse", "namespace": "OpenAI", @@ -55888,7 +55914,7 @@ ], "properties": [ { - "$id": "4547", + "$id": "4549", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -55910,7 +55936,7 @@ "isHttpMetadata": false }, { - "$id": "4548", + "$id": "4550", "kind": "property", "name": "temperature", "serializedName": "temperature", @@ -55932,7 +55958,7 @@ "isHttpMetadata": false }, { - "$id": "4549", + "$id": "4551", "kind": "property", "name": "top_p", "serializedName": "top_p", @@ -55954,13 +55980,13 @@ "isHttpMetadata": false }, { - "$id": "4550", + "$id": "4552", "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": "4551", + "$id": "4553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -55980,7 +56006,7 @@ "isHttpMetadata": false }, { - "$id": "4552", + "$id": "4554", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -56001,16 +56027,16 @@ "isHttpMetadata": false }, { - "$id": "4553", + "$id": "4555", "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": "4554", + "$id": "4556", "kind": "nullable", "type": { - "$id": "4555", + "$id": "4557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56032,7 +56058,7 @@ "isHttpMetadata": false }, { - "$id": "4556", + "$id": "4558", "kind": "property", "name": "model", "serializedName": "model", @@ -56054,15 +56080,15 @@ "isHttpMetadata": false }, { - "$id": "4557", + "$id": "4559", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$id": "4558", + "$id": "4560", "kind": "nullable", "type": { - "$id": "4559", + "$id": "4561", "kind": "model", "name": "Reasoning", "namespace": "OpenAI", @@ -56077,12 +56103,12 @@ ], "properties": [ { - "$id": "4560", + "$id": "4562", "kind": "property", "name": "effort", "serializedName": "effort", "type": { - "$id": "4561", + "$id": "4563", "kind": "nullable", "type": { "$ref": "53" @@ -56103,13 +56129,13 @@ "isHttpMetadata": false }, { - "$id": "4562", + "$id": "4564", "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": "4563", + "$id": "4565", "kind": "nullable", "type": { "$ref": "565" @@ -56130,13 +56156,13 @@ "isHttpMetadata": false }, { - "$id": "4564", + "$id": "4566", "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": "4565", + "$id": "4567", "kind": "nullable", "type": { "$ref": "570" @@ -56174,16 +56200,16 @@ "isHttpMetadata": false }, { - "$id": "4566", + "$id": "4568", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$id": "4567", + "$id": "4569", "kind": "nullable", "type": { - "$id": "4568", + "$id": "4570", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -56205,16 +56231,16 @@ "isHttpMetadata": false }, { - "$id": "4569", + "$id": "4571", "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": "4570", + "$id": "4572", "kind": "nullable", "type": { - "$id": "4571", + "$id": "4573", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -56236,16 +56262,16 @@ "isHttpMetadata": false }, { - "$id": "4572", + "$id": "4574", "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": "4573", + "$id": "4575", "kind": "nullable", "type": { - "$id": "4574", + "$id": "4576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56267,13 +56293,13 @@ "isHttpMetadata": false }, { - "$id": "4575", + "$id": "4577", "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": "4576", + "$id": "4578", "kind": "model", "name": "CreateResponseText", "namespace": "OpenAI", @@ -56282,12 +56308,12 @@ "decorators": [], "properties": [ { - "$id": "4577", + "$id": "4579", "kind": "property", "name": "format", "serializedName": "format", "type": { - "$ref": "4218" + "$ref": "4220" }, "optional": true, "readOnly": false, @@ -56318,13 +56344,13 @@ "isHttpMetadata": false }, { - "$id": "4578", + "$id": "4580", "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": "4277" + "$ref": "4279" }, "optional": true, "readOnly": false, @@ -56340,13 +56366,13 @@ "isHttpMetadata": false }, { - "$id": "4579", + "$id": "4581", "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": "4580", + "$id": "4582", "kind": "union", "name": "CreateResponseToolChoice", "variantTypes": [ @@ -56354,7 +56380,7 @@ "$ref": "575" }, { - "$id": "4581", + "$id": "4583", "kind": "model", "name": "ToolChoiceObject", "namespace": "OpenAI", @@ -56367,7 +56393,7 @@ } ], "discriminatorProperty": { - "$id": "4582", + "$id": "4584", "kind": "property", "name": "type", "serializedName": "type", @@ -56389,12 +56415,12 @@ }, "properties": [ { - "$ref": "4582" + "$ref": "4584" } ], "discriminatedSubtypes": { "file_search": { - "$id": "4583", + "$id": "4585", "kind": "model", "name": "ToolChoiceObjectFileSearch", "namespace": "OpenAI", @@ -56408,16 +56434,16 @@ } ], "baseModel": { - "$ref": "4581" + "$ref": "4583" }, "properties": [ { - "$id": "4584", + "$id": "4586", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4585", + "$id": "4587", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -56425,7 +56451,7 @@ "$ref": "581" }, "enumType": { - "$id": "4586", + "$id": "4588", "kind": "enum", "decorators": [], "name": "ToolChoiceObjectType", @@ -56433,7 +56459,7 @@ "namespace": "OpenAI", "doc": "Indicates that the model should use a built-in tool to generate a response.\n[Learn more about built-in tools](/docs/guides/tools).", "valueType": { - "$id": "4587", + "$id": "4589", "kind": "string", "decorators": [], "name": "string", @@ -56442,94 +56468,94 @@ }, "values": [ { - "$id": "4588", + "$id": "4590", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "4587" + "$ref": "4589" }, "enumType": { - "$ref": "4586" + "$ref": "4588" } }, { - "$id": "4589", + "$id": "4591", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "4587" + "$ref": "4589" }, "enumType": { - "$ref": "4586" + "$ref": "4588" } }, { - "$id": "4590", + "$id": "4592", "kind": "enumvalue", "decorators": [], "name": "computer", "value": "computer_use_preview", "valueType": { - "$ref": "4587" + "$ref": "4589" }, "enumType": { - "$ref": "4586" + "$ref": "4588" } }, { - "$id": "4591", + "$id": "4593", "kind": "enumvalue", "decorators": [], "name": "web_search", "value": "web_search_preview", "valueType": { - "$ref": "4587" + "$ref": "4589" }, "enumType": { - "$ref": "4586" + "$ref": "4588" } }, { - "$id": "4592", + "$id": "4594", "kind": "enumvalue", "decorators": [], "name": "image_generation", "value": "image_generation", "valueType": { - "$ref": "4587" + "$ref": "4589" }, "enumType": { - "$ref": "4586" + "$ref": "4588" } }, { - "$id": "4593", + "$id": "4595", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "4587" + "$ref": "4589" }, "enumType": { - "$ref": "4586" + "$ref": "4588" } }, { - "$id": "4594", + "$id": "4596", "kind": "enumvalue", "decorators": [], "name": "mcp", "value": "mcp", "valueType": { - "$ref": "4587" + "$ref": "4589" }, "enumType": { - "$ref": "4586" + "$ref": "4588" } } ], @@ -56560,7 +56586,7 @@ ] }, "computer_use_preview": { - "$id": "4595", + "$id": "4597", "kind": "model", "name": "ToolChoiceObjectComputer", "namespace": "OpenAI", @@ -56574,16 +56600,16 @@ } ], "baseModel": { - "$ref": "4581" + "$ref": "4583" }, "properties": [ { - "$id": "4596", + "$id": "4598", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4597", + "$id": "4599", "kind": "enumvalue", "name": "computer", "value": "computer_use_preview", @@ -56591,7 +56617,7 @@ "$ref": "581" }, "enumType": { - "$ref": "4586" + "$ref": "4588" }, "decorators": [] }, @@ -56611,7 +56637,7 @@ ] }, "web_search_preview": { - "$id": "4598", + "$id": "4600", "kind": "model", "name": "ToolChoiceObjectWebSearch", "namespace": "OpenAI", @@ -56625,16 +56651,16 @@ } ], "baseModel": { - "$ref": "4581" + "$ref": "4583" }, "properties": [ { - "$id": "4599", + "$id": "4601", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4600", + "$id": "4602", "kind": "enumvalue", "name": "web_search", "value": "web_search_preview", @@ -56642,7 +56668,7 @@ "$ref": "581" }, "enumType": { - "$ref": "4586" + "$ref": "4588" }, "decorators": [] }, @@ -56662,7 +56688,7 @@ ] }, "image_generation": { - "$id": "4601", + "$id": "4603", "kind": "model", "name": "ToolChoiceObjectImageGen", "namespace": "OpenAI", @@ -56676,16 +56702,16 @@ } ], "baseModel": { - "$ref": "4581" + "$ref": "4583" }, "properties": [ { - "$id": "4602", + "$id": "4604", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4603", + "$id": "4605", "kind": "enumvalue", "name": "image_generation", "value": "image_generation", @@ -56693,7 +56719,7 @@ "$ref": "581" }, "enumType": { - "$ref": "4586" + "$ref": "4588" }, "decorators": [] }, @@ -56713,7 +56739,7 @@ ] }, "code_interpreter": { - "$id": "4604", + "$id": "4606", "kind": "model", "name": "ToolChoiceObjectCodeInterpreter", "namespace": "OpenAI", @@ -56727,16 +56753,16 @@ } ], "baseModel": { - "$ref": "4581" + "$ref": "4583" }, "properties": [ { - "$id": "4605", + "$id": "4607", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4606", + "$id": "4608", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -56744,7 +56770,7 @@ "$ref": "581" }, "enumType": { - "$ref": "4586" + "$ref": "4588" }, "decorators": [] }, @@ -56764,7 +56790,7 @@ ] }, "mcp": { - "$id": "4607", + "$id": "4609", "kind": "model", "name": "ToolChoiceObjectMCP", "namespace": "OpenAI", @@ -56778,16 +56804,16 @@ } ], "baseModel": { - "$ref": "4581" + "$ref": "4583" }, "properties": [ { - "$id": "4608", + "$id": "4610", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4609", + "$id": "4611", "kind": "enumvalue", "name": "mcp", "value": "mcp", @@ -56795,7 +56821,7 @@ "$ref": "581" }, "enumType": { - "$ref": "4586" + "$ref": "4588" }, "decorators": [] }, @@ -56815,7 +56841,7 @@ ] }, "function": { - "$id": "4610", + "$id": "4612", "kind": "model", "name": "ToolChoiceObjectFunction", "namespace": "OpenAI", @@ -56830,17 +56856,17 @@ } ], "baseModel": { - "$ref": "4581" + "$ref": "4583" }, "properties": [ { - "$id": "4611", + "$id": "4613", "kind": "property", "name": "type", "serializedName": "type", "doc": "For function calling, the type is always `function`.", "type": { - "$id": "4612", + "$id": "4614", "kind": "enumvalue", "name": "function", "value": "function", @@ -56848,7 +56874,7 @@ "$ref": "581" }, "enumType": { - "$ref": "4586" + "$ref": "4588" }, "decorators": [] }, @@ -56866,13 +56892,13 @@ "isHttpMetadata": false }, { - "$id": "4613", + "$id": "4615", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "4614", + "$id": "4616", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -56913,13 +56939,13 @@ "isHttpMetadata": false }, { - "$id": "4615", + "$id": "4617", "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": "4616", + "$id": "4618", "kind": "nullable", "type": { "$ref": "589" @@ -56940,34 +56966,34 @@ "isHttpMetadata": false }, { - "$id": "4617", + "$id": "4619", "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": "4618", + "$id": "4620", "kind": "union", "name": "CreateResponseInput", "variantTypes": [ { - "$id": "4619", + "$id": "4621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4620", + "$id": "4622", "kind": "array", "name": "Array23", "valueType": { - "$id": "4621", + "$id": "4623", "kind": "union", "name": "CreateResponseInput1", "variantTypes": [ { - "$id": "4622", + "$id": "4624", "kind": "model", "name": "ImplicitUserMessage", "namespace": "OpenAI", @@ -56981,28 +57007,28 @@ ], "properties": [ { - "$id": "4623", + "$id": "4625", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "4624", + "$id": "4626", "kind": "union", "name": "ImplicitUserMessageContent", "variantTypes": [ { - "$id": "4625", + "$id": "4627", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "4626", + "$id": "4628", "kind": "array", "name": "ArrayItemContent", "valueType": { - "$id": "4627", + "$id": "4629", "kind": "model", "name": "ItemContent", "namespace": "OpenAI", @@ -57015,7 +57041,7 @@ } ], "discriminatorProperty": { - "$id": "4628", + "$id": "4630", "kind": "property", "name": "type", "serializedName": "type", @@ -57037,12 +57063,12 @@ }, "properties": [ { - "$ref": "4628" + "$ref": "4630" } ], "discriminatedSubtypes": { "input_audio": { - "$id": "4629", + "$id": "4631", "kind": "model", "name": "ItemContentInputAudio", "namespace": "OpenAI", @@ -57057,17 +57083,17 @@ } ], "baseModel": { - "$ref": "4627" + "$ref": "4629" }, "properties": [ { - "$id": "4630", + "$id": "4632", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_audio`.", "type": { - "$id": "4631", + "$id": "4633", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -57075,7 +57101,7 @@ "$ref": "594" }, "enumType": { - "$id": "4632", + "$id": "4634", "kind": "enum", "decorators": [], "name": "ItemContentType", @@ -57083,7 +57109,7 @@ "namespace": "OpenAI", "doc": "Multi-modal input and output contents.", "valueType": { - "$id": "4633", + "$id": "4635", "kind": "string", "decorators": [], "name": "string", @@ -57092,94 +57118,94 @@ }, "values": [ { - "$id": "4634", + "$id": "4636", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "4633" + "$ref": "4635" }, "enumType": { - "$ref": "4632" + "$ref": "4634" } }, { - "$id": "4635", + "$id": "4637", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "4633" + "$ref": "4635" }, "enumType": { - "$ref": "4632" + "$ref": "4634" } }, { - "$id": "4636", + "$id": "4638", "kind": "enumvalue", "decorators": [], "name": "input_image", "value": "input_image", "valueType": { - "$ref": "4633" + "$ref": "4635" }, "enumType": { - "$ref": "4632" + "$ref": "4634" } }, { - "$id": "4637", + "$id": "4639", "kind": "enumvalue", "decorators": [], "name": "input_file", "value": "input_file", "valueType": { - "$ref": "4633" + "$ref": "4635" }, "enumType": { - "$ref": "4632" + "$ref": "4634" } }, { - "$id": "4638", + "$id": "4640", "kind": "enumvalue", "decorators": [], "name": "output_text", "value": "output_text", "valueType": { - "$ref": "4633" + "$ref": "4635" }, "enumType": { - "$ref": "4632" + "$ref": "4634" } }, { - "$id": "4639", + "$id": "4641", "kind": "enumvalue", "decorators": [], "name": "output_audio", "value": "output_audio", "valueType": { - "$ref": "4633" + "$ref": "4635" }, "enumType": { - "$ref": "4632" + "$ref": "4634" } }, { - "$id": "4640", + "$id": "4642", "kind": "enumvalue", "decorators": [], "name": "refusal", "value": "refusal", "valueType": { - "$ref": "4633" + "$ref": "4635" }, "enumType": { - "$ref": "4632" + "$ref": "4634" } } ], @@ -57208,13 +57234,13 @@ "isHttpMetadata": false }, { - "$id": "4641", + "$id": "4643", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data.", "type": { - "$id": "4642", + "$id": "4644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57234,7 +57260,7 @@ "isHttpMetadata": false }, { - "$id": "4643", + "$id": "4645", "kind": "property", "name": "format", "serializedName": "format", @@ -57258,7 +57284,7 @@ ] }, "output_audio": { - "$id": "4644", + "$id": "4646", "kind": "model", "name": "ItemContentOutputAudio", "namespace": "OpenAI", @@ -57273,17 +57299,17 @@ } ], "baseModel": { - "$ref": "4627" + "$ref": "4629" }, "properties": [ { - "$id": "4645", + "$id": "4647", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output audio. Always `output_audio`.", "type": { - "$id": "4646", + "$id": "4648", "kind": "enumvalue", "name": "output_audio", "value": "output_audio", @@ -57291,7 +57317,7 @@ "$ref": "594" }, "enumType": { - "$ref": "4632" + "$ref": "4634" }, "decorators": [] }, @@ -57309,13 +57335,13 @@ "isHttpMetadata": false }, { - "$id": "4647", + "$id": "4649", "kind": "property", "name": "data", "serializedName": "data", "doc": "Base64-encoded audio data from the model.", "type": { - "$id": "4648", + "$id": "4650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57335,13 +57361,13 @@ "isHttpMetadata": false }, { - "$id": "4649", + "$id": "4651", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcript of the audio data from the model.", "type": { - "$id": "4650", + "$id": "4652", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57363,7 +57389,7 @@ ] }, "refusal": { - "$id": "4651", + "$id": "4653", "kind": "model", "name": "ItemContentRefusal", "namespace": "OpenAI", @@ -57378,17 +57404,17 @@ } ], "baseModel": { - "$ref": "4627" + "$ref": "4629" }, "properties": [ { - "$id": "4652", + "$id": "4654", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the refusal. Always `refusal`.", "type": { - "$id": "4653", + "$id": "4655", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -57396,7 +57422,7 @@ "$ref": "594" }, "enumType": { - "$ref": "4632" + "$ref": "4634" }, "decorators": [] }, @@ -57414,13 +57440,13 @@ "isHttpMetadata": false }, { - "$id": "4654", + "$id": "4656", "kind": "property", "name": "refusal", "serializedName": "refusal", "doc": "The refusal explanationfrom the model.", "type": { - "$id": "4655", + "$id": "4657", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57442,7 +57468,7 @@ ] }, "input_text": { - "$id": "4656", + "$id": "4658", "kind": "model", "name": "ItemContentInputText", "namespace": "OpenAI", @@ -57457,17 +57483,17 @@ } ], "baseModel": { - "$ref": "4627" + "$ref": "4629" }, "properties": [ { - "$id": "4657", + "$id": "4659", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_text`.", "type": { - "$id": "4658", + "$id": "4660", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -57475,7 +57501,7 @@ "$ref": "594" }, "enumType": { - "$ref": "4632" + "$ref": "4634" }, "decorators": [] }, @@ -57493,13 +57519,13 @@ "isHttpMetadata": false }, { - "$id": "4659", + "$id": "4661", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text input to the model.", "type": { - "$id": "4660", + "$id": "4662", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57521,7 +57547,7 @@ ] }, "input_image": { - "$id": "4661", + "$id": "4663", "kind": "model", "name": "ItemContentInputImage", "namespace": "OpenAI", @@ -57536,17 +57562,17 @@ } ], "baseModel": { - "$ref": "4627" + "$ref": "4629" }, "properties": [ { - "$id": "4662", + "$id": "4664", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_image`.", "type": { - "$id": "4663", + "$id": "4665", "kind": "enumvalue", "name": "input_image", "value": "input_image", @@ -57554,7 +57580,7 @@ "$ref": "594" }, "enumType": { - "$ref": "4632" + "$ref": "4634" }, "decorators": [] }, @@ -57572,16 +57598,16 @@ "isHttpMetadata": false }, { - "$id": "4664", + "$id": "4666", "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": "4665", + "$id": "4667", "kind": "nullable", "type": { - "$id": "4666", + "$id": "4668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57603,16 +57629,16 @@ "isHttpMetadata": false }, { - "$id": "4667", + "$id": "4669", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4668", + "$id": "4670", "kind": "nullable", "type": { - "$id": "4669", + "$id": "4671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57634,7 +57660,7 @@ "isHttpMetadata": false }, { - "$id": "4670", + "$id": "4672", "kind": "property", "name": "detail", "serializedName": "detail", @@ -57658,7 +57684,7 @@ ] }, "input_file": { - "$id": "4671", + "$id": "4673", "kind": "model", "name": "ItemContentInputFile", "namespace": "OpenAI", @@ -57673,17 +57699,17 @@ } ], "baseModel": { - "$ref": "4627" + "$ref": "4629" }, "properties": [ { - "$id": "4672", + "$id": "4674", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the input item. Always `input_file`.", "type": { - "$id": "4673", + "$id": "4675", "kind": "enumvalue", "name": "input_file", "value": "input_file", @@ -57691,7 +57717,7 @@ "$ref": "594" }, "enumType": { - "$ref": "4632" + "$ref": "4634" }, "decorators": [] }, @@ -57709,16 +57735,16 @@ "isHttpMetadata": false }, { - "$id": "4674", + "$id": "4676", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to be sent to the model.", "type": { - "$id": "4675", + "$id": "4677", "kind": "nullable", "type": { - "$id": "4676", + "$id": "4678", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57740,13 +57766,13 @@ "isHttpMetadata": false }, { - "$id": "4677", + "$id": "4679", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be sent to the model.", "type": { - "$id": "4678", + "$id": "4680", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57766,13 +57792,13 @@ "isHttpMetadata": false }, { - "$id": "4679", + "$id": "4681", "kind": "property", "name": "file_data", "serializedName": "file_data", "doc": "The content of the file to be sent to the model.", "type": { - "$id": "4680", + "$id": "4682", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57794,7 +57820,7 @@ ] }, "output_text": { - "$id": "4681", + "$id": "4683", "kind": "model", "name": "ItemContentOutputText", "namespace": "OpenAI", @@ -57809,17 +57835,17 @@ } ], "baseModel": { - "$ref": "4627" + "$ref": "4629" }, "properties": [ { - "$id": "4682", + "$id": "4684", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output text. Always `output_text`.", "type": { - "$id": "4683", + "$id": "4685", "kind": "enumvalue", "name": "output_text", "value": "output_text", @@ -57827,7 +57853,7 @@ "$ref": "594" }, "enumType": { - "$ref": "4632" + "$ref": "4634" }, "decorators": [] }, @@ -57845,13 +57871,13 @@ "isHttpMetadata": false }, { - "$id": "4684", + "$id": "4686", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text output from the model.", "type": { - "$id": "4685", + "$id": "4687", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -57871,17 +57897,17 @@ "isHttpMetadata": false }, { - "$id": "4686", + "$id": "4688", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "The annotations of the text output.", "type": { - "$id": "4687", + "$id": "4689", "kind": "array", "name": "ArrayAnnotation", "valueType": { - "$id": "4688", + "$id": "4690", "kind": "model", "name": "Annotation", "namespace": "OpenAI", @@ -57894,7 +57920,7 @@ } ], "discriminatorProperty": { - "$id": "4689", + "$id": "4691", "kind": "property", "name": "type", "serializedName": "type", @@ -57916,12 +57942,12 @@ }, "properties": [ { - "$ref": "4689" + "$ref": "4691" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "4690", + "$id": "4692", "kind": "model", "name": "AnnotationFileCitation", "namespace": "OpenAI", @@ -57936,17 +57962,17 @@ } ], "baseModel": { - "$ref": "4688" + "$ref": "4690" }, "properties": [ { - "$id": "4691", + "$id": "4693", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file citation. Always `file_citation`.", "type": { - "$id": "4692", + "$id": "4694", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", @@ -57954,14 +57980,14 @@ "$ref": "612" }, "enumType": { - "$id": "4693", + "$id": "4695", "kind": "enum", "decorators": [], "name": "AnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4694", + "$id": "4696", "kind": "string", "decorators": [], "name": "string", @@ -57970,55 +57996,55 @@ }, "values": [ { - "$id": "4695", + "$id": "4697", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "4694" + "$ref": "4696" }, "enumType": { - "$ref": "4693" + "$ref": "4695" } }, { - "$id": "4696", + "$id": "4698", "kind": "enumvalue", "decorators": [], "name": "url_citation", "value": "url_citation", "valueType": { - "$ref": "4694" + "$ref": "4696" }, "enumType": { - "$ref": "4693" + "$ref": "4695" } }, { - "$id": "4697", + "$id": "4699", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "4694" + "$ref": "4696" }, "enumType": { - "$ref": "4693" + "$ref": "4695" } }, { - "$id": "4698", + "$id": "4700", "kind": "enumvalue", "decorators": [], "name": "container_file_citation", "value": "container_file_citation", "valueType": { - "$ref": "4694" + "$ref": "4696" }, "enumType": { - "$ref": "4693" + "$ref": "4695" } } ], @@ -58047,13 +58073,13 @@ "isHttpMetadata": false }, { - "$id": "4699", + "$id": "4701", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4700", + "$id": "4702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58073,13 +58099,13 @@ "isHttpMetadata": false }, { - "$id": "4701", + "$id": "4703", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4702", + "$id": "4704", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58101,7 +58127,7 @@ ] }, "url_citation": { - "$id": "4703", + "$id": "4705", "kind": "model", "name": "AnnotationUrlCitation", "namespace": "OpenAI", @@ -58116,17 +58142,17 @@ } ], "baseModel": { - "$ref": "4688" + "$ref": "4690" }, "properties": [ { - "$id": "4704", + "$id": "4706", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the URL citation. Always `url_citation`.", "type": { - "$id": "4705", + "$id": "4707", "kind": "enumvalue", "name": "url_citation", "value": "url_citation", @@ -58134,7 +58160,7 @@ "$ref": "612" }, "enumType": { - "$ref": "4693" + "$ref": "4695" }, "decorators": [] }, @@ -58152,13 +58178,13 @@ "isHttpMetadata": false }, { - "$id": "4706", + "$id": "4708", "kind": "property", "name": "url", "serializedName": "url", "doc": "The URL of the web resource.", "type": { - "$id": "4707", + "$id": "4709", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -58178,13 +58204,13 @@ "isHttpMetadata": false }, { - "$id": "4708", + "$id": "4710", "kind": "property", "name": "start_index", "serializedName": "start_index", "doc": "The index of the first character of the URL citation in the message.", "type": { - "$id": "4709", + "$id": "4711", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58204,13 +58230,13 @@ "isHttpMetadata": false }, { - "$id": "4710", + "$id": "4712", "kind": "property", "name": "end_index", "serializedName": "end_index", "doc": "The index of the last character of the URL citation in the message.", "type": { - "$id": "4711", + "$id": "4713", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58230,13 +58256,13 @@ "isHttpMetadata": false }, { - "$id": "4712", + "$id": "4714", "kind": "property", "name": "title", "serializedName": "title", "doc": "The title of the web resource.", "type": { - "$id": "4713", + "$id": "4715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58258,7 +58284,7 @@ ] }, "file_path": { - "$id": "4714", + "$id": "4716", "kind": "model", "name": "AnnotationFilePath", "namespace": "OpenAI", @@ -58273,17 +58299,17 @@ } ], "baseModel": { - "$ref": "4688" + "$ref": "4690" }, "properties": [ { - "$id": "4715", + "$id": "4717", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the file path. Always `file_path`.", "type": { - "$id": "4716", + "$id": "4718", "kind": "enumvalue", "name": "file_path", "value": "file_path", @@ -58291,7 +58317,7 @@ "$ref": "612" }, "enumType": { - "$ref": "4693" + "$ref": "4695" }, "decorators": [] }, @@ -58309,13 +58335,13 @@ "isHttpMetadata": false }, { - "$id": "4717", + "$id": "4719", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file.", "type": { - "$id": "4718", + "$id": "4720", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58335,13 +58361,13 @@ "isHttpMetadata": false }, { - "$id": "4719", + "$id": "4721", "kind": "property", "name": "index", "serializedName": "index", "doc": "The index of the file in the list of files.", "type": { - "$id": "4720", + "$id": "4722", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -58381,16 +58407,16 @@ "isHttpMetadata": false }, { - "$id": "4721", + "$id": "4723", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "4722", + "$id": "4724", "kind": "array", "name": "ArrayLogProb", "valueType": { - "$id": "4723", + "$id": "4725", "kind": "model", "name": "LogProb", "namespace": "OpenAI", @@ -58405,12 +58431,12 @@ ], "properties": [ { - "$id": "4724", + "$id": "4726", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4725", + "$id": "4727", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58430,12 +58456,12 @@ "isHttpMetadata": false }, { - "$id": "4726", + "$id": "4728", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4727", + "$id": "4729", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -58455,7 +58481,7 @@ "isHttpMetadata": false }, { - "$id": "4728", + "$id": "4730", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -58476,16 +58502,16 @@ "isHttpMetadata": false }, { - "$id": "4729", + "$id": "4731", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "4730", + "$id": "4732", "kind": "array", "name": "ArrayTopLogProb", "valueType": { - "$id": "4731", + "$id": "4733", "kind": "model", "name": "TopLogProb", "namespace": "OpenAI", @@ -58500,12 +58526,12 @@ ], "properties": [ { - "$id": "4732", + "$id": "4734", "kind": "property", "name": "token", "serializedName": "token", "type": { - "$id": "4733", + "$id": "4735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -58525,12 +58551,12 @@ "isHttpMetadata": false }, { - "$id": "4734", + "$id": "4736", "kind": "property", "name": "logprob", "serializedName": "logprob", "type": { - "$id": "4735", + "$id": "4737", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -58550,7 +58576,7 @@ "isHttpMetadata": false }, { - "$id": "4736", + "$id": "4738", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -58633,7 +58659,7 @@ ] }, { - "$id": "4737", + "$id": "4739", "kind": "model", "name": "ItemParam", "namespace": "OpenAI", @@ -58647,7 +58673,7 @@ } ], "discriminatorProperty": { - "$id": "4738", + "$id": "4740", "kind": "property", "name": "type", "serializedName": "type", @@ -58669,12 +58695,12 @@ }, "properties": [ { - "$ref": "4738" + "$ref": "4740" } ], "discriminatedSubtypes": { "file_search_call": { - "$id": "4739", + "$id": "4741", "kind": "model", "name": "FileSearchToolCallItemParam", "namespace": "OpenAI", @@ -58689,16 +58715,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4740", + "$id": "4742", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4741", + "$id": "4743", "kind": "enumvalue", "name": "file_search_call", "value": "file_search_call", @@ -58706,14 +58732,14 @@ "$ref": "618" }, "enumType": { - "$id": "4742", + "$id": "4744", "kind": "enum", "decorators": [], "name": "ItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4743", + "$id": "4745", "kind": "string", "decorators": [], "name": "string", @@ -58722,224 +58748,224 @@ }, "values": [ { - "$id": "4744", + "$id": "4746", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4745", + "$id": "4747", "kind": "enumvalue", "decorators": [], "name": "file_search_call", "value": "file_search_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4746", + "$id": "4748", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4747", + "$id": "4749", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4748", + "$id": "4750", "kind": "enumvalue", "decorators": [], "name": "computer_call", "value": "computer_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4749", + "$id": "4751", "kind": "enumvalue", "decorators": [], "name": "computer_call_output", "value": "computer_call_output", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4750", + "$id": "4752", "kind": "enumvalue", "decorators": [], "name": "web_search_call", "value": "web_search_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4751", + "$id": "4753", "kind": "enumvalue", "decorators": [], "name": "reasoning", "value": "reasoning", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4752", + "$id": "4754", "kind": "enumvalue", "decorators": [], "name": "item_reference", "value": "item_reference", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4753", + "$id": "4755", "kind": "enumvalue", "decorators": [], "name": "image_generation_call", "value": "image_generation_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4754", + "$id": "4756", "kind": "enumvalue", "decorators": [], "name": "code_interpreter_call", "value": "code_interpreter_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4755", + "$id": "4757", "kind": "enumvalue", "decorators": [], "name": "local_shell_call", "value": "local_shell_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4756", + "$id": "4758", "kind": "enumvalue", "decorators": [], "name": "local_shell_call_output", "value": "local_shell_call_output", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4757", + "$id": "4759", "kind": "enumvalue", "decorators": [], "name": "mcp_list_tools", "value": "mcp_list_tools", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4758", + "$id": "4760", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_request", "value": "mcp_approval_request", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4759", + "$id": "4761", "kind": "enumvalue", "decorators": [], "name": "mcp_approval_response", "value": "mcp_approval_response", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } }, { - "$id": "4760", + "$id": "4762", "kind": "enumvalue", "decorators": [], "name": "mcp_call", "value": "mcp_call", "valueType": { - "$ref": "4743" + "$ref": "4745" }, "enumType": { - "$ref": "4742" + "$ref": "4744" } } ], @@ -58968,7 +58994,7 @@ "isHttpMetadata": false }, { - "$id": "4761", + "$id": "4763", "kind": "property", "name": "queries", "serializedName": "queries", @@ -58990,20 +59016,20 @@ "isHttpMetadata": false }, { - "$id": "4762", + "$id": "4764", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$id": "4763", + "$id": "4765", "kind": "nullable", "type": { - "$id": "4764", + "$id": "4766", "kind": "array", "name": "Array24", "valueType": { - "$id": "4765", + "$id": "4767", "kind": "model", "name": "FileSearchToolCallItemParamResult", "namespace": "OpenAI", @@ -59012,13 +59038,13 @@ "decorators": [], "properties": [ { - "$id": "4766", + "$id": "4768", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The unique ID of the file.", "type": { - "$id": "4767", + "$id": "4769", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59038,13 +59064,13 @@ "isHttpMetadata": false }, { - "$id": "4768", + "$id": "4770", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text that was retrieved from the file.", "type": { - "$id": "4769", + "$id": "4771", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59064,13 +59090,13 @@ "isHttpMetadata": false }, { - "$id": "4770", + "$id": "4772", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file.", "type": { - "$id": "4771", + "$id": "4773", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59090,12 +59116,12 @@ "isHttpMetadata": false }, { - "$id": "4772", + "$id": "4774", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "3877" + "$ref": "3879" }, "optional": true, "readOnly": false, @@ -59111,13 +59137,13 @@ "isHttpMetadata": false }, { - "$id": "4773", + "$id": "4775", "kind": "property", "name": "score", "serializedName": "score", "doc": "The relevance score of the file - a value between 0 and 1.", "type": { - "$id": "4774", + "$id": "4776", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -59159,7 +59185,7 @@ ] }, "computer_call": { - "$id": "4775", + "$id": "4777", "kind": "model", "name": "ComputerToolCallItemParam", "namespace": "OpenAI", @@ -59174,16 +59200,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4776", + "$id": "4778", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4777", + "$id": "4779", "kind": "enumvalue", "name": "computer_call", "value": "computer_call", @@ -59191,7 +59217,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -59209,13 +59235,13 @@ "isHttpMetadata": false }, { - "$id": "4778", + "$id": "4780", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "4779", + "$id": "4781", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -59235,12 +59261,12 @@ "isHttpMetadata": false }, { - "$id": "4780", + "$id": "4782", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4781", + "$id": "4783", "kind": "model", "name": "ComputerAction", "namespace": "OpenAI", @@ -59253,7 +59279,7 @@ } ], "discriminatorProperty": { - "$id": "4782", + "$id": "4784", "kind": "property", "name": "type", "serializedName": "type", @@ -59275,12 +59301,12 @@ }, "properties": [ { - "$ref": "4782" + "$ref": "4784" } ], "discriminatedSubtypes": { "click": { - "$id": "4783", + "$id": "4785", "kind": "model", "name": "ComputerActionClick", "namespace": "OpenAI", @@ -59295,17 +59321,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4784", + "$id": "4786", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a click action, this property is\nalways set to `click`.", "type": { - "$id": "4785", + "$id": "4787", "kind": "enumvalue", "name": "click", "value": "click", @@ -59313,14 +59339,14 @@ "$ref": "637" }, "enumType": { - "$id": "4786", + "$id": "4788", "kind": "enum", "decorators": [], "name": "ComputerActionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4787", + "$id": "4789", "kind": "string", "decorators": [], "name": "string", @@ -59329,120 +59355,120 @@ }, "values": [ { - "$id": "4788", + "$id": "4790", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "screenshot", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4789", + "$id": "4791", "kind": "enumvalue", "decorators": [], "name": "click", "value": "click", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4790", + "$id": "4792", "kind": "enumvalue", "decorators": [], "name": "double_click", "value": "double_click", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4791", + "$id": "4793", "kind": "enumvalue", "decorators": [], "name": "scroll", "value": "scroll", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4792", + "$id": "4794", "kind": "enumvalue", "decorators": [], "name": "type", "value": "type", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4793", + "$id": "4795", "kind": "enumvalue", "decorators": [], "name": "wait", "value": "wait", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4794", + "$id": "4796", "kind": "enumvalue", "decorators": [], "name": "keypress", "value": "keypress", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4795", + "$id": "4797", "kind": "enumvalue", "decorators": [], "name": "drag", "value": "drag", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } }, { - "$id": "4796", + "$id": "4798", "kind": "enumvalue", "decorators": [], "name": "move", "value": "move", "valueType": { - "$ref": "4787" + "$ref": "4789" }, "enumType": { - "$ref": "4786" + "$ref": "4788" } } ], @@ -59471,7 +59497,7 @@ "isHttpMetadata": false }, { - "$id": "4797", + "$id": "4799", "kind": "property", "name": "button", "serializedName": "button", @@ -59493,13 +59519,13 @@ "isHttpMetadata": false }, { - "$id": "4798", + "$id": "4800", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the click occurred.", "type": { - "$id": "4799", + "$id": "4801", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59519,13 +59545,13 @@ "isHttpMetadata": false }, { - "$id": "4800", + "$id": "4802", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the click occurred.", "type": { - "$id": "4801", + "$id": "4803", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59547,7 +59573,7 @@ ] }, "double_click": { - "$id": "4802", + "$id": "4804", "kind": "model", "name": "ComputerActionDoubleClick", "namespace": "OpenAI", @@ -59562,17 +59588,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4803", + "$id": "4805", "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": { - "$id": "4804", + "$id": "4806", "kind": "enumvalue", "name": "double_click", "value": "double_click", @@ -59580,7 +59606,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -59598,13 +59624,13 @@ "isHttpMetadata": false }, { - "$id": "4805", + "$id": "4807", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the double click occurred.", "type": { - "$id": "4806", + "$id": "4808", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59624,13 +59650,13 @@ "isHttpMetadata": false }, { - "$id": "4807", + "$id": "4809", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the double click occurred.", "type": { - "$id": "4808", + "$id": "4810", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59652,7 +59678,7 @@ ] }, "drag": { - "$id": "4809", + "$id": "4811", "kind": "model", "name": "ComputerActionDrag", "namespace": "OpenAI", @@ -59667,17 +59693,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4810", + "$id": "4812", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a drag action, this property is\nalways set to `drag`.", "type": { - "$id": "4811", + "$id": "4813", "kind": "enumvalue", "name": "drag", "value": "drag", @@ -59685,7 +59711,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -59703,17 +59729,17 @@ "isHttpMetadata": false }, { - "$id": "4812", + "$id": "4814", "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": "4813", + "$id": "4815", "kind": "array", "name": "ArrayCoordinate", "valueType": { - "$id": "4814", + "$id": "4816", "kind": "model", "name": "Coordinate", "namespace": "OpenAI", @@ -59728,13 +59754,13 @@ ], "properties": [ { - "$id": "4815", + "$id": "4817", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate.", "type": { - "$id": "4816", + "$id": "4818", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59754,13 +59780,13 @@ "isHttpMetadata": false }, { - "$id": "4817", + "$id": "4819", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate.", "type": { - "$id": "4818", + "$id": "4820", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59800,7 +59826,7 @@ ] }, "move": { - "$id": "4819", + "$id": "4821", "kind": "model", "name": "ComputerActionMove", "namespace": "OpenAI", @@ -59815,17 +59841,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4820", + "$id": "4822", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a move action, this property is\nalways set to `move`.", "type": { - "$id": "4821", + "$id": "4823", "kind": "enumvalue", "name": "move", "value": "move", @@ -59833,7 +59859,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -59851,13 +59877,13 @@ "isHttpMetadata": false }, { - "$id": "4822", + "$id": "4824", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate to move to.", "type": { - "$id": "4823", + "$id": "4825", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59877,13 +59903,13 @@ "isHttpMetadata": false }, { - "$id": "4824", + "$id": "4826", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate to move to.", "type": { - "$id": "4825", + "$id": "4827", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -59905,7 +59931,7 @@ ] }, "screenshot": { - "$id": "4826", + "$id": "4828", "kind": "model", "name": "ComputerActionScreenshot", "namespace": "OpenAI", @@ -59920,17 +59946,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4827", + "$id": "4829", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a screenshot action, this property is\nalways set to `screenshot`.", "type": { - "$id": "4828", + "$id": "4830", "kind": "enumvalue", "name": "screenshot", "value": "screenshot", @@ -59938,7 +59964,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -59958,7 +59984,7 @@ ] }, "scroll": { - "$id": "4829", + "$id": "4831", "kind": "model", "name": "ComputerActionScroll", "namespace": "OpenAI", @@ -59973,17 +59999,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4830", + "$id": "4832", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a scroll action, this property is\nalways set to `scroll`.", "type": { - "$id": "4831", + "$id": "4833", "kind": "enumvalue", "name": "scroll", "value": "scroll", @@ -59991,7 +60017,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -60009,13 +60035,13 @@ "isHttpMetadata": false }, { - "$id": "4832", + "$id": "4834", "kind": "property", "name": "x", "serializedName": "x", "doc": "The x-coordinate where the scroll occurred.", "type": { - "$id": "4833", + "$id": "4835", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60035,13 +60061,13 @@ "isHttpMetadata": false }, { - "$id": "4834", + "$id": "4836", "kind": "property", "name": "y", "serializedName": "y", "doc": "The y-coordinate where the scroll occurred.", "type": { - "$id": "4835", + "$id": "4837", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60061,13 +60087,13 @@ "isHttpMetadata": false }, { - "$id": "4836", + "$id": "4838", "kind": "property", "name": "scroll_x", "serializedName": "scroll_x", "doc": "The horizontal scroll distance.", "type": { - "$id": "4837", + "$id": "4839", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60087,13 +60113,13 @@ "isHttpMetadata": false }, { - "$id": "4838", + "$id": "4840", "kind": "property", "name": "scroll_y", "serializedName": "scroll_y", "doc": "The vertical scroll distance.", "type": { - "$id": "4839", + "$id": "4841", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -60115,7 +60141,7 @@ ] }, "type": { - "$id": "4840", + "$id": "4842", "kind": "model", "name": "ComputerActionTypeKeys", "namespace": "OpenAI", @@ -60130,17 +60156,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4841", + "$id": "4843", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a type action, this property is\nalways set to `type`.", "type": { - "$id": "4842", + "$id": "4844", "kind": "enumvalue", "name": "type", "value": "type", @@ -60148,7 +60174,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -60166,13 +60192,13 @@ "isHttpMetadata": false }, { - "$id": "4843", + "$id": "4845", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text to type.", "type": { - "$id": "4844", + "$id": "4846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60194,7 +60220,7 @@ ] }, "wait": { - "$id": "4845", + "$id": "4847", "kind": "model", "name": "ComputerActionWait", "namespace": "OpenAI", @@ -60209,17 +60235,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4846", + "$id": "4848", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a wait action, this property is\nalways set to `wait`.", "type": { - "$id": "4847", + "$id": "4849", "kind": "enumvalue", "name": "wait", "value": "wait", @@ -60227,7 +60253,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -60247,7 +60273,7 @@ ] }, "keypress": { - "$id": "4848", + "$id": "4850", "kind": "model", "name": "ComputerActionKeyPress", "namespace": "OpenAI", @@ -60262,17 +60288,17 @@ } ], "baseModel": { - "$ref": "4781" + "$ref": "4783" }, "properties": [ { - "$id": "4849", + "$id": "4851", "kind": "property", "name": "type", "serializedName": "type", "doc": "Specifies the event type. For a keypress action, this property is\nalways set to `keypress`.", "type": { - "$id": "4850", + "$id": "4852", "kind": "enumvalue", "name": "keypress", "value": "keypress", @@ -60280,7 +60306,7 @@ "$ref": "637" }, "enumType": { - "$ref": "4786" + "$ref": "4788" }, "decorators": [] }, @@ -60298,7 +60324,7 @@ "isHttpMetadata": false }, { - "$id": "4851", + "$id": "4853", "kind": "property", "name": "keys", "serializedName": "keys", @@ -60337,17 +60363,17 @@ "isHttpMetadata": false }, { - "$id": "4852", + "$id": "4854", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$id": "4853", + "$id": "4855", "kind": "array", "name": "ArrayComputerToolCallSafetyCheck", "valueType": { - "$id": "4854", + "$id": "4856", "kind": "model", "name": "ComputerToolCallSafetyCheck", "namespace": "OpenAI", @@ -60362,13 +60388,13 @@ ], "properties": [ { - "$id": "4855", + "$id": "4857", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the pending safety check.", "type": { - "$id": "4856", + "$id": "4858", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60388,13 +60414,13 @@ "isHttpMetadata": false }, { - "$id": "4857", + "$id": "4859", "kind": "property", "name": "code", "serializedName": "code", "doc": "The type of the pending safety check.", "type": { - "$id": "4858", + "$id": "4860", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60414,13 +60440,13 @@ "isHttpMetadata": false }, { - "$id": "4859", + "$id": "4861", "kind": "property", "name": "message", "serializedName": "message", "doc": "Details about the pending safety check.", "type": { - "$id": "4860", + "$id": "4862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60460,7 +60486,7 @@ ] }, "computer_call_output": { - "$id": "4861", + "$id": "4863", "kind": "model", "name": "ComputerToolCallOutputItemParam", "namespace": "OpenAI", @@ -60475,16 +60501,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4862", + "$id": "4864", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4863", + "$id": "4865", "kind": "enumvalue", "name": "computer_call_output", "value": "computer_call_output", @@ -60492,7 +60518,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -60510,13 +60536,13 @@ "isHttpMetadata": false }, { - "$id": "4864", + "$id": "4866", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "4865", + "$id": "4867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60536,13 +60562,13 @@ "isHttpMetadata": false }, { - "$id": "4866", + "$id": "4868", "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": "4853" + "$ref": "4855" }, "optional": true, "readOnly": false, @@ -60558,12 +60584,12 @@ "isHttpMetadata": false }, { - "$id": "4867", + "$id": "4869", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "4868", + "$id": "4870", "kind": "model", "name": "ComputerToolCallOutputItemOutput", "namespace": "OpenAI", @@ -60576,7 +60602,7 @@ } ], "discriminatorProperty": { - "$id": "4869", + "$id": "4871", "kind": "property", "name": "type", "serializedName": "type", @@ -60598,12 +60624,12 @@ }, "properties": [ { - "$ref": "4869" + "$ref": "4871" } ], "discriminatedSubtypes": { "computer_screenshot": { - "$id": "4870", + "$id": "4872", "kind": "model", "name": "ComputerToolCallOutputItemOutputComputerScreenshot", "namespace": "OpenAI", @@ -60617,16 +60643,16 @@ } ], "baseModel": { - "$ref": "4868" + "$ref": "4870" }, "properties": [ { - "$id": "4871", + "$id": "4873", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4872", + "$id": "4874", "kind": "enumvalue", "name": "screenshot", "value": "computer_screenshot", @@ -60634,7 +60660,7 @@ "$ref": "655" }, "enumType": { - "$id": "4873", + "$id": "4875", "kind": "enum", "decorators": [], "name": "ComputerToolCallOutputItemOutputType", @@ -60642,7 +60668,7 @@ "namespace": "OpenAI", "doc": "A computer screenshot image used with the computer use tool.", "valueType": { - "$id": "4874", + "$id": "4876", "kind": "string", "decorators": [], "name": "string", @@ -60651,16 +60677,16 @@ }, "values": [ { - "$id": "4875", + "$id": "4877", "kind": "enumvalue", "decorators": [], "name": "screenshot", "value": "computer_screenshot", "valueType": { - "$ref": "4874" + "$ref": "4876" }, "enumType": { - "$ref": "4873" + "$ref": "4875" } } ], @@ -60689,12 +60715,12 @@ "isHttpMetadata": false }, { - "$id": "4876", + "$id": "4878", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "4877", + "$id": "4879", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60714,12 +60740,12 @@ "isHttpMetadata": false }, { - "$id": "4878", + "$id": "4880", "kind": "property", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "4879", + "$id": "4881", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60758,7 +60784,7 @@ ] }, "web_search_call": { - "$id": "4880", + "$id": "4882", "kind": "model", "name": "WebSearchToolCallItemParam", "namespace": "OpenAI", @@ -60773,16 +60799,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4881", + "$id": "4883", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4882", + "$id": "4884", "kind": "enumvalue", "name": "web_search_call", "value": "web_search_call", @@ -60790,7 +60816,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -60810,7 +60836,7 @@ ] }, "function_call": { - "$id": "4883", + "$id": "4885", "kind": "model", "name": "FunctionToolCallItemParam", "namespace": "OpenAI", @@ -60825,16 +60851,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4884", + "$id": "4886", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4885", + "$id": "4887", "kind": "enumvalue", "name": "function_call", "value": "function_call", @@ -60842,7 +60868,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -60860,13 +60886,13 @@ "isHttpMetadata": false }, { - "$id": "4886", + "$id": "4888", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4887", + "$id": "4889", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60886,13 +60912,13 @@ "isHttpMetadata": false }, { - "$id": "4888", + "$id": "4890", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "4889", + "$id": "4891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60912,13 +60938,13 @@ "isHttpMetadata": false }, { - "$id": "4890", + "$id": "4892", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "4891", + "$id": "4893", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -60940,7 +60966,7 @@ ] }, "function_call_output": { - "$id": "4892", + "$id": "4894", "kind": "model", "name": "FunctionToolCallOutputItemParam", "namespace": "OpenAI", @@ -60955,16 +60981,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4893", + "$id": "4895", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4894", + "$id": "4896", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", @@ -60972,7 +60998,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -60990,13 +61016,13 @@ "isHttpMetadata": false }, { - "$id": "4895", + "$id": "4897", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "4896", + "$id": "4898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61016,13 +61042,13 @@ "isHttpMetadata": false }, { - "$id": "4897", + "$id": "4899", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "4898", + "$id": "4900", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61044,7 +61070,7 @@ ] }, "reasoning": { - "$id": "4899", + "$id": "4901", "kind": "model", "name": "ReasoningItemParam", "namespace": "OpenAI", @@ -61059,16 +61085,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4900", + "$id": "4902", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4901", + "$id": "4903", "kind": "enumvalue", "name": "reasoning", "value": "reasoning", @@ -61076,7 +61102,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -61094,16 +61120,16 @@ "isHttpMetadata": false }, { - "$id": "4902", + "$id": "4904", "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": "4903", + "$id": "4905", "kind": "nullable", "type": { - "$id": "4904", + "$id": "4906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61125,17 +61151,17 @@ "isHttpMetadata": false }, { - "$id": "4905", + "$id": "4907", "kind": "property", "name": "summary", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$id": "4906", + "$id": "4908", "kind": "array", "name": "ArrayReasoningItemSummaryPart", "valueType": { - "$id": "4907", + "$id": "4909", "kind": "model", "name": "ReasoningItemSummaryPart", "namespace": "OpenAI", @@ -61148,7 +61174,7 @@ } ], "discriminatorProperty": { - "$id": "4908", + "$id": "4910", "kind": "property", "name": "type", "serializedName": "type", @@ -61170,12 +61196,12 @@ }, "properties": [ { - "$ref": "4908" + "$ref": "4910" } ], "discriminatedSubtypes": { "summary_text": { - "$id": "4909", + "$id": "4911", "kind": "model", "name": "ReasoningItemSummaryTextPart", "namespace": "OpenAI", @@ -61189,16 +61215,16 @@ } ], "baseModel": { - "$ref": "4907" + "$ref": "4909" }, "properties": [ { - "$id": "4910", + "$id": "4912", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4911", + "$id": "4913", "kind": "enumvalue", "name": "summary_text", "value": "summary_text", @@ -61206,7 +61232,7 @@ "$ref": "658" }, "enumType": { - "$id": "4912", + "$id": "4914", "kind": "enum", "decorators": [ { @@ -61218,7 +61244,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4913", + "$id": "4915", "kind": "string", "decorators": [], "name": "string", @@ -61227,16 +61253,16 @@ }, "values": [ { - "$id": "4914", + "$id": "4916", "kind": "enumvalue", "decorators": [], "name": "summary_text", "value": "summary_text", "valueType": { - "$ref": "4913" + "$ref": "4915" }, "enumType": { - "$ref": "4912" + "$ref": "4914" } } ], @@ -61265,12 +61291,12 @@ "isHttpMetadata": false }, { - "$id": "4915", + "$id": "4917", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "4916", + "$id": "4918", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61312,7 +61338,7 @@ ] }, "item_reference": { - "$id": "4917", + "$id": "4919", "kind": "model", "name": "ItemReferenceItemParam", "namespace": "OpenAI", @@ -61327,16 +61353,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4918", + "$id": "4920", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4919", + "$id": "4921", "kind": "enumvalue", "name": "item_reference", "value": "item_reference", @@ -61344,7 +61370,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -61362,13 +61388,13 @@ "isHttpMetadata": false }, { - "$id": "4920", + "$id": "4922", "kind": "property", "name": "id", "serializedName": "id", "doc": "The service-originated ID of the previously generated response item being referenced.", "type": { - "$id": "4921", + "$id": "4923", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61390,7 +61416,7 @@ ] }, "image_generation_call": { - "$id": "4922", + "$id": "4924", "kind": "model", "name": "ImageGenToolCallItemParam", "namespace": "OpenAI", @@ -61405,16 +61431,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4923", + "$id": "4925", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4924", + "$id": "4926", "kind": "enumvalue", "name": "image_generation_call", "value": "image_generation_call", @@ -61422,7 +61448,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -61440,16 +61466,16 @@ "isHttpMetadata": false }, { - "$id": "4925", + "$id": "4927", "kind": "property", "name": "result", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$id": "4926", + "$id": "4928", "kind": "nullable", "type": { - "$id": "4927", + "$id": "4929", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -61474,7 +61500,7 @@ ] }, "code_interpreter_call": { - "$id": "4928", + "$id": "4930", "kind": "model", "name": "CodeInterpreterToolCallItemParam", "namespace": "OpenAI", @@ -61489,16 +61515,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4929", + "$id": "4931", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4930", + "$id": "4932", "kind": "enumvalue", "name": "code_interpreter_call", "value": "code_interpreter_call", @@ -61506,7 +61532,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -61524,13 +61550,13 @@ "isHttpMetadata": false }, { - "$id": "4931", + "$id": "4933", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "4932", + "$id": "4934", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61550,13 +61576,13 @@ "isHttpMetadata": false }, { - "$id": "4933", + "$id": "4935", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "4934", + "$id": "4936", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61576,17 +61602,17 @@ "isHttpMetadata": false }, { - "$id": "4935", + "$id": "4937", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$id": "4936", + "$id": "4938", "kind": "array", "name": "ArrayCodeInterpreterToolOutput", "valueType": { - "$id": "4937", + "$id": "4939", "kind": "model", "name": "CodeInterpreterToolOutput", "namespace": "OpenAI", @@ -61599,7 +61625,7 @@ } ], "discriminatorProperty": { - "$id": "4938", + "$id": "4940", "kind": "property", "name": "type", "serializedName": "type", @@ -61622,12 +61648,12 @@ }, "properties": [ { - "$ref": "4938" + "$ref": "4940" } ], "discriminatedSubtypes": { "logs": { - "$id": "4939", + "$id": "4941", "kind": "model", "name": "CodeInterpreterToolLogsOutput", "namespace": "OpenAI", @@ -61641,17 +61667,17 @@ } ], "baseModel": { - "$ref": "4937" + "$ref": "4939" }, "properties": [ { - "$id": "4940", + "$id": "4942", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'logs'.", "type": { - "$id": "4941", + "$id": "4943", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -61659,7 +61685,7 @@ "$ref": "661" }, "enumType": { - "$id": "4942", + "$id": "4944", "kind": "enum", "decorators": [ { @@ -61671,7 +61697,7 @@ "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "4943", + "$id": "4945", "kind": "string", "decorators": [], "name": "string", @@ -61680,29 +61706,29 @@ }, "values": [ { - "$id": "4944", + "$id": "4946", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "4943" + "$ref": "4945" }, "enumType": { - "$ref": "4942" + "$ref": "4944" } }, { - "$id": "4945", + "$id": "4947", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "4943" + "$ref": "4945" }, "enumType": { - "$ref": "4942" + "$ref": "4944" } } ], @@ -61731,13 +61757,13 @@ "isHttpMetadata": false }, { - "$id": "4946", + "$id": "4948", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The logs output from the code interpreter.", "type": { - "$id": "4947", + "$id": "4949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61759,7 +61785,7 @@ ] }, "image": { - "$id": "4948", + "$id": "4950", "kind": "model", "name": "CodeInterpreterToolImageOutput", "namespace": "OpenAI", @@ -61773,17 +61799,17 @@ } ], "baseModel": { - "$ref": "4937" + "$ref": "4939" }, "properties": [ { - "$id": "4949", + "$id": "4951", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the output. Always 'image'.", "type": { - "$id": "4950", + "$id": "4952", "kind": "enumvalue", "name": "image", "value": "image", @@ -61791,7 +61817,7 @@ "$ref": "661" }, "enumType": { - "$ref": "4942" + "$ref": "4944" }, "decorators": [] }, @@ -61809,13 +61835,13 @@ "isHttpMetadata": false }, { - "$id": "4951", + "$id": "4953", "kind": "property", "name": "ImageUri", "serializedName": "url", "doc": "The URL of the image output from the code interpreter.", "type": { - "$id": "4952", + "$id": "4954", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -61857,7 +61883,7 @@ ] }, "local_shell_call": { - "$id": "4953", + "$id": "4955", "kind": "model", "name": "LocalShellToolCallItemParam", "namespace": "OpenAI", @@ -61872,16 +61898,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4954", + "$id": "4956", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4955", + "$id": "4957", "kind": "enumvalue", "name": "local_shell_call", "value": "local_shell_call", @@ -61889,7 +61915,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -61907,13 +61933,13 @@ "isHttpMetadata": false }, { - "$id": "4956", + "$id": "4958", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "4957", + "$id": "4959", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -61933,12 +61959,12 @@ "isHttpMetadata": false }, { - "$id": "4958", + "$id": "4960", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$id": "4959", + "$id": "4961", "kind": "model", "name": "LocalShellExecAction", "namespace": "OpenAI", @@ -61953,7 +61979,7 @@ ], "properties": [ { - "$id": "4960", + "$id": "4962", "kind": "property", "name": "type", "serializedName": "type", @@ -61975,7 +62001,7 @@ "isHttpMetadata": false }, { - "$id": "4961", + "$id": "4963", "kind": "property", "name": "command", "serializedName": "command", @@ -61997,16 +62023,16 @@ "isHttpMetadata": false }, { - "$id": "4962", + "$id": "4964", "kind": "property", "name": "timeout_ms", "serializedName": "timeout_ms", "doc": "Optional timeout in milliseconds for the command.", "type": { - "$id": "4963", + "$id": "4965", "kind": "nullable", "type": { - "$id": "4964", + "$id": "4966", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -62028,16 +62054,16 @@ "isHttpMetadata": false }, { - "$id": "4965", + "$id": "4967", "kind": "property", "name": "working_directory", "serializedName": "working_directory", "doc": "Optional working directory to run the command in.", "type": { - "$id": "4966", + "$id": "4968", "kind": "nullable", "type": { - "$id": "4967", + "$id": "4969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62059,7 +62085,7 @@ "isHttpMetadata": false }, { - "$id": "4968", + "$id": "4970", "kind": "property", "name": "env", "serializedName": "env", @@ -62081,16 +62107,16 @@ "isHttpMetadata": false }, { - "$id": "4969", + "$id": "4971", "kind": "property", "name": "user", "serializedName": "user", "doc": "Optional user to run the command as.", "type": { - "$id": "4970", + "$id": "4972", "kind": "nullable", "type": { - "$id": "4971", + "$id": "4973", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62129,7 +62155,7 @@ ] }, "local_shell_call_output": { - "$id": "4972", + "$id": "4974", "kind": "model", "name": "LocalShellToolCallOutputItemParam", "namespace": "OpenAI", @@ -62144,16 +62170,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4973", + "$id": "4975", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4974", + "$id": "4976", "kind": "enumvalue", "name": "local_shell_call_output", "value": "local_shell_call_output", @@ -62161,7 +62187,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -62179,13 +62205,13 @@ "isHttpMetadata": false }, { - "$id": "4975", + "$id": "4977", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "4976", + "$id": "4978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62207,7 +62233,7 @@ ] }, "mcp_list_tools": { - "$id": "4977", + "$id": "4979", "kind": "model", "name": "MCPListToolsItemParam", "namespace": "OpenAI", @@ -62222,16 +62248,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4978", + "$id": "4980", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "4979", + "$id": "4981", "kind": "enumvalue", "name": "mcp_list_tools", "value": "mcp_list_tools", @@ -62239,7 +62265,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -62257,13 +62283,13 @@ "isHttpMetadata": false }, { - "$id": "4980", + "$id": "4982", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "4981", + "$id": "4983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62283,17 +62309,17 @@ "isHttpMetadata": false }, { - "$id": "4982", + "$id": "4984", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$id": "4983", + "$id": "4985", "kind": "array", "name": "ArrayMcpListToolsTool", "valueType": { - "$id": "4984", + "$id": "4986", "kind": "model", "name": "MCPListToolsTool", "namespace": "OpenAI", @@ -62308,13 +62334,13 @@ ], "properties": [ { - "$id": "4985", + "$id": "4987", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool.", "type": { - "$id": "4986", + "$id": "4988", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62334,16 +62360,16 @@ "isHttpMetadata": false }, { - "$id": "4987", + "$id": "4989", "kind": "property", "name": "description", "serializedName": "description", "doc": "The description of the tool.", "type": { - "$id": "4988", + "$id": "4990", "kind": "nullable", "type": { - "$id": "4989", + "$id": "4991", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62365,13 +62391,13 @@ "isHttpMetadata": false }, { - "$id": "4990", + "$id": "4992", "kind": "property", "name": "input_schema", "serializedName": "input_schema", "doc": "The JSON schema describing the tool's input.", "type": { - "$id": "4991", + "$id": "4993", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -62391,16 +62417,16 @@ "isHttpMetadata": false }, { - "$id": "4992", + "$id": "4994", "kind": "property", "name": "annotations", "serializedName": "annotations", "doc": "Additional annotations about the tool.", "type": { - "$id": "4993", + "$id": "4995", "kind": "nullable", "type": { - "$id": "4994", + "$id": "4996", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -62440,16 +62466,16 @@ "isHttpMetadata": false }, { - "$id": "4995", + "$id": "4997", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "4996", + "$id": "4998", "kind": "nullable", "type": { - "$id": "4997", + "$id": "4999", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62473,7 +62499,7 @@ ] }, "mcp_approval_request": { - "$id": "4998", + "$id": "5000", "kind": "model", "name": "MCPApprovalRequestItemParam", "namespace": "OpenAI", @@ -62488,16 +62514,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "4999", + "$id": "5001", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5000", + "$id": "5002", "kind": "enumvalue", "name": "mcp_approval_request", "value": "mcp_approval_request", @@ -62505,7 +62531,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -62523,13 +62549,13 @@ "isHttpMetadata": false }, { - "$id": "5001", + "$id": "5003", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5002", + "$id": "5004", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62549,13 +62575,13 @@ "isHttpMetadata": false }, { - "$id": "5003", + "$id": "5005", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5004", + "$id": "5006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62575,13 +62601,13 @@ "isHttpMetadata": false }, { - "$id": "5005", + "$id": "5007", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5006", + "$id": "5008", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62603,7 +62629,7 @@ ] }, "mcp_approval_response": { - "$id": "5007", + "$id": "5009", "kind": "model", "name": "MCPApprovalResponseItemParam", "namespace": "OpenAI", @@ -62618,16 +62644,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "5008", + "$id": "5010", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5009", + "$id": "5011", "kind": "enumvalue", "name": "mcp_approval_response", "value": "mcp_approval_response", @@ -62635,7 +62661,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -62653,13 +62679,13 @@ "isHttpMetadata": false }, { - "$id": "5010", + "$id": "5012", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5011", + "$id": "5013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62679,13 +62705,13 @@ "isHttpMetadata": false }, { - "$id": "5012", + "$id": "5014", "kind": "property", "name": "approve", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5013", + "$id": "5015", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -62705,16 +62731,16 @@ "isHttpMetadata": false }, { - "$id": "5014", + "$id": "5016", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$id": "5015", + "$id": "5017", "kind": "nullable", "type": { - "$id": "5016", + "$id": "5018", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62738,7 +62764,7 @@ ] }, "mcp_call": { - "$id": "5017", + "$id": "5019", "kind": "model", "name": "MCPCallItemParam", "namespace": "OpenAI", @@ -62753,16 +62779,16 @@ } ], "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "5018", + "$id": "5020", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "5019", + "$id": "5021", "kind": "enumvalue", "name": "mcp_call", "value": "mcp_call", @@ -62770,7 +62796,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -62788,13 +62814,13 @@ "isHttpMetadata": false }, { - "$id": "5020", + "$id": "5022", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5021", + "$id": "5023", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62814,13 +62840,13 @@ "isHttpMetadata": false }, { - "$id": "5022", + "$id": "5024", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5023", + "$id": "5025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62840,13 +62866,13 @@ "isHttpMetadata": false }, { - "$id": "5024", + "$id": "5026", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5025", + "$id": "5027", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62866,16 +62892,16 @@ "isHttpMetadata": false }, { - "$id": "5026", + "$id": "5028", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$id": "5027", + "$id": "5029", "kind": "nullable", "type": { - "$id": "5028", + "$id": "5030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62897,16 +62923,16 @@ "isHttpMetadata": false }, { - "$id": "5029", + "$id": "5031", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5030", + "$id": "5032", "kind": "nullable", "type": { - "$id": "5031", + "$id": "5033", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -62930,7 +62956,7 @@ ] }, "message": { - "$id": "5032", + "$id": "5034", "kind": "model", "name": "ResponsesMessageItemParam", "namespace": "OpenAI", @@ -62945,7 +62971,7 @@ } ], "discriminatorProperty": { - "$id": "5033", + "$id": "5035", "kind": "property", "name": "role", "serializedName": "role", @@ -62967,17 +62993,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "4737" + "$ref": "4739" }, "properties": [ { - "$id": "5034", + "$id": "5036", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$id": "5035", + "$id": "5037", "kind": "enumvalue", "name": "message", "value": "message", @@ -62985,7 +63011,7 @@ "$ref": "618" }, "enumType": { - "$ref": "4742" + "$ref": "4744" }, "decorators": [] }, @@ -63003,12 +63029,12 @@ "isHttpMetadata": false }, { - "$ref": "5033" + "$ref": "5035" } ], "discriminatedSubtypes": { "user": { - "$id": "5036", + "$id": "5038", "kind": "model", "name": "ResponsesUserMessageItemParam", "namespace": "OpenAI", @@ -63023,17 +63049,17 @@ } ], "baseModel": { - "$ref": "5032" + "$ref": "5034" }, "properties": [ { - "$id": "5037", + "$id": "5039", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$id": "5038", + "$id": "5040", "kind": "enumvalue", "name": "user", "value": "user", @@ -63041,7 +63067,7 @@ "$ref": "665" }, "enumType": { - "$id": "5039", + "$id": "5041", "kind": "enum", "decorators": [], "name": "ResponsesMessageRole", @@ -63049,7 +63075,7 @@ "namespace": "OpenAI", "doc": "The collection of valid roles for responses message items.", "valueType": { - "$id": "5040", + "$id": "5042", "kind": "string", "decorators": [], "name": "string", @@ -63058,55 +63084,55 @@ }, "values": [ { - "$id": "5041", + "$id": "5043", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "5040" + "$ref": "5042" }, "enumType": { - "$ref": "5039" + "$ref": "5041" } }, { - "$id": "5042", + "$id": "5044", "kind": "enumvalue", "decorators": [], "name": "developer", "value": "developer", "valueType": { - "$ref": "5040" + "$ref": "5042" }, "enumType": { - "$ref": "5039" + "$ref": "5041" } }, { - "$id": "5043", + "$id": "5045", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "5040" + "$ref": "5042" }, "enumType": { - "$ref": "5039" + "$ref": "5041" } }, { - "$id": "5044", + "$id": "5046", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "5040" + "$ref": "5042" }, "enumType": { - "$ref": "5039" + "$ref": "5041" } } ], @@ -63135,13 +63161,13 @@ "isHttpMetadata": false }, { - "$id": "5045", + "$id": "5047", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -63159,7 +63185,7 @@ ] }, "system": { - "$id": "5046", + "$id": "5048", "kind": "model", "name": "ResponsesSystemMessageItemParam", "namespace": "OpenAI", @@ -63174,17 +63200,17 @@ } ], "baseModel": { - "$ref": "5032" + "$ref": "5034" }, "properties": [ { - "$id": "5047", + "$id": "5049", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$id": "5048", + "$id": "5050", "kind": "enumvalue", "name": "system", "value": "system", @@ -63192,7 +63218,7 @@ "$ref": "665" }, "enumType": { - "$ref": "5039" + "$ref": "5041" }, "decorators": [] }, @@ -63210,13 +63236,13 @@ "isHttpMetadata": false }, { - "$id": "5049", + "$id": "5051", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -63234,7 +63260,7 @@ ] }, "developer": { - "$id": "5050", + "$id": "5052", "kind": "model", "name": "ResponsesDeveloperMessageItemParam", "namespace": "OpenAI", @@ -63249,17 +63275,17 @@ } ], "baseModel": { - "$ref": "5032" + "$ref": "5034" }, "properties": [ { - "$id": "5051", + "$id": "5053", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$id": "5052", + "$id": "5054", "kind": "enumvalue", "name": "developer", "value": "developer", @@ -63267,7 +63293,7 @@ "$ref": "665" }, "enumType": { - "$ref": "5039" + "$ref": "5041" }, "decorators": [] }, @@ -63285,13 +63311,13 @@ "isHttpMetadata": false }, { - "$id": "5053", + "$id": "5055", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -63309,7 +63335,7 @@ ] }, "assistant": { - "$id": "5054", + "$id": "5056", "kind": "model", "name": "ResponsesAssistantMessageItemParam", "namespace": "OpenAI", @@ -63324,17 +63350,17 @@ } ], "baseModel": { - "$ref": "5032" + "$ref": "5034" }, "properties": [ { - "$id": "5055", + "$id": "5057", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$id": "5056", + "$id": "5058", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -63342,7 +63368,7 @@ "$ref": "665" }, "enumType": { - "$ref": "5039" + "$ref": "5041" }, "decorators": [] }, @@ -63360,13 +63386,13 @@ "isHttpMetadata": false }, { - "$id": "5057", + "$id": "5059", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -63412,16 +63438,16 @@ "isHttpMetadata": false }, { - "$id": "5058", + "$id": "5060", "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": "5059", + "$id": "5061", "kind": "nullable", "type": { - "$id": "5060", + "$id": "5062", "kind": "array", "name": "ArrayIncludable", "valueType": { @@ -63446,16 +63472,16 @@ "isHttpMetadata": false }, { - "$id": "5061", + "$id": "5063", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5062", + "$id": "5064", "kind": "nullable", "type": { - "$id": "5063", + "$id": "5065", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -63477,16 +63503,16 @@ "isHttpMetadata": false }, { - "$id": "5064", + "$id": "5066", "kind": "property", "name": "store", "serializedName": "store", "doc": "Whether to store the generated model response for later retrieval via\nAPI.", "type": { - "$id": "5065", + "$id": "5067", "kind": "nullable", "type": { - "$id": "5066", + "$id": "5068", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -63508,16 +63534,16 @@ "isHttpMetadata": false }, { - "$id": "5067", + "$id": "5069", "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": "5068", + "$id": "5070", "kind": "nullable", "type": { - "$id": "5069", + "$id": "5071", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -63541,214 +63567,214 @@ ] }, { - "$ref": "4559" - }, - { - "$ref": "4576" + "$ref": "4561" }, { - "$ref": "4581" + "$ref": "4578" }, { "$ref": "4583" }, { - "$ref": "4595" + "$ref": "4585" }, { - "$ref": "4598" + "$ref": "4597" }, { - "$ref": "4601" + "$ref": "4600" }, { - "$ref": "4604" + "$ref": "4603" }, { - "$ref": "4607" + "$ref": "4606" }, { - "$ref": "4610" + "$ref": "4609" }, { - "$ref": "4622" + "$ref": "4612" }, { - "$ref": "4627" + "$ref": "4624" }, { "$ref": "4629" }, { - "$ref": "4644" + "$ref": "4631" }, { - "$ref": "4651" + "$ref": "4646" }, { - "$ref": "4656" + "$ref": "4653" }, { - "$ref": "4661" + "$ref": "4658" }, { - "$ref": "4671" + "$ref": "4663" }, { - "$ref": "4681" + "$ref": "4673" }, { - "$ref": "4688" + "$ref": "4683" }, { "$ref": "4690" }, { - "$ref": "4703" + "$ref": "4692" }, { - "$ref": "4714" + "$ref": "4705" }, { - "$ref": "4723" + "$ref": "4716" }, { - "$ref": "4731" + "$ref": "4725" }, { - "$ref": "4737" + "$ref": "4733" }, { "$ref": "4739" }, { - "$ref": "4765" + "$ref": "4741" }, { - "$ref": "4775" + "$ref": "4767" }, { - "$ref": "4781" + "$ref": "4777" }, { "$ref": "4783" }, { - "$ref": "4802" + "$ref": "4785" }, { - "$ref": "4809" + "$ref": "4804" }, { - "$ref": "4814" + "$ref": "4811" }, { - "$ref": "4819" + "$ref": "4816" }, { - "$ref": "4826" + "$ref": "4821" }, { - "$ref": "4829" + "$ref": "4828" }, { - "$ref": "4840" + "$ref": "4831" }, { - "$ref": "4845" + "$ref": "4842" }, { - "$ref": "4848" + "$ref": "4847" }, { - "$ref": "4854" + "$ref": "4850" }, { - "$ref": "4861" + "$ref": "4856" }, { - "$ref": "4868" + "$ref": "4863" }, { "$ref": "4870" }, { - "$ref": "4880" + "$ref": "4872" }, { - "$ref": "4883" + "$ref": "4882" }, { - "$ref": "4892" + "$ref": "4885" }, { - "$ref": "4899" + "$ref": "4894" }, { - "$ref": "4907" + "$ref": "4901" }, { "$ref": "4909" }, { - "$ref": "4917" + "$ref": "4911" }, { - "$ref": "4922" + "$ref": "4919" }, { - "$ref": "4928" + "$ref": "4924" }, { - "$ref": "4937" + "$ref": "4930" }, { "$ref": "4939" }, { - "$ref": "4948" + "$ref": "4941" + }, + { + "$ref": "4950" }, { - "$ref": "4953" + "$ref": "4955" }, { - "$ref": "4959" + "$ref": "4961" }, { - "$ref": "4972" + "$ref": "4974" }, { - "$ref": "4977" + "$ref": "4979" }, { - "$ref": "4984" + "$ref": "4986" }, { - "$ref": "4998" + "$ref": "5000" }, { - "$ref": "5007" + "$ref": "5009" }, { - "$ref": "5017" + "$ref": "5019" }, { - "$ref": "5032" + "$ref": "5034" }, { - "$ref": "5036" + "$ref": "5038" }, { - "$ref": "5046" + "$ref": "5048" }, { - "$ref": "5050" + "$ref": "5052" }, { - "$ref": "5054" + "$ref": "5056" }, { - "$id": "5070", + "$id": "5072", "kind": "model", "name": "Response", "namespace": "OpenAI", @@ -63762,7 +63788,7 @@ ], "properties": [ { - "$id": "5071", + "$id": "5073", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -63784,16 +63810,16 @@ "isHttpMetadata": false }, { - "$id": "5072", + "$id": "5074", "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": "5073", + "$id": "5075", "kind": "nullable", "type": { - "$id": "5074", + "$id": "5076", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -63815,16 +63841,16 @@ "isHttpMetadata": false }, { - "$id": "5075", + "$id": "5077", "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": "5076", + "$id": "5078", "kind": "nullable", "type": { - "$id": "5077", + "$id": "5079", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -63846,16 +63872,16 @@ "isHttpMetadata": false }, { - "$id": "5078", + "$id": "5080", "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": "5079", + "$id": "5081", "kind": "nullable", "type": { - "$id": "5080", + "$id": "5082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -63877,7 +63903,7 @@ "isHttpMetadata": false }, { - "$id": "5081", + "$id": "5083", "kind": "property", "name": "service_tier", "serializedName": "service_tier", @@ -63898,13 +63924,13 @@ "isHttpMetadata": false }, { - "$id": "5082", + "$id": "5084", "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": "4554" + "$ref": "4556" }, "optional": true, "readOnly": false, @@ -63920,7 +63946,7 @@ "isHttpMetadata": false }, { - "$id": "5083", + "$id": "5085", "kind": "property", "name": "model", "serializedName": "model", @@ -63942,12 +63968,12 @@ "isHttpMetadata": false }, { - "$id": "5084", + "$id": "5086", "kind": "property", "name": "reasoning", "serializedName": "reasoning", "type": { - "$ref": "4558" + "$ref": "4560" }, "optional": true, "readOnly": false, @@ -63963,13 +63989,13 @@ "isHttpMetadata": false }, { - "$id": "5085", + "$id": "5087", "kind": "property", "name": "background", "serializedName": "background", "doc": "Whether to run the model response in the background.\n[Learn more](/docs/guides/background).", "type": { - "$ref": "4567" + "$ref": "4569" }, "optional": true, "readOnly": false, @@ -63985,13 +64011,13 @@ "isHttpMetadata": false }, { - "$id": "5086", + "$id": "5088", "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": "4570" + "$ref": "4572" }, "optional": true, "readOnly": false, @@ -64007,13 +64033,13 @@ "isHttpMetadata": false }, { - "$id": "5087", + "$id": "5089", "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": "4573" + "$ref": "4575" }, "optional": true, "readOnly": false, @@ -64029,13 +64055,13 @@ "isHttpMetadata": false }, { - "$id": "5088", + "$id": "5090", "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": "4576" + "$ref": "4578" }, "optional": true, "readOnly": false, @@ -64051,13 +64077,13 @@ "isHttpMetadata": false }, { - "$id": "5089", + "$id": "5091", "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": "4277" + "$ref": "4279" }, "optional": true, "readOnly": false, @@ -64073,13 +64099,13 @@ "isHttpMetadata": false }, { - "$id": "5090", + "$id": "5092", "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": "4580" + "$ref": "4582" }, "optional": true, "readOnly": false, @@ -64095,13 +64121,13 @@ "isHttpMetadata": false }, { - "$id": "5091", + "$id": "5093", "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": "4616" + "$ref": "4618" }, "optional": true, "readOnly": false, @@ -64117,13 +64143,13 @@ "isHttpMetadata": false }, { - "$id": "5092", + "$id": "5094", "kind": "property", "name": "id", "serializedName": "id", "doc": "Unique identifier for this Response.", "type": { - "$id": "5093", + "$id": "5095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64143,7 +64169,7 @@ "isHttpMetadata": false }, { - "$id": "5094", + "$id": "5096", "kind": "property", "name": "object", "serializedName": "object", @@ -64165,7 +64191,7 @@ "isHttpMetadata": false }, { - "$id": "5095", + "$id": "5097", "kind": "property", "name": "status", "serializedName": "status", @@ -64187,18 +64213,18 @@ "isHttpMetadata": false }, { - "$id": "5096", + "$id": "5098", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "Unix timestamp (in seconds) of when this Response was created.", "type": { - "$id": "5097", + "$id": "5099", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5098", + "$id": "5100", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -64221,15 +64247,15 @@ "isHttpMetadata": false }, { - "$id": "5099", + "$id": "5101", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$id": "5100", + "$id": "5102", "kind": "nullable", "type": { - "$id": "5101", + "$id": "5103", "kind": "model", "name": "ResponseError", "namespace": "OpenAI", @@ -64244,7 +64270,7 @@ ], "properties": [ { - "$id": "5102", + "$id": "5104", "kind": "property", "name": "code", "serializedName": "code", @@ -64265,13 +64291,13 @@ "isHttpMetadata": false }, { - "$id": "5103", + "$id": "5105", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "5104", + "$id": "5106", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64308,16 +64334,16 @@ "isHttpMetadata": false }, { - "$id": "5105", + "$id": "5107", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details about why the response is incomplete.", "type": { - "$id": "5106", + "$id": "5108", "kind": "nullable", "type": { - "$id": "5107", + "$id": "5109", "kind": "model", "name": "ResponseIncompleteDetails1", "namespace": "OpenAI", @@ -64326,7 +64352,7 @@ "decorators": [], "properties": [ { - "$id": "5108", + "$id": "5110", "kind": "property", "name": "reason", "serializedName": "reason", @@ -64365,17 +64391,17 @@ "isHttpMetadata": false }, { - "$id": "5109", + "$id": "5111", "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": "5110", + "$id": "5112", "kind": "array", "name": "ArrayItemResource", "valueType": { - "$id": "5111", + "$id": "5113", "kind": "model", "name": "ItemResource", "namespace": "OpenAI", @@ -64389,7 +64415,7 @@ } ], "discriminatorProperty": { - "$id": "5112", + "$id": "5114", "kind": "property", "name": "type", "serializedName": "type", @@ -64411,15 +64437,15 @@ }, "properties": [ { - "$ref": "5112" + "$ref": "5114" }, { - "$id": "5113", + "$id": "5115", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5114", + "$id": "5116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64441,7 +64467,7 @@ ], "discriminatedSubtypes": { "file_search_call": { - "$id": "5115", + "$id": "5117", "kind": "model", "name": "FileSearchToolCallItemResource", "namespace": "OpenAI", @@ -64456,16 +64482,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5116", + "$id": "5118", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4741" + "$ref": "4743" }, "optional": false, "readOnly": false, @@ -64481,7 +64507,7 @@ "isHttpMetadata": false }, { - "$id": "5117", + "$id": "5119", "kind": "property", "name": "status", "serializedName": "status", @@ -64503,7 +64529,7 @@ "isHttpMetadata": false }, { - "$id": "5118", + "$id": "5120", "kind": "property", "name": "queries", "serializedName": "queries", @@ -64525,13 +64551,13 @@ "isHttpMetadata": false }, { - "$id": "5119", + "$id": "5121", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search tool call.", "type": { - "$ref": "4763" + "$ref": "4765" }, "optional": true, "readOnly": false, @@ -64549,7 +64575,7 @@ ] }, "computer_call": { - "$id": "5120", + "$id": "5122", "kind": "model", "name": "ComputerToolCallItemResource", "namespace": "OpenAI", @@ -64564,16 +64590,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5121", + "$id": "5123", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4777" + "$ref": "4779" }, "optional": false, "readOnly": false, @@ -64589,7 +64615,7 @@ "isHttpMetadata": false }, { - "$id": "5122", + "$id": "5124", "kind": "property", "name": "status", "serializedName": "status", @@ -64611,13 +64637,13 @@ "isHttpMetadata": false }, { - "$id": "5123", + "$id": "5125", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "An identifier used when responding to the tool call with output.", "type": { - "$id": "5124", + "$id": "5126", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64637,12 +64663,12 @@ "isHttpMetadata": false }, { - "$id": "5125", + "$id": "5127", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4781" + "$ref": "4783" }, "optional": false, "readOnly": false, @@ -64658,13 +64684,13 @@ "isHttpMetadata": false }, { - "$id": "5126", + "$id": "5128", "kind": "property", "name": "pending_safety_checks", "serializedName": "pending_safety_checks", "doc": "The pending safety checks for the computer call.", "type": { - "$ref": "4853" + "$ref": "4855" }, "optional": false, "readOnly": false, @@ -64682,7 +64708,7 @@ ] }, "computer_call_output": { - "$id": "5127", + "$id": "5129", "kind": "model", "name": "ComputerToolCallOutputItemResource", "namespace": "OpenAI", @@ -64697,16 +64723,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5128", + "$id": "5130", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4863" + "$ref": "4865" }, "optional": false, "readOnly": false, @@ -64722,7 +64748,7 @@ "isHttpMetadata": false }, { - "$id": "5129", + "$id": "5131", "kind": "property", "name": "status", "serializedName": "status", @@ -64744,13 +64770,13 @@ "isHttpMetadata": false }, { - "$id": "5130", + "$id": "5132", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the computer tool call that produced the output.", "type": { - "$id": "5131", + "$id": "5133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64770,13 +64796,13 @@ "isHttpMetadata": false }, { - "$id": "5132", + "$id": "5134", "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": "4853" + "$ref": "4855" }, "optional": true, "readOnly": false, @@ -64792,12 +64818,12 @@ "isHttpMetadata": false }, { - "$id": "5133", + "$id": "5135", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$ref": "4868" + "$ref": "4870" }, "optional": false, "readOnly": false, @@ -64815,7 +64841,7 @@ ] }, "web_search_call": { - "$id": "5134", + "$id": "5136", "kind": "model", "name": "WebSearchToolCallItemResource", "namespace": "OpenAI", @@ -64830,16 +64856,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5135", + "$id": "5137", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4882" + "$ref": "4884" }, "optional": false, "readOnly": false, @@ -64855,7 +64881,7 @@ "isHttpMetadata": false }, { - "$id": "5136", + "$id": "5138", "kind": "property", "name": "status", "serializedName": "status", @@ -64879,7 +64905,7 @@ ] }, "function_call": { - "$id": "5137", + "$id": "5139", "kind": "model", "name": "FunctionToolCallItemResource", "namespace": "OpenAI", @@ -64894,16 +64920,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5138", + "$id": "5140", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4885" + "$ref": "4887" }, "optional": false, "readOnly": false, @@ -64919,7 +64945,7 @@ "isHttpMetadata": false }, { - "$id": "5139", + "$id": "5141", "kind": "property", "name": "status", "serializedName": "status", @@ -64941,13 +64967,13 @@ "isHttpMetadata": false }, { - "$id": "5140", + "$id": "5142", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5141", + "$id": "5143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64967,13 +64993,13 @@ "isHttpMetadata": false }, { - "$id": "5142", + "$id": "5144", "kind": "property", "name": "FunctionName", "serializedName": "name", "doc": "The name of the function to run.", "type": { - "$id": "5143", + "$id": "5145", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -64993,13 +65019,13 @@ "isHttpMetadata": false }, { - "$id": "5144", + "$id": "5146", "kind": "property", "name": "FunctionArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments to pass to the function.", "type": { - "$id": "5145", + "$id": "5147", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -65021,7 +65047,7 @@ ] }, "function_call_output": { - "$id": "5146", + "$id": "5148", "kind": "model", "name": "FunctionToolCallOutputItemResource", "namespace": "OpenAI", @@ -65036,16 +65062,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5147", + "$id": "5149", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4894" + "$ref": "4896" }, "optional": false, "readOnly": false, @@ -65061,7 +65087,7 @@ "isHttpMetadata": false }, { - "$id": "5148", + "$id": "5150", "kind": "property", "name": "status", "serializedName": "status", @@ -65083,13 +65109,13 @@ "isHttpMetadata": false }, { - "$id": "5149", + "$id": "5151", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the function tool call generated by the model.", "type": { - "$id": "5150", + "$id": "5152", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65109,13 +65135,13 @@ "isHttpMetadata": false }, { - "$id": "5151", + "$id": "5153", "kind": "property", "name": "FunctionOutput", "serializedName": "output", "doc": "A JSON string of the output of the function tool call.", "type": { - "$id": "5152", + "$id": "5154", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65137,7 +65163,7 @@ ] }, "reasoning": { - "$id": "5153", + "$id": "5155", "kind": "model", "name": "ReasoningItemResource", "namespace": "OpenAI", @@ -65152,16 +65178,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5154", + "$id": "5156", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4901" + "$ref": "4903" }, "optional": false, "readOnly": false, @@ -65177,7 +65203,7 @@ "isHttpMetadata": false }, { - "$id": "5155", + "$id": "5157", "kind": "property", "name": "status", "serializedName": "status", @@ -65199,13 +65225,13 @@ "isHttpMetadata": false }, { - "$id": "5156", + "$id": "5158", "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": "4903" + "$ref": "4905" }, "optional": true, "readOnly": false, @@ -65221,13 +65247,13 @@ "isHttpMetadata": false }, { - "$id": "5157", + "$id": "5159", "kind": "property", "name": "SummaryParts", "serializedName": "summary", "doc": "Reasoning text contents.", "type": { - "$ref": "4906" + "$ref": "4908" }, "optional": false, "readOnly": false, @@ -65245,7 +65271,7 @@ ] }, "image_generation_call": { - "$id": "5158", + "$id": "5160", "kind": "model", "name": "ImageGenToolCallItemResource", "namespace": "OpenAI", @@ -65260,16 +65286,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5159", + "$id": "5161", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4924" + "$ref": "4926" }, "optional": false, "readOnly": false, @@ -65285,7 +65311,7 @@ "isHttpMetadata": false }, { - "$id": "5160", + "$id": "5162", "kind": "property", "name": "status", "serializedName": "status", @@ -65306,13 +65332,13 @@ "isHttpMetadata": false }, { - "$id": "5161", + "$id": "5163", "kind": "property", "name": "GeneratedImageBytes", "serializedName": "result", "doc": "The generated image encoded in base64.", "type": { - "$ref": "4926" + "$ref": "4928" }, "optional": false, "readOnly": false, @@ -65330,7 +65356,7 @@ ] }, "code_interpreter_call": { - "$id": "5162", + "$id": "5164", "kind": "model", "name": "CodeInterpreterToolCallItemResource", "namespace": "OpenAI", @@ -65345,16 +65371,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5163", + "$id": "5165", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4930" + "$ref": "4932" }, "optional": false, "readOnly": false, @@ -65370,7 +65396,7 @@ "isHttpMetadata": false }, { - "$id": "5164", + "$id": "5166", "kind": "property", "name": "status", "serializedName": "status", @@ -65391,13 +65417,13 @@ "isHttpMetadata": false }, { - "$id": "5165", + "$id": "5167", "kind": "property", "name": "container_id", "serializedName": "container_id", "doc": "The ID of the container used to run the code.", "type": { - "$id": "5166", + "$id": "5168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65417,13 +65443,13 @@ "isHttpMetadata": false }, { - "$id": "5167", + "$id": "5169", "kind": "property", "name": "code", "serializedName": "code", "doc": "The code to run.", "type": { - "$id": "5168", + "$id": "5170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65443,13 +65469,13 @@ "isHttpMetadata": false }, { - "$id": "5169", + "$id": "5171", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs of the code interpreter tool call.", "type": { - "$ref": "4936" + "$ref": "4938" }, "optional": true, "readOnly": false, @@ -65467,7 +65493,7 @@ ] }, "local_shell_call": { - "$id": "5170", + "$id": "5172", "kind": "model", "name": "LocalShellToolCallItemResource", "namespace": "OpenAI", @@ -65482,16 +65508,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5171", + "$id": "5173", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4955" + "$ref": "4957" }, "optional": false, "readOnly": false, @@ -65507,7 +65533,7 @@ "isHttpMetadata": false }, { - "$id": "5172", + "$id": "5174", "kind": "property", "name": "status", "serializedName": "status", @@ -65528,13 +65554,13 @@ "isHttpMetadata": false }, { - "$id": "5173", + "$id": "5175", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The unique ID of the local shell tool call generated by the model.", "type": { - "$id": "5174", + "$id": "5176", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65554,12 +65580,12 @@ "isHttpMetadata": false }, { - "$id": "5175", + "$id": "5177", "kind": "property", "name": "action", "serializedName": "action", "type": { - "$ref": "4959" + "$ref": "4961" }, "optional": false, "readOnly": false, @@ -65577,7 +65603,7 @@ ] }, "local_shell_call_output": { - "$id": "5176", + "$id": "5178", "kind": "model", "name": "LocalShellToolCallOutputItemResource", "namespace": "OpenAI", @@ -65592,16 +65618,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5177", + "$id": "5179", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4974" + "$ref": "4976" }, "optional": false, "readOnly": false, @@ -65617,7 +65643,7 @@ "isHttpMetadata": false }, { - "$id": "5178", + "$id": "5180", "kind": "property", "name": "status", "serializedName": "status", @@ -65638,13 +65664,13 @@ "isHttpMetadata": false }, { - "$id": "5179", + "$id": "5181", "kind": "property", "name": "output", "serializedName": "output", "doc": "A JSON string of the output of the local shell tool call.", "type": { - "$id": "5180", + "$id": "5182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65666,7 +65692,7 @@ ] }, "mcp_list_tools": { - "$id": "5181", + "$id": "5183", "kind": "model", "name": "MCPListToolsItemResource", "namespace": "OpenAI", @@ -65681,16 +65707,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5182", + "$id": "5184", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4979" + "$ref": "4981" }, "optional": false, "readOnly": false, @@ -65706,13 +65732,13 @@ "isHttpMetadata": false }, { - "$id": "5183", + "$id": "5185", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server.", "type": { - "$id": "5184", + "$id": "5186", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65732,13 +65758,13 @@ "isHttpMetadata": false }, { - "$id": "5185", + "$id": "5187", "kind": "property", "name": "ToolDefinitions", "serializedName": "tools", "doc": "The tools available on the server.", "type": { - "$ref": "4983" + "$ref": "4985" }, "optional": false, "readOnly": false, @@ -65754,16 +65780,16 @@ "isHttpMetadata": false }, { - "$id": "5186", + "$id": "5188", "kind": "property", "name": "error", "serializedName": "error", "doc": "Error message if the server could not list tools.", "type": { - "$id": "5187", + "$id": "5189", "kind": "nullable", "type": { - "$id": "5188", + "$id": "5190", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -65787,7 +65813,7 @@ ] }, "mcp_approval_request": { - "$id": "5189", + "$id": "5191", "kind": "model", "name": "MCPApprovalRequestItemResource", "namespace": "OpenAI", @@ -65802,16 +65828,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5190", + "$id": "5192", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5000" + "$ref": "5002" }, "optional": false, "readOnly": false, @@ -65827,13 +65853,13 @@ "isHttpMetadata": false }, { - "$id": "5191", + "$id": "5193", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server making the request.", "type": { - "$id": "5192", + "$id": "5194", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65853,13 +65879,13 @@ "isHttpMetadata": false }, { - "$id": "5193", + "$id": "5195", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool to run.", "type": { - "$id": "5194", + "$id": "5196", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65879,13 +65905,13 @@ "isHttpMetadata": false }, { - "$id": "5195", + "$id": "5197", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of arguments for the tool.", "type": { - "$id": "5196", + "$id": "5198", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -65907,7 +65933,7 @@ ] }, "mcp_approval_response": { - "$id": "5197", + "$id": "5199", "kind": "model", "name": "MCPApprovalResponseItemResource", "namespace": "OpenAI", @@ -65922,16 +65948,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5198", + "$id": "5200", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5009" + "$ref": "5011" }, "optional": false, "readOnly": false, @@ -65947,13 +65973,13 @@ "isHttpMetadata": false }, { - "$id": "5199", + "$id": "5201", "kind": "property", "name": "approval_request_id", "serializedName": "approval_request_id", "doc": "The ID of the approval request being answered.", "type": { - "$id": "5200", + "$id": "5202", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -65973,13 +65999,13 @@ "isHttpMetadata": false }, { - "$id": "5201", + "$id": "5203", "kind": "property", "name": "Approved", "serializedName": "approve", "doc": "Whether the request was approved.", "type": { - "$id": "5202", + "$id": "5204", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -65999,13 +66025,13 @@ "isHttpMetadata": false }, { - "$id": "5203", + "$id": "5205", "kind": "property", "name": "reason", "serializedName": "reason", "doc": "Optional reason for the decision.", "type": { - "$ref": "5015" + "$ref": "5017" }, "optional": true, "readOnly": false, @@ -66023,7 +66049,7 @@ ] }, "mcp_call": { - "$id": "5204", + "$id": "5206", "kind": "model", "name": "MCPCallItemResource", "namespace": "OpenAI", @@ -66038,16 +66064,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5205", + "$id": "5207", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "5019" + "$ref": "5021" }, "optional": false, "readOnly": false, @@ -66063,13 +66089,13 @@ "isHttpMetadata": false }, { - "$id": "5206", + "$id": "5208", "kind": "property", "name": "server_label", "serializedName": "server_label", "doc": "The label of the MCP server running the tool.", "type": { - "$id": "5207", + "$id": "5209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66089,13 +66115,13 @@ "isHttpMetadata": false }, { - "$id": "5208", + "$id": "5210", "kind": "property", "name": "ToolName", "serializedName": "name", "doc": "The name of the tool that was run.", "type": { - "$id": "5209", + "$id": "5211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66115,13 +66141,13 @@ "isHttpMetadata": false }, { - "$id": "5210", + "$id": "5212", "kind": "property", "name": "ToolArguments", "serializedName": "arguments", "doc": "A JSON string of the arguments passed to the tool.", "type": { - "$id": "5211", + "$id": "5213", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -66141,13 +66167,13 @@ "isHttpMetadata": false }, { - "$id": "5212", + "$id": "5214", "kind": "property", "name": "ToolOutput", "serializedName": "output", "doc": "The output from the tool call.", "type": { - "$ref": "5027" + "$ref": "5029" }, "optional": true, "readOnly": false, @@ -66163,16 +66189,16 @@ "isHttpMetadata": false }, { - "$id": "5213", + "$id": "5215", "kind": "property", "name": "error", "serializedName": "error", "doc": "The error from the tool call, if any.", "type": { - "$id": "5214", + "$id": "5216", "kind": "nullable", "type": { - "$id": "5215", + "$id": "5217", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -66196,7 +66222,7 @@ ] }, "message": { - "$id": "5216", + "$id": "5218", "kind": "model", "name": "ResponsesMessageItemResource", "namespace": "OpenAI", @@ -66211,7 +66237,7 @@ } ], "discriminatorProperty": { - "$id": "5217", + "$id": "5219", "kind": "property", "name": "role", "serializedName": "role", @@ -66233,17 +66259,17 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5218", + "$id": "5220", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the responses item, which is always 'message'.", "type": { - "$ref": "5035" + "$ref": "5037" }, "optional": false, "readOnly": false, @@ -66259,7 +66285,7 @@ "isHttpMetadata": false }, { - "$id": "5219", + "$id": "5221", "kind": "property", "name": "status", "serializedName": "status", @@ -66281,12 +66307,12 @@ "isHttpMetadata": false }, { - "$ref": "5217" + "$ref": "5219" } ], "discriminatedSubtypes": { "user": { - "$id": "5220", + "$id": "5222", "kind": "model", "name": "ResponsesUserMessageItemResource", "namespace": "OpenAI", @@ -66301,17 +66327,17 @@ } ], "baseModel": { - "$ref": "5216" + "$ref": "5218" }, "properties": [ { - "$id": "5221", + "$id": "5223", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `user`.", "type": { - "$ref": "5038" + "$ref": "5040" }, "optional": false, "readOnly": false, @@ -66327,13 +66353,13 @@ "isHttpMetadata": false }, { - "$id": "5222", + "$id": "5224", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -66351,7 +66377,7 @@ ] }, "system": { - "$id": "5223", + "$id": "5225", "kind": "model", "name": "ResponsesSystemMessageItemResource", "namespace": "OpenAI", @@ -66366,17 +66392,17 @@ } ], "baseModel": { - "$ref": "5216" + "$ref": "5218" }, "properties": [ { - "$id": "5224", + "$id": "5226", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `system`.", "type": { - "$ref": "5048" + "$ref": "5050" }, "optional": false, "readOnly": false, @@ -66392,13 +66418,13 @@ "isHttpMetadata": false }, { - "$id": "5225", + "$id": "5227", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -66416,7 +66442,7 @@ ] }, "developer": { - "$id": "5226", + "$id": "5228", "kind": "model", "name": "ResponsesDeveloperMessageItemResource", "namespace": "OpenAI", @@ -66431,17 +66457,17 @@ } ], "baseModel": { - "$ref": "5216" + "$ref": "5218" }, "properties": [ { - "$id": "5227", + "$id": "5229", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `developer`.", "type": { - "$ref": "5052" + "$ref": "5054" }, "optional": false, "readOnly": false, @@ -66457,13 +66483,13 @@ "isHttpMetadata": false }, { - "$id": "5228", + "$id": "5230", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -66481,7 +66507,7 @@ ] }, "assistant": { - "$id": "5229", + "$id": "5231", "kind": "model", "name": "ResponsesAssistantMessageItemResource", "namespace": "OpenAI", @@ -66496,17 +66522,17 @@ } ], "baseModel": { - "$ref": "5216" + "$ref": "5218" }, "properties": [ { - "$id": "5230", + "$id": "5232", "kind": "property", "name": "role", "serializedName": "role", "doc": "The role of the message, which is always `assistant`.", "type": { - "$ref": "5056" + "$ref": "5058" }, "optional": false, "readOnly": false, @@ -66522,13 +66548,13 @@ "isHttpMetadata": false }, { - "$id": "5231", + "$id": "5233", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content associated with the message.", "type": { - "$ref": "4626" + "$ref": "4628" }, "optional": false, "readOnly": false, @@ -66548,7 +66574,7 @@ } }, "item_reference": { - "$id": "5232", + "$id": "5234", "kind": "model", "name": "DotNetItemReferenceItemResource", "namespace": "OpenAI", @@ -66563,16 +66589,16 @@ } ], "baseModel": { - "$ref": "5111" + "$ref": "5113" }, "properties": [ { - "$id": "5233", + "$id": "5235", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "4919" + "$ref": "4921" }, "optional": false, "readOnly": false, @@ -66608,16 +66634,16 @@ "isHttpMetadata": false }, { - "$id": "5234", + "$id": "5236", "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": "5235", + "$id": "5237", "kind": "nullable", "type": { - "$id": "5236", + "$id": "5238", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -66639,12 +66665,12 @@ "isHttpMetadata": false }, { - "$id": "5237", + "$id": "5239", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "5238", + "$id": "5240", "kind": "model", "name": "ResponseUsage", "namespace": "OpenAI", @@ -66659,13 +66685,13 @@ ], "properties": [ { - "$id": "5239", + "$id": "5241", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens.", "type": { - "$id": "5240", + "$id": "5242", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66685,13 +66711,13 @@ "isHttpMetadata": false }, { - "$id": "5241", + "$id": "5243", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "A detailed breakdown of the input tokens.", "type": { - "$id": "5242", + "$id": "5244", "kind": "model", "name": "ResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -66700,13 +66726,13 @@ "decorators": [], "properties": [ { - "$id": "5243", + "$id": "5245", "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": "5244", + "$id": "5246", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66741,13 +66767,13 @@ "isHttpMetadata": false }, { - "$id": "5245", + "$id": "5247", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens.", "type": { - "$id": "5246", + "$id": "5248", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66767,13 +66793,13 @@ "isHttpMetadata": false }, { - "$id": "5247", + "$id": "5249", "kind": "property", "name": "output_tokens_details", "serializedName": "output_tokens_details", "doc": "A detailed breakdown of the output tokens.", "type": { - "$id": "5248", + "$id": "5250", "kind": "model", "name": "ResponseUsageOutputTokensDetails", "namespace": "OpenAI", @@ -66782,13 +66808,13 @@ "decorators": [], "properties": [ { - "$id": "5249", + "$id": "5251", "kind": "property", "name": "reasoning_tokens", "serializedName": "reasoning_tokens", "doc": "The number of reasoning tokens.", "type": { - "$id": "5250", + "$id": "5252", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66823,13 +66849,13 @@ "isHttpMetadata": false }, { - "$id": "5251", + "$id": "5253", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens used.", "type": { - "$id": "5252", + "$id": "5254", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -66864,13 +66890,13 @@ "isHttpMetadata": false }, { - "$id": "5253", + "$id": "5255", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "doc": "Whether to allow the model to run tool calls in parallel.", "type": { - "$id": "5254", + "$id": "5256", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -66892,88 +66918,88 @@ ] }, { - "$ref": "5101" + "$ref": "5103" }, { - "$ref": "5107" + "$ref": "5109" }, { - "$ref": "5111" + "$ref": "5113" }, { - "$ref": "5115" + "$ref": "5117" }, { - "$ref": "5120" + "$ref": "5122" }, { - "$ref": "5127" + "$ref": "5129" }, { - "$ref": "5134" + "$ref": "5136" }, { - "$ref": "5137" + "$ref": "5139" }, { - "$ref": "5146" + "$ref": "5148" }, { - "$ref": "5153" + "$ref": "5155" }, { - "$ref": "5158" + "$ref": "5160" }, { - "$ref": "5162" + "$ref": "5164" }, { - "$ref": "5170" + "$ref": "5172" }, { - "$ref": "5176" + "$ref": "5178" }, { - "$ref": "5181" + "$ref": "5183" }, { - "$ref": "5189" + "$ref": "5191" }, { - "$ref": "5197" + "$ref": "5199" }, { - "$ref": "5204" + "$ref": "5206" }, { - "$ref": "5216" + "$ref": "5218" }, { - "$ref": "5220" + "$ref": "5222" }, { - "$ref": "5223" + "$ref": "5225" }, { - "$ref": "5226" + "$ref": "5228" }, { - "$ref": "5229" + "$ref": "5231" }, { - "$ref": "5232" + "$ref": "5234" }, { - "$ref": "5238" + "$ref": "5240" }, { - "$ref": "5242" + "$ref": "5244" }, { - "$ref": "5248" + "$ref": "5250" }, { - "$id": "5255", + "$id": "5257", "kind": "model", "name": "ResponseStreamEvent", "namespace": "OpenAI", @@ -66986,7 +67012,7 @@ } ], "discriminatorProperty": { - "$id": "5256", + "$id": "5258", "kind": "property", "name": "type", "type": { @@ -67003,15 +67029,15 @@ }, "properties": [ { - "$ref": "5256" + "$ref": "5258" }, { - "$id": "5257", + "$id": "5259", "kind": "property", "name": "sequence_number", "doc": "The sequence number for this event.", "type": { - "$id": "5258", + "$id": "5260", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67029,7 +67055,7 @@ ], "discriminatedSubtypes": { "response.completed": { - "$id": "5259", + "$id": "5261", "kind": "model", "name": "ResponseCompletedEvent", "namespace": "OpenAI", @@ -67044,16 +67070,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5260", + "$id": "5262", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.completed`.", "type": { - "$id": "5261", + "$id": "5263", "kind": "enumvalue", "name": "response_completed", "value": "response.completed", @@ -67061,14 +67087,14 @@ "$ref": "774" }, "enumType": { - "$id": "5262", + "$id": "5264", "kind": "enum", "decorators": [], "name": "ResponseStreamEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5263", + "$id": "5265", "kind": "string", "decorators": [], "name": "string", @@ -67077,692 +67103,692 @@ }, "values": [ { - "$id": "5264", + "$id": "5266", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5265", + "$id": "5267", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5266", + "$id": "5268", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5267", + "$id": "5269", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5268", + "$id": "5270", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5269", + "$id": "5271", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5270", + "$id": "5272", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5271", + "$id": "5273", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5272", + "$id": "5274", "kind": "enumvalue", "decorators": [], "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5273", + "$id": "5275", "kind": "enumvalue", "decorators": [], "name": "response_completed", "value": "response.completed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5274", + "$id": "5276", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5275", + "$id": "5277", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5276", + "$id": "5278", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5277", + "$id": "5279", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5278", + "$id": "5280", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5279", + "$id": "5281", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5280", + "$id": "5282", "kind": "enumvalue", "decorators": [], "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5281", + "$id": "5283", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5282", + "$id": "5284", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5283", + "$id": "5285", "kind": "enumvalue", "decorators": [], "name": "response_in_progress", "value": "response.in_progress", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5284", + "$id": "5286", "kind": "enumvalue", "decorators": [], "name": "response_failed", "value": "response.failed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5285", + "$id": "5287", "kind": "enumvalue", "decorators": [], "name": "response_incomplete", "value": "response.incomplete", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5286", + "$id": "5288", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5287", + "$id": "5289", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5288", + "$id": "5290", "kind": "enumvalue", "decorators": [], "name": "response_refusal_delta", "value": "response.refusal.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5289", + "$id": "5291", "kind": "enumvalue", "decorators": [], "name": "response_refusal_done", "value": "response.refusal.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5290", + "$id": "5292", "kind": "enumvalue", "decorators": [], "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5291", + "$id": "5293", "kind": "enumvalue", "decorators": [], "name": "response_output_text_delta", "value": "response.output_text.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5292", + "$id": "5294", "kind": "enumvalue", "decorators": [], "name": "response_output_text_done", "value": "response.output_text.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5293", + "$id": "5295", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5294", + "$id": "5296", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5295", + "$id": "5297", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5296", + "$id": "5298", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5297", + "$id": "5299", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5298", + "$id": "5300", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5299", + "$id": "5301", "kind": "enumvalue", "decorators": [], "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5300", + "$id": "5302", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5301", + "$id": "5303", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5302", + "$id": "5304", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5303", + "$id": "5305", "kind": "enumvalue", "decorators": [], "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5304", + "$id": "5306", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5305", + "$id": "5307", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5306", + "$id": "5308", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5307", + "$id": "5309", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5308", + "$id": "5310", "kind": "enumvalue", "decorators": [], "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5309", + "$id": "5311", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5310", + "$id": "5312", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5311", + "$id": "5313", "kind": "enumvalue", "decorators": [], "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5312", + "$id": "5314", "kind": "enumvalue", "decorators": [], "name": "response_queued", "value": "response.queued", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5313", + "$id": "5315", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_delta", "value": "response.reasoning.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5314", + "$id": "5316", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_done", "value": "response.reasoning.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5315", + "$id": "5317", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } }, { - "$id": "5316", + "$id": "5318", "kind": "enumvalue", "decorators": [], "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", "valueType": { - "$ref": "5263" + "$ref": "5265" }, "enumType": { - "$ref": "5262" + "$ref": "5264" } } ], @@ -67787,12 +67813,12 @@ "isHttpMetadata": false }, { - "$id": "5317", + "$id": "5319", "kind": "property", "name": "response", "doc": "Properties of the completed response.", "type": { - "$ref": "5070" + "$ref": "5072" }, "optional": false, "readOnly": false, @@ -67806,7 +67832,7 @@ ] }, "response.content_part.added": { - "$id": "5318", + "$id": "5320", "kind": "model", "name": "ResponseContentPartAddedEvent", "namespace": "OpenAI", @@ -67821,16 +67847,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5319", + "$id": "5321", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.added`.", "type": { - "$id": "5320", + "$id": "5322", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -67838,7 +67864,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -67852,12 +67878,12 @@ "isHttpMetadata": false }, { - "$id": "5321", + "$id": "5323", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5322", + "$id": "5324", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -67873,12 +67899,12 @@ "isHttpMetadata": false }, { - "$id": "5323", + "$id": "5325", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5324", + "$id": "5326", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67894,12 +67920,12 @@ "isHttpMetadata": false }, { - "$id": "5325", + "$id": "5327", "kind": "property", "name": "content_index", "doc": "The index of the content part that was added.", "type": { - "$id": "5326", + "$id": "5328", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -67915,12 +67941,12 @@ "isHttpMetadata": false }, { - "$id": "5327", + "$id": "5329", "kind": "property", "name": "part", "doc": "The content part that was added.", "type": { - "$ref": "4627" + "$ref": "4629" }, "optional": false, "readOnly": false, @@ -67934,7 +67960,7 @@ ] }, "response.content_part.done": { - "$id": "5328", + "$id": "5330", "kind": "model", "name": "ResponseContentPartDoneEvent", "namespace": "OpenAI", @@ -67949,16 +67975,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5329", + "$id": "5331", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.content_part.done`.", "type": { - "$id": "5330", + "$id": "5332", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -67966,7 +67992,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -67980,12 +68006,12 @@ "isHttpMetadata": false }, { - "$id": "5331", + "$id": "5333", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the content part was added to.", "type": { - "$id": "5332", + "$id": "5334", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68001,12 +68027,12 @@ "isHttpMetadata": false }, { - "$id": "5333", + "$id": "5335", "kind": "property", "name": "output_index", "doc": "The index of the output item that the content part was added to.", "type": { - "$id": "5334", + "$id": "5336", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68022,12 +68048,12 @@ "isHttpMetadata": false }, { - "$id": "5335", + "$id": "5337", "kind": "property", "name": "content_index", "doc": "The index of the content part that is done.", "type": { - "$id": "5336", + "$id": "5338", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68043,12 +68069,12 @@ "isHttpMetadata": false }, { - "$id": "5337", + "$id": "5339", "kind": "property", "name": "part", "doc": "The content part that is done.", "type": { - "$ref": "4627" + "$ref": "4629" }, "optional": false, "readOnly": false, @@ -68062,7 +68088,7 @@ ] }, "response.created": { - "$id": "5338", + "$id": "5340", "kind": "model", "name": "ResponseCreatedEvent", "namespace": "OpenAI", @@ -68077,16 +68103,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5339", + "$id": "5341", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.created`.", "type": { - "$id": "5340", + "$id": "5342", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -68094,7 +68120,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68108,12 +68134,12 @@ "isHttpMetadata": false }, { - "$id": "5341", + "$id": "5343", "kind": "property", "name": "response", "doc": "The response that was created.", "type": { - "$ref": "5070" + "$ref": "5072" }, "optional": false, "readOnly": false, @@ -68127,7 +68153,7 @@ ] }, "error": { - "$id": "5342", + "$id": "5344", "kind": "model", "name": "ResponseErrorEvent", "namespace": "OpenAI", @@ -68142,16 +68168,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5343", + "$id": "5345", "kind": "property", "name": "type", "doc": "The type of the event. Always `error`.", "type": { - "$id": "5344", + "$id": "5346", "kind": "enumvalue", "name": "error", "value": "error", @@ -68159,7 +68185,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68173,15 +68199,15 @@ "isHttpMetadata": false }, { - "$id": "5345", + "$id": "5347", "kind": "property", "name": "code", "doc": "The error code.", "type": { - "$id": "5346", + "$id": "5348", "kind": "nullable", "type": { - "$id": "5347", + "$id": "5349", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68199,12 +68225,12 @@ "isHttpMetadata": false }, { - "$id": "5348", + "$id": "5350", "kind": "property", "name": "message", "doc": "The error message.", "type": { - "$id": "5349", + "$id": "5351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68220,15 +68246,15 @@ "isHttpMetadata": false }, { - "$id": "5350", + "$id": "5352", "kind": "property", "name": "param", "doc": "The error parameter.", "type": { - "$id": "5351", + "$id": "5353", "kind": "nullable", "type": { - "$id": "5352", + "$id": "5354", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68248,7 +68274,7 @@ ] }, "response.file_search_call.completed": { - "$id": "5353", + "$id": "5355", "kind": "model", "name": "ResponseFileSearchCallCompletedEvent", "namespace": "OpenAI", @@ -68263,16 +68289,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5354", + "$id": "5356", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.completed`.", "type": { - "$id": "5355", + "$id": "5357", "kind": "enumvalue", "name": "response_file_search_call_completed", "value": "response.file_search_call.completed", @@ -68280,7 +68306,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68294,12 +68320,12 @@ "isHttpMetadata": false }, { - "$id": "5356", + "$id": "5358", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5357", + "$id": "5359", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68315,12 +68341,12 @@ "isHttpMetadata": false }, { - "$id": "5358", + "$id": "5360", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5359", + "$id": "5361", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68338,7 +68364,7 @@ ] }, "response.file_search_call.in_progress": { - "$id": "5360", + "$id": "5362", "kind": "model", "name": "ResponseFileSearchCallInProgressEvent", "namespace": "OpenAI", @@ -68353,16 +68379,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5361", + "$id": "5363", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.in_progress`.", "type": { - "$id": "5362", + "$id": "5364", "kind": "enumvalue", "name": "response_file_search_call_in_progress", "value": "response.file_search_call.in_progress", @@ -68370,7 +68396,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68384,12 +68410,12 @@ "isHttpMetadata": false }, { - "$id": "5363", + "$id": "5365", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is initiated.", "type": { - "$id": "5364", + "$id": "5366", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68405,12 +68431,12 @@ "isHttpMetadata": false }, { - "$id": "5365", + "$id": "5367", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5366", + "$id": "5368", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68428,7 +68454,7 @@ ] }, "response.file_search_call.searching": { - "$id": "5367", + "$id": "5369", "kind": "model", "name": "ResponseFileSearchCallSearchingEvent", "namespace": "OpenAI", @@ -68443,16 +68469,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5368", + "$id": "5370", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.file_search_call.searching`.", "type": { - "$id": "5369", + "$id": "5371", "kind": "enumvalue", "name": "response_file_search_call_searching", "value": "response.file_search_call.searching", @@ -68460,7 +68486,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68474,12 +68500,12 @@ "isHttpMetadata": false }, { - "$id": "5370", + "$id": "5372", "kind": "property", "name": "output_index", "doc": "The index of the output item that the file search call is searching.", "type": { - "$id": "5371", + "$id": "5373", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68495,12 +68521,12 @@ "isHttpMetadata": false }, { - "$id": "5372", + "$id": "5374", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the file search call is initiated.", "type": { - "$id": "5373", + "$id": "5375", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68518,7 +68544,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "5374", + "$id": "5376", "kind": "model", "name": "ResponseFunctionCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -68533,16 +68559,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5375", + "$id": "5377", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.function_call_arguments.delta`.", "type": { - "$id": "5376", + "$id": "5378", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -68550,7 +68576,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68564,12 +68590,12 @@ "isHttpMetadata": false }, { - "$id": "5377", + "$id": "5379", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5378", + "$id": "5380", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68585,12 +68611,12 @@ "isHttpMetadata": false }, { - "$id": "5379", + "$id": "5381", "kind": "property", "name": "output_index", "doc": "The index of the output item that the function-call arguments delta is added to.", "type": { - "$id": "5380", + "$id": "5382", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68606,12 +68632,12 @@ "isHttpMetadata": false }, { - "$id": "5381", + "$id": "5383", "kind": "property", "name": "delta", "doc": "The function-call arguments delta that is added.", "type": { - "$id": "5382", + "$id": "5384", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -68629,7 +68655,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "5383", + "$id": "5385", "kind": "model", "name": "ResponseFunctionCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -68644,15 +68670,15 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5384", + "$id": "5386", "kind": "property", "name": "type", "type": { - "$id": "5385", + "$id": "5387", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -68660,7 +68686,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68674,12 +68700,12 @@ "isHttpMetadata": false }, { - "$id": "5386", + "$id": "5388", "kind": "property", "name": "item_id", "doc": "The ID of the item.", "type": { - "$id": "5387", + "$id": "5389", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -68695,12 +68721,12 @@ "isHttpMetadata": false }, { - "$id": "5388", + "$id": "5390", "kind": "property", "name": "output_index", "doc": "The index of the output item.", "type": { - "$id": "5389", + "$id": "5391", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -68716,12 +68742,12 @@ "isHttpMetadata": false }, { - "$id": "5390", + "$id": "5392", "kind": "property", "name": "arguments", "doc": "The function-call arguments.", "type": { - "$id": "5391", + "$id": "5393", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -68739,7 +68765,7 @@ ] }, "response.in_progress": { - "$id": "5392", + "$id": "5394", "kind": "model", "name": "ResponseInProgressEvent", "namespace": "OpenAI", @@ -68754,16 +68780,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5393", + "$id": "5395", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.in_progress`.", "type": { - "$id": "5394", + "$id": "5396", "kind": "enumvalue", "name": "response_in_progress", "value": "response.in_progress", @@ -68771,7 +68797,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68785,12 +68811,12 @@ "isHttpMetadata": false }, { - "$id": "5395", + "$id": "5397", "kind": "property", "name": "response", "doc": "The response that is in progress.", "type": { - "$ref": "5070" + "$ref": "5072" }, "optional": false, "readOnly": false, @@ -68804,7 +68830,7 @@ ] }, "response.failed": { - "$id": "5396", + "$id": "5398", "kind": "model", "name": "ResponseFailedEvent", "namespace": "OpenAI", @@ -68819,16 +68845,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5397", + "$id": "5399", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.failed`.", "type": { - "$id": "5398", + "$id": "5400", "kind": "enumvalue", "name": "response_failed", "value": "response.failed", @@ -68836,7 +68862,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68850,12 +68876,12 @@ "isHttpMetadata": false }, { - "$id": "5399", + "$id": "5401", "kind": "property", "name": "response", "doc": "The response that failed.", "type": { - "$ref": "5070" + "$ref": "5072" }, "optional": false, "readOnly": false, @@ -68869,7 +68895,7 @@ ] }, "response.incomplete": { - "$id": "5400", + "$id": "5402", "kind": "model", "name": "ResponseIncompleteEvent", "namespace": "OpenAI", @@ -68884,16 +68910,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5401", + "$id": "5403", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.incomplete`.", "type": { - "$id": "5402", + "$id": "5404", "kind": "enumvalue", "name": "response_incomplete", "value": "response.incomplete", @@ -68901,7 +68927,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68915,12 +68941,12 @@ "isHttpMetadata": false }, { - "$id": "5403", + "$id": "5405", "kind": "property", "name": "response", "doc": "The response that was incomplete.", "type": { - "$ref": "5070" + "$ref": "5072" }, "optional": false, "readOnly": false, @@ -68934,7 +68960,7 @@ ] }, "response.output_item.added": { - "$id": "5404", + "$id": "5406", "kind": "model", "name": "ResponseOutputItemAddedEvent", "namespace": "OpenAI", @@ -68949,16 +68975,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5405", + "$id": "5407", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.added`.", "type": { - "$id": "5406", + "$id": "5408", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -68966,7 +68992,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -68980,12 +69006,12 @@ "isHttpMetadata": false }, { - "$id": "5407", + "$id": "5409", "kind": "property", "name": "output_index", "doc": "The index of the output item that was added.", "type": { - "$id": "5408", + "$id": "5410", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69001,12 +69027,12 @@ "isHttpMetadata": false }, { - "$id": "5409", + "$id": "5411", "kind": "property", "name": "item", "doc": "The output item that was added.", "type": { - "$ref": "5111" + "$ref": "5113" }, "optional": false, "readOnly": false, @@ -69020,7 +69046,7 @@ ] }, "response.output_item.done": { - "$id": "5410", + "$id": "5412", "kind": "model", "name": "ResponseOutputItemDoneEvent", "namespace": "OpenAI", @@ -69035,16 +69061,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5411", + "$id": "5413", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_item.done`.", "type": { - "$id": "5412", + "$id": "5414", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -69052,7 +69078,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69066,12 +69092,12 @@ "isHttpMetadata": false }, { - "$id": "5413", + "$id": "5415", "kind": "property", "name": "output_index", "doc": "The index of the output item that was marked done.", "type": { - "$id": "5414", + "$id": "5416", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69087,12 +69113,12 @@ "isHttpMetadata": false }, { - "$id": "5415", + "$id": "5417", "kind": "property", "name": "item", "doc": "The output item that was marked done.", "type": { - "$ref": "5111" + "$ref": "5113" }, "optional": false, "readOnly": false, @@ -69106,7 +69132,7 @@ ] }, "response.refusal.delta": { - "$id": "5416", + "$id": "5418", "kind": "model", "name": "ResponseRefusalDeltaEvent", "namespace": "OpenAI", @@ -69121,16 +69147,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5417", + "$id": "5419", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.delta`.", "type": { - "$id": "5418", + "$id": "5420", "kind": "enumvalue", "name": "response_refusal_delta", "value": "response.refusal.delta", @@ -69138,7 +69164,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69152,12 +69178,12 @@ "isHttpMetadata": false }, { - "$id": "5419", + "$id": "5421", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is added to.", "type": { - "$id": "5420", + "$id": "5422", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69173,12 +69199,12 @@ "isHttpMetadata": false }, { - "$id": "5421", + "$id": "5423", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is added to.", "type": { - "$id": "5422", + "$id": "5424", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69194,12 +69220,12 @@ "isHttpMetadata": false }, { - "$id": "5423", + "$id": "5425", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is added to.", "type": { - "$id": "5424", + "$id": "5426", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69215,12 +69241,12 @@ "isHttpMetadata": false }, { - "$id": "5425", + "$id": "5427", "kind": "property", "name": "delta", "doc": "The refusal text that is added.", "type": { - "$id": "5426", + "$id": "5428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69238,7 +69264,7 @@ ] }, "response.refusal.done": { - "$id": "5427", + "$id": "5429", "kind": "model", "name": "ResponseRefusalDoneEvent", "namespace": "OpenAI", @@ -69253,16 +69279,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5428", + "$id": "5430", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.refusal.done`.", "type": { - "$id": "5429", + "$id": "5431", "kind": "enumvalue", "name": "response_refusal_done", "value": "response.refusal.done", @@ -69270,7 +69296,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69284,12 +69310,12 @@ "isHttpMetadata": false }, { - "$id": "5430", + "$id": "5432", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the refusal text is finalized.", "type": { - "$id": "5431", + "$id": "5433", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69305,12 +69331,12 @@ "isHttpMetadata": false }, { - "$id": "5432", + "$id": "5434", "kind": "property", "name": "output_index", "doc": "The index of the output item that the refusal text is finalized.", "type": { - "$id": "5433", + "$id": "5435", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69326,12 +69352,12 @@ "isHttpMetadata": false }, { - "$id": "5434", + "$id": "5436", "kind": "property", "name": "content_index", "doc": "The index of the content part that the refusal text is finalized.", "type": { - "$id": "5435", + "$id": "5437", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69347,12 +69373,12 @@ "isHttpMetadata": false }, { - "$id": "5436", + "$id": "5438", "kind": "property", "name": "refusal", "doc": "The refusal text that is finalized.", "type": { - "$id": "5437", + "$id": "5439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69370,7 +69396,7 @@ ] }, "response.output_text.delta": { - "$id": "5438", + "$id": "5440", "kind": "model", "name": "ResponseTextDeltaEvent", "namespace": "OpenAI", @@ -69385,16 +69411,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5439", + "$id": "5441", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.delta`.", "type": { - "$id": "5440", + "$id": "5442", "kind": "enumvalue", "name": "response_output_text_delta", "value": "response.output_text.delta", @@ -69402,7 +69428,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69416,12 +69442,12 @@ "isHttpMetadata": false }, { - "$id": "5441", + "$id": "5443", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text delta was added to.", "type": { - "$id": "5442", + "$id": "5444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69437,12 +69463,12 @@ "isHttpMetadata": false }, { - "$id": "5443", + "$id": "5445", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text delta was added to.", "type": { - "$id": "5444", + "$id": "5446", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69458,12 +69484,12 @@ "isHttpMetadata": false }, { - "$id": "5445", + "$id": "5447", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text delta was added to.", "type": { - "$id": "5446", + "$id": "5448", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69479,12 +69505,12 @@ "isHttpMetadata": false }, { - "$id": "5447", + "$id": "5449", "kind": "property", "name": "delta", "doc": "The text delta that was added.", "type": { - "$id": "5448", + "$id": "5450", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69502,7 +69528,7 @@ ] }, "response.output_text.done": { - "$id": "5449", + "$id": "5451", "kind": "model", "name": "ResponseTextDoneEvent", "namespace": "OpenAI", @@ -69517,16 +69543,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5450", + "$id": "5452", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.output_text.done`.", "type": { - "$id": "5451", + "$id": "5453", "kind": "enumvalue", "name": "response_output_text_done", "value": "response.output_text.done", @@ -69534,7 +69560,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69548,12 +69574,12 @@ "isHttpMetadata": false }, { - "$id": "5452", + "$id": "5454", "kind": "property", "name": "item_id", "doc": "The ID of the output item that the text content is finalized.", "type": { - "$id": "5453", + "$id": "5455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69569,12 +69595,12 @@ "isHttpMetadata": false }, { - "$id": "5454", + "$id": "5456", "kind": "property", "name": "output_index", "doc": "The index of the output item that the text content is finalized.", "type": { - "$id": "5455", + "$id": "5457", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69590,12 +69616,12 @@ "isHttpMetadata": false }, { - "$id": "5456", + "$id": "5458", "kind": "property", "name": "content_index", "doc": "The index of the content part that the text content is finalized.", "type": { - "$id": "5457", + "$id": "5459", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69611,12 +69637,12 @@ "isHttpMetadata": false }, { - "$id": "5458", + "$id": "5460", "kind": "property", "name": "text", "doc": "The text content that is finalized.", "type": { - "$id": "5459", + "$id": "5461", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69634,7 +69660,7 @@ ] }, "response.reasoning_summary_part.added": { - "$id": "5460", + "$id": "5462", "kind": "model", "name": "ResponseReasoningSummaryPartAddedEvent", "namespace": "OpenAI", @@ -69649,16 +69675,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5461", + "$id": "5463", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.added`.", "type": { - "$id": "5462", + "$id": "5464", "kind": "enumvalue", "name": "response_reasoning_summary_part_added", "value": "response.reasoning_summary_part.added", @@ -69666,7 +69692,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69680,12 +69706,12 @@ "isHttpMetadata": false }, { - "$id": "5463", + "$id": "5465", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5464", + "$id": "5466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69701,12 +69727,12 @@ "isHttpMetadata": false }, { - "$id": "5465", + "$id": "5467", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5466", + "$id": "5468", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69722,12 +69748,12 @@ "isHttpMetadata": false }, { - "$id": "5467", + "$id": "5469", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5468", + "$id": "5470", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69743,12 +69769,12 @@ "isHttpMetadata": false }, { - "$id": "5469", + "$id": "5471", "kind": "property", "name": "part", "doc": "The summary part that was added.", "type": { - "$ref": "4907" + "$ref": "4909" }, "optional": false, "readOnly": false, @@ -69762,7 +69788,7 @@ ] }, "response.reasoning_summary_part.done": { - "$id": "5470", + "$id": "5472", "kind": "model", "name": "ResponseReasoningSummaryPartDoneEvent", "namespace": "OpenAI", @@ -69777,16 +69803,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5471", + "$id": "5473", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_part.done`.", "type": { - "$id": "5472", + "$id": "5474", "kind": "enumvalue", "name": "response_reasoning_summary_part_done", "value": "response.reasoning_summary_part.done", @@ -69794,7 +69820,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69808,12 +69834,12 @@ "isHttpMetadata": false }, { - "$id": "5473", + "$id": "5475", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary part is associated with.", "type": { - "$id": "5474", + "$id": "5476", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69829,12 +69855,12 @@ "isHttpMetadata": false }, { - "$id": "5475", + "$id": "5477", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary part is associated with.", "type": { - "$id": "5476", + "$id": "5478", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69850,12 +69876,12 @@ "isHttpMetadata": false }, { - "$id": "5477", + "$id": "5479", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5478", + "$id": "5480", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69871,12 +69897,12 @@ "isHttpMetadata": false }, { - "$id": "5479", + "$id": "5481", "kind": "property", "name": "part", "doc": "The completed summary part.", "type": { - "$ref": "4907" + "$ref": "4909" }, "optional": false, "readOnly": false, @@ -69890,7 +69916,7 @@ ] }, "response.reasoning_summary_text.delta": { - "$id": "5480", + "$id": "5482", "kind": "model", "name": "ResponseReasoningSummaryTextDeltaEvent", "namespace": "OpenAI", @@ -69905,16 +69931,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5481", + "$id": "5483", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.delta`.", "type": { - "$id": "5482", + "$id": "5484", "kind": "enumvalue", "name": "response_reasoning_summary_text_delta", "value": "response.reasoning_summary_text.delta", @@ -69922,7 +69948,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -69936,12 +69962,12 @@ "isHttpMetadata": false }, { - "$id": "5483", + "$id": "5485", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text delta is associated with.", "type": { - "$id": "5484", + "$id": "5486", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -69957,12 +69983,12 @@ "isHttpMetadata": false }, { - "$id": "5485", + "$id": "5487", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text delta is associated with.", "type": { - "$id": "5486", + "$id": "5488", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69978,12 +70004,12 @@ "isHttpMetadata": false }, { - "$id": "5487", + "$id": "5489", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5488", + "$id": "5490", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -69999,12 +70025,12 @@ "isHttpMetadata": false }, { - "$id": "5489", + "$id": "5491", "kind": "property", "name": "delta", "doc": "The text delta that was added to the summary.", "type": { - "$id": "5490", + "$id": "5492", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70022,7 +70048,7 @@ ] }, "response.reasoning_summary_text.done": { - "$id": "5491", + "$id": "5493", "kind": "model", "name": "ResponseReasoningSummaryTextDoneEvent", "namespace": "OpenAI", @@ -70037,16 +70063,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5492", + "$id": "5494", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.reasoning_summary_text.done`.", "type": { - "$id": "5493", + "$id": "5495", "kind": "enumvalue", "name": "response_reasoning_summary_text_done", "value": "response.reasoning_summary_text.done", @@ -70054,7 +70080,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70068,12 +70094,12 @@ "isHttpMetadata": false }, { - "$id": "5494", + "$id": "5496", "kind": "property", "name": "item_id", "doc": "The ID of the item this summary text is associated with.", "type": { - "$id": "5495", + "$id": "5497", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70089,12 +70115,12 @@ "isHttpMetadata": false }, { - "$id": "5496", + "$id": "5498", "kind": "property", "name": "output_index", "doc": "The index of the output item this summary text is associated with.", "type": { - "$id": "5497", + "$id": "5499", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70110,12 +70136,12 @@ "isHttpMetadata": false }, { - "$id": "5498", + "$id": "5500", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the reasoning summary.", "type": { - "$id": "5499", + "$id": "5501", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70131,12 +70157,12 @@ "isHttpMetadata": false }, { - "$id": "5500", + "$id": "5502", "kind": "property", "name": "text", "doc": "The full text of the completed reasoning summary.", "type": { - "$id": "5501", + "$id": "5503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70154,7 +70180,7 @@ ] }, "response.web_search_call.completed": { - "$id": "5502", + "$id": "5504", "kind": "model", "name": "ResponseWebSearchCallCompletedEvent", "namespace": "OpenAI", @@ -70169,16 +70195,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5503", + "$id": "5505", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.completed`.", "type": { - "$id": "5504", + "$id": "5506", "kind": "enumvalue", "name": "response_web_search_call_completed", "value": "response.web_search_call.completed", @@ -70186,7 +70212,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70200,12 +70226,12 @@ "isHttpMetadata": false }, { - "$id": "5505", + "$id": "5507", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5506", + "$id": "5508", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70221,12 +70247,12 @@ "isHttpMetadata": false }, { - "$id": "5507", + "$id": "5509", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5508", + "$id": "5510", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70244,7 +70270,7 @@ ] }, "response.web_search_call.in_progress": { - "$id": "5509", + "$id": "5511", "kind": "model", "name": "ResponseWebSearchCallInProgressEvent", "namespace": "OpenAI", @@ -70259,16 +70285,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5510", + "$id": "5512", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.in_progress`.", "type": { - "$id": "5511", + "$id": "5513", "kind": "enumvalue", "name": "response_web_search_call_in_progress", "value": "response.web_search_call.in_progress", @@ -70276,7 +70302,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70290,12 +70316,12 @@ "isHttpMetadata": false }, { - "$id": "5512", + "$id": "5514", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5513", + "$id": "5515", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70311,12 +70337,12 @@ "isHttpMetadata": false }, { - "$id": "5514", + "$id": "5516", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5515", + "$id": "5517", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70334,7 +70360,7 @@ ] }, "response.web_search_call.searching": { - "$id": "5516", + "$id": "5518", "kind": "model", "name": "ResponseWebSearchCallSearchingEvent", "namespace": "OpenAI", @@ -70349,16 +70375,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5517", + "$id": "5519", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.web_search_call.searching`.", "type": { - "$id": "5518", + "$id": "5520", "kind": "enumvalue", "name": "response_web_search_call_searching", "value": "response.web_search_call.searching", @@ -70366,7 +70392,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70380,12 +70406,12 @@ "isHttpMetadata": false }, { - "$id": "5519", + "$id": "5521", "kind": "property", "name": "output_index", "doc": "The index of the output item that the web search call is associated with.", "type": { - "$id": "5520", + "$id": "5522", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70401,12 +70427,12 @@ "isHttpMetadata": false }, { - "$id": "5521", + "$id": "5523", "kind": "property", "name": "item_id", "doc": "Unique ID for the output item associated with the web search call.", "type": { - "$id": "5522", + "$id": "5524", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70424,7 +70450,7 @@ ] }, "response.image_generation_call.completed": { - "$id": "5523", + "$id": "5525", "kind": "model", "name": "ResponseImageGenCallCompletedEvent", "namespace": "OpenAI", @@ -70439,16 +70465,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5524", + "$id": "5526", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.completed'.", "type": { - "$id": "5525", + "$id": "5527", "kind": "enumvalue", "name": "response_image_generation_call_completed", "value": "response.image_generation_call.completed", @@ -70456,7 +70482,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70470,12 +70496,12 @@ "isHttpMetadata": false }, { - "$id": "5526", + "$id": "5528", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5527", + "$id": "5529", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70491,12 +70517,12 @@ "isHttpMetadata": false }, { - "$id": "5528", + "$id": "5530", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5529", + "$id": "5531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70514,7 +70540,7 @@ ] }, "response.image_generation_call.generating": { - "$id": "5530", + "$id": "5532", "kind": "model", "name": "ResponseImageGenCallGeneratingEvent", "namespace": "OpenAI", @@ -70529,16 +70555,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5531", + "$id": "5533", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.generating'.", "type": { - "$id": "5532", + "$id": "5534", "kind": "enumvalue", "name": "response_image_generation_call_generating", "value": "response.image_generation_call.generating", @@ -70546,7 +70572,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70560,12 +70586,12 @@ "isHttpMetadata": false }, { - "$id": "5533", + "$id": "5535", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5534", + "$id": "5536", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70581,12 +70607,12 @@ "isHttpMetadata": false }, { - "$id": "5535", + "$id": "5537", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5536", + "$id": "5538", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70604,7 +70630,7 @@ ] }, "response.image_generation_call.in_progress": { - "$id": "5537", + "$id": "5539", "kind": "model", "name": "ResponseImageGenCallInProgressEvent", "namespace": "OpenAI", @@ -70619,16 +70645,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5538", + "$id": "5540", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.in_progress'.", "type": { - "$id": "5539", + "$id": "5541", "kind": "enumvalue", "name": "response_image_generation_call_in_progress", "value": "response.image_generation_call.in_progress", @@ -70636,7 +70662,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70650,12 +70676,12 @@ "isHttpMetadata": false }, { - "$id": "5540", + "$id": "5542", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5541", + "$id": "5543", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70671,12 +70697,12 @@ "isHttpMetadata": false }, { - "$id": "5542", + "$id": "5544", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5543", + "$id": "5545", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70694,7 +70720,7 @@ ] }, "response.image_generation_call.partial_image": { - "$id": "5544", + "$id": "5546", "kind": "model", "name": "ResponseImageGenCallPartialImageEvent", "namespace": "OpenAI", @@ -70709,16 +70735,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5545", + "$id": "5547", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.image_generation_call.partial_image'.", "type": { - "$id": "5546", + "$id": "5548", "kind": "enumvalue", "name": "response_image_generation_call_partial_image", "value": "response.image_generation_call.partial_image", @@ -70726,7 +70752,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70740,12 +70766,12 @@ "isHttpMetadata": false }, { - "$id": "5547", + "$id": "5549", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5548", + "$id": "5550", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70761,12 +70787,12 @@ "isHttpMetadata": false }, { - "$id": "5549", + "$id": "5551", "kind": "property", "name": "item_id", "doc": "The unique identifier of the image generation item being processed.", "type": { - "$id": "5550", + "$id": "5552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70782,12 +70808,12 @@ "isHttpMetadata": false }, { - "$id": "5551", + "$id": "5553", "kind": "property", "name": "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": "5552", + "$id": "5554", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70803,12 +70829,12 @@ "isHttpMetadata": false }, { - "$id": "5553", + "$id": "5555", "kind": "property", "name": "PartialImageBytes", "doc": "Base64-encoded partial image data, suitable for rendering as an image.", "type": { - "$id": "5554", + "$id": "5556", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -70827,7 +70853,7 @@ ] }, "response.mcp_call_arguments.delta": { - "$id": "5555", + "$id": "5557", "kind": "model", "name": "ResponseMCPCallArgumentsDeltaEvent", "namespace": "OpenAI", @@ -70842,16 +70868,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5556", + "$id": "5558", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_delta'.", "type": { - "$id": "5557", + "$id": "5559", "kind": "enumvalue", "name": "response_mcp_call_arguments_delta", "value": "response.mcp_call_arguments.delta", @@ -70859,7 +70885,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70873,12 +70899,12 @@ "isHttpMetadata": false }, { - "$id": "5558", + "$id": "5560", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5559", + "$id": "5561", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -70894,12 +70920,12 @@ "isHttpMetadata": false }, { - "$id": "5560", + "$id": "5562", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5561", + "$id": "5563", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -70915,12 +70941,12 @@ "isHttpMetadata": false }, { - "$id": "5562", + "$id": "5564", "kind": "property", "name": "delta", "doc": "The partial update to the arguments for the MCP tool call.", "type": { - "$id": "5563", + "$id": "5565", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -70938,7 +70964,7 @@ ] }, "response.mcp_call_arguments.done": { - "$id": "5564", + "$id": "5566", "kind": "model", "name": "ResponseMCPCallArgumentsDoneEvent", "namespace": "OpenAI", @@ -70953,16 +70979,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5565", + "$id": "5567", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.arguments_done'.", "type": { - "$id": "5566", + "$id": "5568", "kind": "enumvalue", "name": "response_mcp_call_arguments_done", "value": "response.mcp_call_arguments.done", @@ -70970,7 +70996,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -70984,12 +71010,12 @@ "isHttpMetadata": false }, { - "$id": "5567", + "$id": "5569", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5568", + "$id": "5570", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71005,12 +71031,12 @@ "isHttpMetadata": false }, { - "$id": "5569", + "$id": "5571", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5570", + "$id": "5572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71026,12 +71052,12 @@ "isHttpMetadata": false }, { - "$id": "5571", + "$id": "5573", "kind": "property", "name": "arguments", "doc": "A JSON string containing the finalized arguments for the MCP tool call.", "type": { - "$id": "5572", + "$id": "5574", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -71049,7 +71075,7 @@ ] }, "response.mcp_call.completed": { - "$id": "5573", + "$id": "5575", "kind": "model", "name": "ResponseMCPCallCompletedEvent", "namespace": "OpenAI", @@ -71064,16 +71090,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5574", + "$id": "5576", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.completed'.", "type": { - "$id": "5575", + "$id": "5577", "kind": "enumvalue", "name": "response_mcp_call_completed", "value": "response.mcp_call.completed", @@ -71081,7 +71107,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71095,12 +71121,12 @@ "isHttpMetadata": false }, { - "$id": "5576", + "$id": "5578", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that completed.", "type": { - "$id": "5577", + "$id": "5579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71116,12 +71142,12 @@ "isHttpMetadata": false }, { - "$id": "5578", + "$id": "5580", "kind": "property", "name": "output_index", "doc": "The index of the output item that completed.", "type": { - "$id": "5579", + "$id": "5581", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71139,7 +71165,7 @@ ] }, "response.mcp_call.failed": { - "$id": "5580", + "$id": "5582", "kind": "model", "name": "ResponseMCPCallFailedEvent", "namespace": "OpenAI", @@ -71154,16 +71180,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5581", + "$id": "5583", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.failed'.", "type": { - "$id": "5582", + "$id": "5584", "kind": "enumvalue", "name": "response_mcp_call_failed", "value": "response.mcp_call.failed", @@ -71171,7 +71197,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71185,12 +71211,12 @@ "isHttpMetadata": false }, { - "$id": "5583", + "$id": "5585", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5584", + "$id": "5586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71206,12 +71232,12 @@ "isHttpMetadata": false }, { - "$id": "5585", + "$id": "5587", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5586", + "$id": "5588", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71229,7 +71255,7 @@ ] }, "response.mcp_call.in_progress": { - "$id": "5587", + "$id": "5589", "kind": "model", "name": "ResponseMCPCallInProgressEvent", "namespace": "OpenAI", @@ -71244,16 +71270,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5588", + "$id": "5590", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_call.in_progress'.", "type": { - "$id": "5589", + "$id": "5591", "kind": "enumvalue", "name": "response_mcp_call_in_progress", "value": "response.mcp_call.in_progress", @@ -71261,7 +71287,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71275,12 +71301,12 @@ "isHttpMetadata": false }, { - "$id": "5590", + "$id": "5592", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5591", + "$id": "5593", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71296,12 +71322,12 @@ "isHttpMetadata": false }, { - "$id": "5592", + "$id": "5594", "kind": "property", "name": "item_id", "doc": "The unique identifier of the MCP tool call item being processed.", "type": { - "$id": "5593", + "$id": "5595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71319,7 +71345,7 @@ ] }, "response.mcp_list_tools.completed": { - "$id": "5594", + "$id": "5596", "kind": "model", "name": "ResponseMCPListToolsCompletedEvent", "namespace": "OpenAI", @@ -71334,16 +71360,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5595", + "$id": "5597", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.completed'.", "type": { - "$id": "5596", + "$id": "5598", "kind": "enumvalue", "name": "response_mcp_list_tools_completed", "value": "response.mcp_list_tools.completed", @@ -71351,7 +71377,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71365,12 +71391,12 @@ "isHttpMetadata": false }, { - "$id": "5597", + "$id": "5599", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that produced this output.", "type": { - "$id": "5598", + "$id": "5600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71386,12 +71412,12 @@ "isHttpMetadata": false }, { - "$id": "5599", + "$id": "5601", "kind": "property", "name": "output_index", "doc": "The index of the output item that was processed.", "type": { - "$id": "5600", + "$id": "5602", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71409,7 +71435,7 @@ ] }, "response.mcp_list_tools.failed": { - "$id": "5601", + "$id": "5603", "kind": "model", "name": "ResponseMCPListToolsFailedEvent", "namespace": "OpenAI", @@ -71424,16 +71450,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5602", + "$id": "5604", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.failed'.", "type": { - "$id": "5603", + "$id": "5605", "kind": "enumvalue", "name": "response_mcp_list_tools_failed", "value": "response.mcp_list_tools.failed", @@ -71441,7 +71467,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71455,12 +71481,12 @@ "isHttpMetadata": false }, { - "$id": "5604", + "$id": "5606", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that failed.", "type": { - "$id": "5605", + "$id": "5607", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71476,12 +71502,12 @@ "isHttpMetadata": false }, { - "$id": "5606", + "$id": "5608", "kind": "property", "name": "output_index", "doc": "The index of the output item that failed.", "type": { - "$id": "5607", + "$id": "5609", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71499,7 +71525,7 @@ ] }, "response.mcp_list_tools.in_progress": { - "$id": "5608", + "$id": "5610", "kind": "model", "name": "ResponseMCPListToolsInProgressEvent", "namespace": "OpenAI", @@ -71514,16 +71540,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5609", + "$id": "5611", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.mcp_list_tools.in_progress'.", "type": { - "$id": "5610", + "$id": "5612", "kind": "enumvalue", "name": "response_mcp_list_tools_in_progress", "value": "response.mcp_list_tools.in_progress", @@ -71531,7 +71557,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71545,12 +71571,12 @@ "isHttpMetadata": false }, { - "$id": "5611", + "$id": "5613", "kind": "property", "name": "item_id", "doc": "The ID of the MCP tool call item that is being processed.", "type": { - "$id": "5612", + "$id": "5614", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71566,12 +71592,12 @@ "isHttpMetadata": false }, { - "$id": "5613", + "$id": "5615", "kind": "property", "name": "output_index", "doc": "The index of the output item that is being processed.", "type": { - "$id": "5614", + "$id": "5616", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71589,7 +71615,7 @@ ] }, "response.output_text.annotation.added": { - "$id": "5615", + "$id": "5617", "kind": "model", "name": "ResponseOutputTextAnnotationAddedEvent", "namespace": "OpenAI", @@ -71604,16 +71630,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5616", + "$id": "5618", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.output_text_annotation.added'.", "type": { - "$id": "5617", + "$id": "5619", "kind": "enumvalue", "name": "response_output_text_annotation_added", "value": "response.output_text.annotation.added", @@ -71621,7 +71647,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71635,12 +71661,12 @@ "isHttpMetadata": false }, { - "$id": "5618", + "$id": "5620", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item to which the annotation is being added.", "type": { - "$id": "5619", + "$id": "5621", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71656,12 +71682,12 @@ "isHttpMetadata": false }, { - "$id": "5620", + "$id": "5622", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5621", + "$id": "5623", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71677,12 +71703,12 @@ "isHttpMetadata": false }, { - "$id": "5622", + "$id": "5624", "kind": "property", "name": "content_index", "doc": "The index of the content part within the output item.", "type": { - "$id": "5623", + "$id": "5625", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71698,12 +71724,12 @@ "isHttpMetadata": false }, { - "$id": "5624", + "$id": "5626", "kind": "property", "name": "annotation_index", "doc": "The index of the annotation within the content part.", "type": { - "$id": "5625", + "$id": "5627", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71719,12 +71745,12 @@ "isHttpMetadata": false }, { - "$id": "5626", + "$id": "5628", "kind": "property", "name": "annotation", "doc": "The annotation object being added. (See annotation schema for details.)", "type": { - "$id": "5627", + "$id": "5629", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -71742,7 +71768,7 @@ ] }, "response.queued": { - "$id": "5628", + "$id": "5630", "kind": "model", "name": "ResponseQueuedEvent", "namespace": "OpenAI", @@ -71757,16 +71783,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5629", + "$id": "5631", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.queued'.", "type": { - "$id": "5630", + "$id": "5632", "kind": "enumvalue", "name": "response_queued", "value": "response.queued", @@ -71774,7 +71800,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71788,12 +71814,12 @@ "isHttpMetadata": false }, { - "$id": "5631", + "$id": "5633", "kind": "property", "name": "response", "doc": "The full response object that is queued.", "type": { - "$ref": "5070" + "$ref": "5072" }, "optional": false, "readOnly": false, @@ -71807,7 +71833,7 @@ ] }, "response.reasoning.delta": { - "$id": "5632", + "$id": "5634", "kind": "model", "name": "ResponseReasoningDeltaEvent", "namespace": "OpenAI", @@ -71822,16 +71848,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5633", + "$id": "5635", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.delta'.", "type": { - "$id": "5634", + "$id": "5636", "kind": "enumvalue", "name": "response_reasoning_delta", "value": "response.reasoning.delta", @@ -71839,7 +71865,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71853,12 +71879,12 @@ "isHttpMetadata": false }, { - "$id": "5635", + "$id": "5637", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is being updated.", "type": { - "$id": "5636", + "$id": "5638", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -71874,12 +71900,12 @@ "isHttpMetadata": false }, { - "$id": "5637", + "$id": "5639", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5638", + "$id": "5640", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71895,12 +71921,12 @@ "isHttpMetadata": false }, { - "$id": "5639", + "$id": "5641", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5640", + "$id": "5642", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -71916,12 +71942,12 @@ "isHttpMetadata": false }, { - "$id": "5641", + "$id": "5643", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning content.", "type": { - "$id": "5642", + "$id": "5644", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -71939,7 +71965,7 @@ ] }, "response.reasoning.done": { - "$id": "5643", + "$id": "5645", "kind": "model", "name": "ResponseReasoningDoneEvent", "namespace": "OpenAI", @@ -71954,16 +71980,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5644", + "$id": "5646", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning.done'.", "type": { - "$id": "5645", + "$id": "5647", "kind": "enumvalue", "name": "response_reasoning_done", "value": "response.reasoning.done", @@ -71971,7 +71997,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -71985,12 +72011,12 @@ "isHttpMetadata": false }, { - "$id": "5646", + "$id": "5648", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which reasoning is finalized.", "type": { - "$id": "5647", + "$id": "5649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72006,12 +72032,12 @@ "isHttpMetadata": false }, { - "$id": "5648", + "$id": "5650", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5649", + "$id": "5651", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72027,12 +72053,12 @@ "isHttpMetadata": false }, { - "$id": "5650", + "$id": "5652", "kind": "property", "name": "content_index", "doc": "The index of the reasoning content part within the output item.", "type": { - "$id": "5651", + "$id": "5653", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72048,12 +72074,12 @@ "isHttpMetadata": false }, { - "$id": "5652", + "$id": "5654", "kind": "property", "name": "text", "doc": "The finalized reasoning text.", "type": { - "$id": "5653", + "$id": "5655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72071,7 +72097,7 @@ ] }, "response.reasoning_summary.delta": { - "$id": "5654", + "$id": "5656", "kind": "model", "name": "ResponseReasoningSummaryDeltaEvent", "namespace": "OpenAI", @@ -72086,16 +72112,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5655", + "$id": "5657", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.delta'.", "type": { - "$id": "5656", + "$id": "5658", "kind": "enumvalue", "name": "response_reasoning_summary_delta", "value": "response.reasoning_summary.delta", @@ -72103,7 +72129,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -72117,12 +72143,12 @@ "isHttpMetadata": false }, { - "$id": "5657", + "$id": "5659", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is being updated.", "type": { - "$id": "5658", + "$id": "5660", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72138,12 +72164,12 @@ "isHttpMetadata": false }, { - "$id": "5659", + "$id": "5661", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5660", + "$id": "5662", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72159,12 +72185,12 @@ "isHttpMetadata": false }, { - "$id": "5661", + "$id": "5663", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5662", + "$id": "5664", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72180,12 +72206,12 @@ "isHttpMetadata": false }, { - "$id": "5663", + "$id": "5665", "kind": "property", "name": "delta", "doc": "The partial update to the reasoning summary content.", "type": { - "$id": "5664", + "$id": "5666", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -72203,7 +72229,7 @@ ] }, "response.reasoning_summary.done": { - "$id": "5665", + "$id": "5667", "kind": "model", "name": "ResponseReasoningSummaryDoneEvent", "namespace": "OpenAI", @@ -72218,16 +72244,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5666", + "$id": "5668", "kind": "property", "name": "type", "doc": "The type of the event. Always 'response.reasoning_summary.done'.", "type": { - "$id": "5667", + "$id": "5669", "kind": "enumvalue", "name": "response_reasoning_summary_done", "value": "response.reasoning_summary.done", @@ -72235,7 +72261,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -72249,12 +72275,12 @@ "isHttpMetadata": false }, { - "$id": "5668", + "$id": "5670", "kind": "property", "name": "item_id", "doc": "The unique identifier of the item for which the reasoning summary is finalized.", "type": { - "$id": "5669", + "$id": "5671", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72270,12 +72296,12 @@ "isHttpMetadata": false }, { - "$id": "5670", + "$id": "5672", "kind": "property", "name": "output_index", "doc": "The index of the output item in the response's output array.", "type": { - "$id": "5671", + "$id": "5673", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72291,12 +72317,12 @@ "isHttpMetadata": false }, { - "$id": "5672", + "$id": "5674", "kind": "property", "name": "summary_index", "doc": "The index of the summary part within the output item.", "type": { - "$id": "5673", + "$id": "5675", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72312,12 +72338,12 @@ "isHttpMetadata": false }, { - "$id": "5674", + "$id": "5676", "kind": "property", "name": "text", "doc": "The finalized reasoning summary text.", "type": { - "$id": "5675", + "$id": "5677", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72335,7 +72361,7 @@ ] }, "response.code_interpreter_call_code.delta": { - "$id": "5676", + "$id": "5678", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDeltaEvent", "namespace": "OpenAI", @@ -72350,16 +72376,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5677", + "$id": "5679", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.delta`.", "type": { - "$id": "5678", + "$id": "5680", "kind": "enumvalue", "name": "response_code_interpreter_call_code_delta", "value": "response.code_interpreter_call_code.delta", @@ -72367,7 +72393,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -72381,12 +72407,12 @@ "isHttpMetadata": false }, { - "$id": "5679", + "$id": "5681", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5680", + "$id": "5682", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72402,12 +72428,12 @@ "isHttpMetadata": false }, { - "$id": "5681", + "$id": "5683", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5682", + "$id": "5684", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72423,12 +72449,12 @@ "isHttpMetadata": false }, { - "$id": "5683", + "$id": "5685", "kind": "property", "name": "delta", "doc": "The partial code snippet added by the code interpreter.", "type": { - "$id": "5684", + "$id": "5686", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72446,7 +72472,7 @@ ] }, "response.code_interpreter_call_code.done": { - "$id": "5685", + "$id": "5687", "kind": "model", "name": "ResponseCodeInterpreterCallCodeDoneEvent", "namespace": "OpenAI", @@ -72461,16 +72487,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5686", + "$id": "5688", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call_code.done`.", "type": { - "$id": "5687", + "$id": "5689", "kind": "enumvalue", "name": "response_code_interpreter_call_code_done", "value": "response.code_interpreter_call_code.done", @@ -72478,7 +72504,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -72492,12 +72518,12 @@ "isHttpMetadata": false }, { - "$id": "5688", + "$id": "5690", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5689", + "$id": "5691", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72513,12 +72539,12 @@ "isHttpMetadata": false }, { - "$id": "5690", + "$id": "5692", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5691", + "$id": "5693", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72534,12 +72560,12 @@ "isHttpMetadata": false }, { - "$id": "5692", + "$id": "5694", "kind": "property", "name": "code", "doc": "The final code snippet output by the code interpreter.", "type": { - "$id": "5693", + "$id": "5695", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72557,7 +72583,7 @@ ] }, "response.code_interpreter_call.completed": { - "$id": "5694", + "$id": "5696", "kind": "model", "name": "ResponseCodeInterpreterCallCompletedEvent", "namespace": "OpenAI", @@ -72572,16 +72598,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5695", + "$id": "5697", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.completed`.", "type": { - "$id": "5696", + "$id": "5698", "kind": "enumvalue", "name": "response_code_interpreter_call_completed", "value": "response.code_interpreter_call.completed", @@ -72589,7 +72615,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -72603,12 +72629,12 @@ "isHttpMetadata": false }, { - "$id": "5697", + "$id": "5699", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5698", + "$id": "5700", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72624,12 +72650,12 @@ "isHttpMetadata": false }, { - "$id": "5699", + "$id": "5701", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5700", + "$id": "5702", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72647,7 +72673,7 @@ ] }, "response.code_interpreter_call.in_progress": { - "$id": "5701", + "$id": "5703", "kind": "model", "name": "ResponseCodeInterpreterCallInProgressEvent", "namespace": "OpenAI", @@ -72662,16 +72688,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5702", + "$id": "5704", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.in_progress`.", "type": { - "$id": "5703", + "$id": "5705", "kind": "enumvalue", "name": "response_code_interpreter_call_in_progress", "value": "response.code_interpreter_call.in_progress", @@ -72679,7 +72705,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -72693,12 +72719,12 @@ "isHttpMetadata": false }, { - "$id": "5704", + "$id": "5706", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5705", + "$id": "5707", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72714,12 +72740,12 @@ "isHttpMetadata": false }, { - "$id": "5706", + "$id": "5708", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5707", + "$id": "5709", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72737,7 +72763,7 @@ ] }, "response.code_interpreter_call.interpreting": { - "$id": "5708", + "$id": "5710", "kind": "model", "name": "ResponseCodeInterpreterCallInterpretingEvent", "namespace": "OpenAI", @@ -72752,16 +72778,16 @@ } ], "baseModel": { - "$ref": "5255" + "$ref": "5257" }, "properties": [ { - "$id": "5709", + "$id": "5711", "kind": "property", "name": "type", "doc": "The type of the event. Always `response.code_interpreter_call.interpreting`.", "type": { - "$id": "5710", + "$id": "5712", "kind": "enumvalue", "name": "response_code_interpreter_call_interpreting", "value": "response.code_interpreter_call.interpreting", @@ -72769,7 +72795,7 @@ "$ref": "774" }, "enumType": { - "$ref": "5262" + "$ref": "5264" }, "decorators": [] }, @@ -72783,12 +72809,12 @@ "isHttpMetadata": false }, { - "$id": "5711", + "$id": "5713", "kind": "property", "name": "output_index", "doc": "The index of the output item that the code interpreter call is in progress.", "type": { - "$id": "5712", + "$id": "5714", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -72804,12 +72830,12 @@ "isHttpMetadata": false }, { - "$id": "5713", + "$id": "5715", "kind": "property", "name": "item_id", "doc": "The unique identifier of the code interpreter tool call item.", "type": { - "$id": "5714", + "$id": "5716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -72829,154 +72855,154 @@ } }, { - "$ref": "5259" + "$ref": "5261" }, { - "$ref": "5318" + "$ref": "5320" }, { - "$ref": "5328" + "$ref": "5330" }, { - "$ref": "5338" + "$ref": "5340" }, { - "$ref": "5342" + "$ref": "5344" }, { - "$ref": "5353" + "$ref": "5355" }, { - "$ref": "5360" + "$ref": "5362" }, { - "$ref": "5367" + "$ref": "5369" }, { - "$ref": "5374" + "$ref": "5376" }, { - "$ref": "5383" + "$ref": "5385" }, { - "$ref": "5392" + "$ref": "5394" }, { - "$ref": "5396" + "$ref": "5398" }, { - "$ref": "5400" + "$ref": "5402" }, { - "$ref": "5404" + "$ref": "5406" }, { - "$ref": "5410" + "$ref": "5412" }, { - "$ref": "5416" + "$ref": "5418" }, { - "$ref": "5427" + "$ref": "5429" }, { - "$ref": "5438" + "$ref": "5440" }, { - "$ref": "5449" + "$ref": "5451" }, { - "$ref": "5460" + "$ref": "5462" }, { - "$ref": "5470" + "$ref": "5472" }, { - "$ref": "5480" + "$ref": "5482" }, { - "$ref": "5491" + "$ref": "5493" }, { - "$ref": "5502" + "$ref": "5504" }, { - "$ref": "5509" + "$ref": "5511" }, { - "$ref": "5516" + "$ref": "5518" }, { - "$ref": "5523" + "$ref": "5525" }, { - "$ref": "5530" + "$ref": "5532" }, { - "$ref": "5537" + "$ref": "5539" }, { - "$ref": "5544" + "$ref": "5546" }, { - "$ref": "5555" + "$ref": "5557" }, { - "$ref": "5564" + "$ref": "5566" }, { - "$ref": "5573" + "$ref": "5575" }, { - "$ref": "5580" + "$ref": "5582" }, { - "$ref": "5587" + "$ref": "5589" }, { - "$ref": "5594" + "$ref": "5596" }, { - "$ref": "5601" + "$ref": "5603" }, { - "$ref": "5608" + "$ref": "5610" }, { - "$ref": "5615" + "$ref": "5617" }, { - "$ref": "5628" + "$ref": "5630" }, { - "$ref": "5632" + "$ref": "5634" }, { - "$ref": "5643" + "$ref": "5645" }, { - "$ref": "5654" + "$ref": "5656" }, { - "$ref": "5665" + "$ref": "5667" }, { - "$ref": "5676" + "$ref": "5678" }, { - "$ref": "5685" + "$ref": "5687" }, { - "$ref": "5694" + "$ref": "5696" }, { - "$ref": "5701" + "$ref": "5703" }, { - "$ref": "5708" + "$ref": "5710" }, { - "$id": "5715", + "$id": "5717", "kind": "model", "name": "ResponseErrorResponse", "namespace": "OpenAI", @@ -72990,12 +73016,12 @@ ], "properties": [ { - "$id": "5716", + "$id": "5718", "kind": "property", "name": "error", "serializedName": "error", "type": { - "$ref": "5101" + "$ref": "5103" }, "optional": false, "readOnly": false, @@ -73013,7 +73039,7 @@ ] }, { - "$id": "5717", + "$id": "5719", "kind": "model", "name": "DeleteResponseResponse", "namespace": "OpenAI", @@ -73027,12 +73053,12 @@ ], "properties": [ { - "$id": "5718", + "$id": "5720", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5719", + "$id": "5721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73052,7 +73078,7 @@ "isHttpMetadata": false }, { - "$id": "5720", + "$id": "5722", "kind": "property", "name": "object", "serializedName": "object", @@ -73073,7 +73099,7 @@ "isHttpMetadata": false }, { - "$id": "5721", + "$id": "5723", "kind": "property", "name": "deleted", "serializedName": "deleted", @@ -73096,7 +73122,7 @@ ] }, { - "$id": "5722", + "$id": "5724", "kind": "model", "name": "ResponseItemList", "namespace": "OpenAI", @@ -73111,7 +73137,7 @@ ], "properties": [ { - "$id": "5723", + "$id": "5725", "kind": "property", "name": "object", "serializedName": "object", @@ -73133,13 +73159,13 @@ "isHttpMetadata": false }, { - "$id": "5724", + "$id": "5726", "kind": "property", "name": "data", "serializedName": "data", "doc": "A list of items used to generate this response.", "type": { - "$ref": "5110" + "$ref": "5112" }, "optional": false, "readOnly": false, @@ -73155,13 +73181,13 @@ "isHttpMetadata": false }, { - "$id": "5725", + "$id": "5727", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Whether there are more items available.", "type": { - "$id": "5726", + "$id": "5728", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -73181,13 +73207,13 @@ "isHttpMetadata": false }, { - "$id": "5727", + "$id": "5729", "kind": "property", "name": "first_id", "serializedName": "first_id", "doc": "The ID of the first item in the list.", "type": { - "$id": "5728", + "$id": "5730", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73207,13 +73233,13 @@ "isHttpMetadata": false }, { - "$id": "5729", + "$id": "5731", "kind": "property", "name": "last_id", "serializedName": "last_id", "doc": "The ID of the last item in the list.", "type": { - "$id": "5730", + "$id": "5732", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73235,7 +73261,7 @@ ] }, { - "$id": "5731", + "$id": "5733", "kind": "model", "name": "CreateImageRequest", "namespace": "OpenAI", @@ -73244,13 +73270,13 @@ "decorators": [], "properties": [ { - "$id": "5732", + "$id": "5734", "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": "5733", + "$id": "5735", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73270,13 +73296,13 @@ "isHttpMetadata": false }, { - "$id": "5734", + "$id": "5736", "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": "5735", + "$id": "5737", "kind": "nullable", "type": { "$ref": "828" @@ -73297,16 +73323,16 @@ "isHttpMetadata": false }, { - "$id": "5736", + "$id": "5738", "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": "5737", + "$id": "5739", "kind": "nullable", "type": { - "$id": "5738", + "$id": "5740", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73328,13 +73354,13 @@ "isHttpMetadata": false }, { - "$id": "5739", + "$id": "5741", "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": "5740", + "$id": "5742", "kind": "nullable", "type": { "$ref": "833" @@ -73355,13 +73381,13 @@ "isHttpMetadata": false }, { - "$id": "5741", + "$id": "5743", "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": "5742", + "$id": "5744", "kind": "nullable", "type": { "$ref": "841" @@ -73382,13 +73408,13 @@ "isHttpMetadata": false }, { - "$id": "5743", + "$id": "5745", "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": "5744", + "$id": "5746", "kind": "nullable", "type": { "$ref": "845" @@ -73409,16 +73435,16 @@ "isHttpMetadata": false }, { - "$id": "5745", + "$id": "5747", "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": "5746", + "$id": "5748", "kind": "nullable", "type": { - "$id": "5747", + "$id": "5749", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73440,13 +73466,13 @@ "isHttpMetadata": false }, { - "$id": "5748", + "$id": "5750", "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": "5749", + "$id": "5751", "kind": "nullable", "type": { "$ref": "850" @@ -73467,13 +73493,13 @@ "isHttpMetadata": false }, { - "$id": "5750", + "$id": "5752", "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": "5751", + "$id": "5753", "kind": "nullable", "type": { "$ref": "860" @@ -73494,13 +73520,13 @@ "isHttpMetadata": false }, { - "$id": "5752", + "$id": "5754", "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": "5753", + "$id": "5755", "kind": "nullable", "type": { "$ref": "864" @@ -73521,13 +73547,13 @@ "isHttpMetadata": false }, { - "$id": "5754", + "$id": "5756", "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": "5755", + "$id": "5757", "kind": "nullable", "type": { "$ref": "869" @@ -73548,13 +73574,13 @@ "isHttpMetadata": false }, { - "$id": "5756", + "$id": "5758", "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": "5757", + "$id": "5759", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73576,7 +73602,7 @@ ] }, { - "$id": "5758", + "$id": "5760", "kind": "model", "name": "ImagesResponse", "namespace": "OpenAI", @@ -73586,18 +73612,18 @@ "decorators": [], "properties": [ { - "$id": "5759", + "$id": "5761", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the image was created.", "type": { - "$id": "5760", + "$id": "5762", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5761", + "$id": "5763", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73620,17 +73646,17 @@ "isHttpMetadata": false }, { - "$id": "5762", + "$id": "5764", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of generated images.", "type": { - "$id": "5763", + "$id": "5765", "kind": "array", "name": "ArrayImage", "valueType": { - "$id": "5764", + "$id": "5766", "kind": "model", "name": "Image", "namespace": "OpenAI", @@ -73640,13 +73666,13 @@ "decorators": [], "properties": [ { - "$id": "5765", + "$id": "5767", "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": "5766", + "$id": "5768", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -73667,13 +73693,13 @@ "isHttpMetadata": false }, { - "$id": "5767", + "$id": "5769", "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": "5768", + "$id": "5770", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -73693,13 +73719,13 @@ "isHttpMetadata": false }, { - "$id": "5769", + "$id": "5771", "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": "5770", + "$id": "5772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -73737,13 +73763,13 @@ "isHttpMetadata": false }, { - "$id": "5771", + "$id": "5773", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "For `gpt-image-1` only, the token usage information for the image generation.", "type": { - "$id": "5772", + "$id": "5774", "kind": "model", "name": "ImagesResponseUsage", "namespace": "OpenAI", @@ -73752,13 +73778,13 @@ "decorators": [], "properties": [ { - "$id": "5773", + "$id": "5775", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens (images and text) used for the image generation.", "type": { - "$id": "5774", + "$id": "5776", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73778,13 +73804,13 @@ "isHttpMetadata": false }, { - "$id": "5775", + "$id": "5777", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of tokens (images and text) in the input prompt.", "type": { - "$id": "5776", + "$id": "5778", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73804,13 +73830,13 @@ "isHttpMetadata": false }, { - "$id": "5777", + "$id": "5779", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of image tokens in the output image.", "type": { - "$id": "5778", + "$id": "5780", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73830,13 +73856,13 @@ "isHttpMetadata": false }, { - "$id": "5779", + "$id": "5781", "kind": "property", "name": "input_tokens_details", "serializedName": "input_tokens_details", "doc": "The input tokens detailed information for the image generation.", "type": { - "$id": "5780", + "$id": "5782", "kind": "model", "name": "ImagesResponseUsageInputTokensDetails", "namespace": "OpenAI", @@ -73845,13 +73871,13 @@ "decorators": [], "properties": [ { - "$id": "5781", + "$id": "5783", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens in the input prompt.", "type": { - "$id": "5782", + "$id": "5784", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73871,13 +73897,13 @@ "isHttpMetadata": false }, { - "$id": "5783", + "$id": "5785", "kind": "property", "name": "image_tokens", "serializedName": "image_tokens", "doc": "The number of image tokens in the input prompt.", "type": { - "$id": "5784", + "$id": "5786", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -73929,16 +73955,16 @@ ] }, { - "$ref": "5764" + "$ref": "5766" }, { - "$ref": "5772" + "$ref": "5774" }, { - "$ref": "5780" + "$ref": "5782" }, { - "$id": "5785", + "$id": "5787", "kind": "model", "name": "CreateImageEditRequest", "namespace": "OpenAI", @@ -73947,18 +73973,18 @@ "decorators": [], "properties": [ { - "$id": "5786", + "$id": "5788", "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": "5787", + "$id": "5789", "kind": "union", "name": "CreateImageEditRequestImage", "variantTypes": [ { - "$id": "5788", + "$id": "5790", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -73966,11 +73992,11 @@ "decorators": [] }, { - "$id": "5789", + "$id": "5791", "kind": "array", "name": "Array25", "valueType": { - "$id": "5790", + "$id": "5792", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -74005,13 +74031,13 @@ "isHttpMetadata": false }, { - "$id": "5791", + "$id": "5793", "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": "5792", + "$id": "5794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74037,13 +74063,13 @@ "isHttpMetadata": false }, { - "$id": "5793", + "$id": "5795", "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": "5794", + "$id": "5796", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -74070,13 +74096,13 @@ "isHttpMetadata": false }, { - "$id": "5795", + "$id": "5797", "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": "5796", + "$id": "5798", "kind": "nullable", "type": { "$ref": "873" @@ -74103,13 +74129,13 @@ "isHttpMetadata": false }, { - "$id": "5797", + "$id": "5799", "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": "5798", + "$id": "5800", "kind": "nullable", "type": { "$ref": "878" @@ -74136,21 +74162,21 @@ "isHttpMetadata": false }, { - "$id": "5799", + "$id": "5801", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5800", + "$id": "5802", "kind": "nullable", "type": { - "$id": "5801", + "$id": "5803", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5802", + "$id": "5804", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74180,13 +74206,13 @@ "isHttpMetadata": false }, { - "$id": "5803", + "$id": "5805", "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": "5804", + "$id": "5806", "kind": "nullable", "type": { "$ref": "882" @@ -74213,13 +74239,13 @@ "isHttpMetadata": false }, { - "$id": "5805", + "$id": "5807", "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": "5806", + "$id": "5808", "kind": "nullable", "type": { "$ref": "890" @@ -74246,13 +74272,13 @@ "isHttpMetadata": false }, { - "$id": "5807", + "$id": "5809", "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": "5808", + "$id": "5810", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74278,13 +74304,13 @@ "isHttpMetadata": false }, { - "$id": "5809", + "$id": "5811", "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": "5810", + "$id": "5812", "kind": "nullable", "type": { "$ref": "894" @@ -74313,7 +74339,7 @@ ] }, { - "$id": "5811", + "$id": "5813", "kind": "model", "name": "CreateImageVariationRequest", "namespace": "OpenAI", @@ -74322,13 +74348,13 @@ "decorators": [], "properties": [ { - "$id": "5812", + "$id": "5814", "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": "5813", + "$id": "5815", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -74355,13 +74381,13 @@ "isHttpMetadata": false }, { - "$id": "5814", + "$id": "5816", "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": "5815", + "$id": "5817", "kind": "nullable", "type": { "$ref": "901" @@ -74388,21 +74414,21 @@ "isHttpMetadata": false }, { - "$id": "5816", + "$id": "5818", "kind": "property", "name": "n", "serializedName": "n", "doc": "The number of images to generate. Must be between 1 and 10.", "type": { - "$id": "5817", + "$id": "5819", "kind": "nullable", "type": { - "$id": "5818", + "$id": "5820", "kind": "int32", "name": "OneToTenInt", "crossLanguageDefinitionId": "OpenAI.OneToTenInt", "baseType": { - "$id": "5819", + "$id": "5821", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -74432,13 +74458,13 @@ "isHttpMetadata": false }, { - "$id": "5820", + "$id": "5822", "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": "5821", + "$id": "5823", "kind": "nullable", "type": { "$ref": "904" @@ -74465,13 +74491,13 @@ "isHttpMetadata": false }, { - "$id": "5822", + "$id": "5824", "kind": "property", "name": "size", "serializedName": "size", "doc": "The size of the generated images. Must be one of `256x256`, `512x512`, or `1024x1024`.", "type": { - "$id": "5823", + "$id": "5825", "kind": "nullable", "type": { "$ref": "908" @@ -74498,13 +74524,13 @@ "isHttpMetadata": false }, { - "$id": "5824", + "$id": "5826", "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": "5825", + "$id": "5827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74532,7 +74558,7 @@ ] }, { - "$id": "5826", + "$id": "5828", "kind": "model", "name": "CreateMessageRequest", "namespace": "OpenAI", @@ -74541,7 +74567,7 @@ "decorators": [], "properties": [ { - "$id": "5827", + "$id": "5829", "kind": "property", "name": "role", "serializedName": "role", @@ -74563,16 +74589,16 @@ "isHttpMetadata": false }, { - "$id": "5828", + "$id": "5830", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "5829", + "$id": "5831", "kind": "array", "name": "ArrayMessageContent", "valueType": { - "$id": "5830", + "$id": "5832", "kind": "model", "name": "MessageContent", "namespace": "OpenAI", @@ -74582,7 +74608,7 @@ "doc": "Represents a single piece of content in an Assistants API message.", "decorators": [], "discriminatorProperty": { - "$id": "5831", + "$id": "5833", "kind": "property", "name": "type", "serializedName": "type", @@ -74604,12 +74630,12 @@ }, "properties": [ { - "$ref": "5831" + "$ref": "5833" } ], "discriminatedSubtypes": { "image_file": { - "$id": "5832", + "$id": "5834", "kind": "model", "name": "MessageContentImageFileObject", "namespace": "OpenAI", @@ -74620,17 +74646,17 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "5830" + "$ref": "5832" }, "properties": [ { - "$id": "5833", + "$id": "5835", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image_file`.", "type": { - "$id": "5834", + "$id": "5836", "kind": "enumvalue", "name": "image_file", "value": "image_file", @@ -74638,14 +74664,14 @@ "$ref": "918" }, "enumType": { - "$id": "5835", + "$id": "5837", "kind": "enum", "decorators": [], "name": "MessageContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5836", + "$id": "5838", "kind": "string", "decorators": [], "name": "string", @@ -74654,59 +74680,59 @@ }, "values": [ { - "$id": "5837", + "$id": "5839", "kind": "enumvalue", "decorators": [], "name": "text", "doc": "The content is a text message.", "value": "text", "valueType": { - "$ref": "5836" + "$ref": "5838" }, "enumType": { - "$ref": "5835" + "$ref": "5837" } }, { - "$id": "5838", + "$id": "5840", "kind": "enumvalue", "decorators": [], "name": "image_file", "doc": "The content is an image file.", "value": "image_file", "valueType": { - "$ref": "5836" + "$ref": "5838" }, "enumType": { - "$ref": "5835" + "$ref": "5837" } }, { - "$id": "5839", + "$id": "5841", "kind": "enumvalue", "decorators": [], "name": "image_url", "doc": "The content is an image URL.", "value": "image_url", "valueType": { - "$ref": "5836" + "$ref": "5838" }, "enumType": { - "$ref": "5835" + "$ref": "5837" } }, { - "$id": "5840", + "$id": "5842", "kind": "enumvalue", "decorators": [], "name": "refusal", "doc": "The content is a refusal message.", "value": "refusal", "valueType": { - "$ref": "5836" + "$ref": "5838" }, "enumType": { - "$ref": "5835" + "$ref": "5837" } } ], @@ -74736,12 +74762,12 @@ "isHttpMetadata": false }, { - "$id": "5841", + "$id": "5843", "kind": "property", "name": "image_file", "serializedName": "image_file", "type": { - "$id": "5842", + "$id": "5844", "kind": "model", "name": "MessageContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -74750,13 +74776,13 @@ "decorators": [], "properties": [ { - "$id": "5843", + "$id": "5845", "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": "5844", + "$id": "5846", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74776,7 +74802,7 @@ "isHttpMetadata": false }, { - "$id": "5845", + "$id": "5847", "kind": "property", "name": "detail", "serializedName": "detail", @@ -74815,7 +74841,7 @@ ] }, "text": { - "$id": "5846", + "$id": "5848", "kind": "model", "name": "MessageContentTextObject", "namespace": "OpenAI", @@ -74826,17 +74852,17 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "5830" + "$ref": "5832" }, "properties": [ { - "$id": "5847", + "$id": "5849", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `text`.", "type": { - "$id": "5848", + "$id": "5850", "kind": "enumvalue", "name": "text", "value": "text", @@ -74844,7 +74870,7 @@ "$ref": "918" }, "enumType": { - "$ref": "5835" + "$ref": "5837" }, "doc": "The content is a text message.", "decorators": [] @@ -74863,24 +74889,24 @@ "isHttpMetadata": false }, { - "$id": "5849", + "$id": "5851", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "5850", + "$id": "5852", "kind": "union", "name": "MessageContentTextObjectText", "variantTypes": [ { - "$id": "5851", + "$id": "5853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, { - "$id": "5852", + "$id": "5854", "kind": "model", "name": "MessageContentTextObjectText1", "namespace": "OpenAI", @@ -74889,12 +74915,12 @@ "decorators": [], "properties": [ { - "$id": "5853", + "$id": "5855", "kind": "property", "name": "value", "serializedName": "value", "type": { - "$id": "5854", + "$id": "5856", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -74914,16 +74940,16 @@ "isHttpMetadata": false }, { - "$id": "5855", + "$id": "5857", "kind": "property", "name": "annotations", "serializedName": "annotations", "type": { - "$id": "5856", + "$id": "5858", "kind": "array", "name": "ArrayMessageContentTextObjectAnnotation", "valueType": { - "$id": "5857", + "$id": "5859", "kind": "model", "name": "MessageContentTextObjectAnnotation", "namespace": "OpenAI", @@ -74932,7 +74958,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "5858", + "$id": "5860", "kind": "property", "name": "type", "serializedName": "type", @@ -74955,12 +74981,12 @@ }, "properties": [ { - "$ref": "5858" + "$ref": "5860" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "5859", + "$id": "5861", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -74971,17 +74997,17 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "5857" + "$ref": "5859" }, "properties": [ { - "$id": "5860", + "$id": "5862", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_citation`.", "type": { - "$id": "5861", + "$id": "5863", "kind": "enumvalue", "name": "file_citation", "value": "file_citation", @@ -74989,14 +75015,14 @@ "$ref": "929" }, "enumType": { - "$id": "5862", + "$id": "5864", "kind": "enum", "decorators": [], "name": "MessageContentTextAnnotationType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "5863", + "$id": "5865", "kind": "string", "decorators": [], "name": "string", @@ -75005,29 +75031,29 @@ }, "values": [ { - "$id": "5864", + "$id": "5866", "kind": "enumvalue", "decorators": [], "name": "file_citation", "value": "file_citation", "valueType": { - "$ref": "5863" + "$ref": "5865" }, "enumType": { - "$ref": "5862" + "$ref": "5864" } }, { - "$id": "5865", + "$id": "5867", "kind": "enumvalue", "decorators": [], "name": "file_path", "value": "file_path", "valueType": { - "$ref": "5863" + "$ref": "5865" }, "enumType": { - "$ref": "5862" + "$ref": "5864" } } ], @@ -75056,13 +75082,13 @@ "isHttpMetadata": false }, { - "$id": "5866", + "$id": "5868", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5867", + "$id": "5869", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75082,12 +75108,12 @@ "isHttpMetadata": false }, { - "$id": "5868", + "$id": "5870", "kind": "property", "name": "file_citation", "serializedName": "file_citation", "type": { - "$id": "5869", + "$id": "5871", "kind": "model", "name": "MessageContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -75096,13 +75122,13 @@ "decorators": [], "properties": [ { - "$id": "5870", + "$id": "5872", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "5871", + "$id": "5873", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75137,12 +75163,12 @@ "isHttpMetadata": false }, { - "$id": "5872", + "$id": "5874", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5873", + "$id": "5875", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75162,12 +75188,12 @@ "isHttpMetadata": false }, { - "$id": "5874", + "$id": "5876", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5875", + "$id": "5877", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75189,7 +75215,7 @@ ] }, "file_path": { - "$id": "5876", + "$id": "5878", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -75200,17 +75226,17 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "5857" + "$ref": "5859" }, "properties": [ { - "$id": "5877", + "$id": "5879", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `file_path`.", "type": { - "$id": "5878", + "$id": "5880", "kind": "enumvalue", "name": "file_path", "value": "file_path", @@ -75218,7 +75244,7 @@ "$ref": "929" }, "enumType": { - "$ref": "5862" + "$ref": "5864" }, "decorators": [] }, @@ -75236,13 +75262,13 @@ "isHttpMetadata": false }, { - "$id": "5879", + "$id": "5881", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "5880", + "$id": "5882", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75262,12 +75288,12 @@ "isHttpMetadata": false }, { - "$id": "5881", + "$id": "5883", "kind": "property", "name": "file_path", "serializedName": "file_path", "type": { - "$id": "5882", + "$id": "5884", "kind": "model", "name": "MessageContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -75276,13 +75302,13 @@ "decorators": [], "properties": [ { - "$id": "5883", + "$id": "5885", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "5884", + "$id": "5886", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75317,12 +75343,12 @@ "isHttpMetadata": false }, { - "$id": "5885", + "$id": "5887", "kind": "property", "name": "start_index", "serializedName": "start_index", "type": { - "$id": "5886", + "$id": "5888", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75342,12 +75368,12 @@ "isHttpMetadata": false }, { - "$id": "5887", + "$id": "5889", "kind": "property", "name": "end_index", "serializedName": "end_index", "type": { - "$id": "5888", + "$id": "5890", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75408,7 +75434,7 @@ ] }, "refusal": { - "$id": "5889", + "$id": "5891", "kind": "model", "name": "MessageContentRefusalObject", "namespace": "OpenAI", @@ -75419,17 +75445,17 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "5830" + "$ref": "5832" }, "properties": [ { - "$id": "5890", + "$id": "5892", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `refusal`.", "type": { - "$id": "5891", + "$id": "5893", "kind": "enumvalue", "name": "refusal", "value": "refusal", @@ -75437,7 +75463,7 @@ "$ref": "918" }, "enumType": { - "$ref": "5835" + "$ref": "5837" }, "doc": "The content is a refusal message.", "decorators": [] @@ -75456,12 +75482,12 @@ "isHttpMetadata": false }, { - "$id": "5892", + "$id": "5894", "kind": "property", "name": "refusal", "serializedName": "refusal", "type": { - "$id": "5893", + "$id": "5895", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75483,7 +75509,7 @@ ] }, "image_url": { - "$id": "5894", + "$id": "5896", "kind": "model", "name": "MessageContentImageUrlObject", "namespace": "OpenAI", @@ -75494,17 +75520,17 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "5830" + "$ref": "5832" }, "properties": [ { - "$id": "5895", + "$id": "5897", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content part.", "type": { - "$id": "5896", + "$id": "5898", "kind": "enumvalue", "name": "image_url", "value": "image_url", @@ -75512,7 +75538,7 @@ "$ref": "918" }, "enumType": { - "$ref": "5835" + "$ref": "5837" }, "doc": "The content is an image URL.", "decorators": [] @@ -75531,12 +75557,12 @@ "isHttpMetadata": false }, { - "$id": "5897", + "$id": "5899", "kind": "property", "name": "image_url", "serializedName": "image_url", "type": { - "$id": "5898", + "$id": "5900", "kind": "model", "name": "MessageContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -75545,13 +75571,13 @@ "decorators": [], "properties": [ { - "$id": "5899", + "$id": "5901", "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": "5900", + "$id": "5902", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -75571,7 +75597,7 @@ "isHttpMetadata": false }, { - "$id": "5901", + "$id": "5903", "kind": "property", "name": "detail", "serializedName": "detail", @@ -75628,20 +75654,20 @@ "isHttpMetadata": false }, { - "$id": "5902", + "$id": "5904", "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": "5903", + "$id": "5905", "kind": "nullable", "type": { - "$id": "5904", + "$id": "5906", "kind": "array", "name": "Array26", "valueType": { - "$id": "5905", + "$id": "5907", "kind": "model", "name": "CreateMessageRequestAttachment", "namespace": "OpenAI", @@ -75650,13 +75676,13 @@ "decorators": [], "properties": [ { - "$id": "5906", + "$id": "5908", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "5907", + "$id": "5909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75676,17 +75702,17 @@ "isHttpMetadata": false }, { - "$id": "5908", + "$id": "5910", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "5909", + "$id": "5911", "kind": "array", "name": "Array27", "valueType": { - "$id": "5910", + "$id": "5912", "kind": "union", "name": "CreateMessageRequestAttachmentTool", "variantTypes": [ @@ -75694,7 +75720,7 @@ "$ref": "2331" }, { - "$id": "5911", + "$id": "5913", "kind": "model", "name": "AssistantToolsFileSearchTypeOnly", "namespace": "OpenAI", @@ -75703,7 +75729,7 @@ "decorators": [], "properties": [ { - "$id": "5912", + "$id": "5914", "kind": "property", "name": "type", "serializedName": "type", @@ -75767,7 +75793,7 @@ "isHttpMetadata": false }, { - "$id": "5913", + "$id": "5915", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -75790,53 +75816,53 @@ } ] }, - { - "$ref": "5830" - }, { "$ref": "5832" }, { - "$ref": "5842" + "$ref": "5834" }, { - "$ref": "5846" + "$ref": "5844" }, { - "$ref": "5852" + "$ref": "5848" }, { - "$ref": "5857" + "$ref": "5854" }, { "$ref": "5859" }, { - "$ref": "5869" + "$ref": "5861" + }, + { + "$ref": "5871" }, { - "$ref": "5876" + "$ref": "5878" }, { - "$ref": "5882" + "$ref": "5884" }, { - "$ref": "5889" + "$ref": "5891" }, { - "$ref": "5894" + "$ref": "5896" }, { - "$ref": "5898" + "$ref": "5900" }, { - "$ref": "5905" + "$ref": "5907" }, { - "$ref": "5911" + "$ref": "5913" }, { - "$id": "5914", + "$id": "5916", "kind": "model", "name": "MessageObject", "namespace": "OpenAI", @@ -75846,13 +75872,13 @@ "decorators": [], "properties": [ { - "$id": "5915", + "$id": "5917", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "5916", + "$id": "5918", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75872,7 +75898,7 @@ "isHttpMetadata": false }, { - "$id": "5917", + "$id": "5919", "kind": "property", "name": "object", "serializedName": "object", @@ -75894,18 +75920,18 @@ "isHttpMetadata": false }, { - "$id": "5918", + "$id": "5920", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the message was created.", "type": { - "$id": "5919", + "$id": "5921", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5920", + "$id": "5922", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -75928,13 +75954,13 @@ "isHttpMetadata": false }, { - "$id": "5921", + "$id": "5923", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The [thread](/docs/api-reference/threads) ID that this message belongs to.", "type": { - "$id": "5922", + "$id": "5924", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -75954,7 +75980,7 @@ "isHttpMetadata": false }, { - "$id": "5923", + "$id": "5925", "kind": "property", "name": "status", "serializedName": "status", @@ -75976,16 +76002,16 @@ "isHttpMetadata": false }, { - "$id": "5924", + "$id": "5926", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "On an incomplete message, details about why the message is incomplete.", "type": { - "$id": "5925", + "$id": "5927", "kind": "nullable", "type": { - "$id": "5926", + "$id": "5928", "kind": "model", "name": "MessageObjectIncompleteDetails1", "namespace": "OpenAI", @@ -75994,7 +76020,7 @@ "decorators": [], "properties": [ { - "$id": "5927", + "$id": "5929", "kind": "property", "name": "reason", "serializedName": "reason", @@ -76033,21 +76059,21 @@ "isHttpMetadata": false }, { - "$id": "5928", + "$id": "5930", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the message was completed.", "type": { - "$id": "5929", + "$id": "5931", "kind": "nullable", "type": { - "$id": "5930", + "$id": "5932", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5931", + "$id": "5933", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76072,21 +76098,21 @@ "isHttpMetadata": false }, { - "$id": "5932", + "$id": "5934", "kind": "property", "name": "incomplete_at", "serializedName": "incomplete_at", "doc": "The Unix timestamp (in seconds) for when the message was marked as incomplete.", "type": { - "$id": "5933", + "$id": "5935", "kind": "nullable", "type": { - "$id": "5934", + "$id": "5936", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "5935", + "$id": "5937", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -76111,7 +76137,7 @@ "isHttpMetadata": false }, { - "$id": "5936", + "$id": "5938", "kind": "property", "name": "role", "serializedName": "role", @@ -76133,13 +76159,13 @@ "isHttpMetadata": false }, { - "$id": "5937", + "$id": "5939", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$ref": "5829" + "$ref": "5831" }, "optional": false, "readOnly": true, @@ -76155,16 +76181,16 @@ "isHttpMetadata": false }, { - "$id": "5938", + "$id": "5940", "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": "5939", + "$id": "5941", "kind": "nullable", "type": { - "$id": "5940", + "$id": "5942", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76186,16 +76212,16 @@ "isHttpMetadata": false }, { - "$id": "5941", + "$id": "5943", "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": "5942", + "$id": "5944", "kind": "nullable", "type": { - "$id": "5943", + "$id": "5945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76217,20 +76243,20 @@ "isHttpMetadata": false }, { - "$id": "5944", + "$id": "5946", "kind": "property", "name": "attachments", "serializedName": "attachments", "doc": "A list of files attached to the message, and the tools they were added to.", "type": { - "$id": "5945", + "$id": "5947", "kind": "nullable", "type": { - "$id": "5946", + "$id": "5948", "kind": "array", "name": "Array28", "valueType": { - "$id": "5947", + "$id": "5949", "kind": "model", "name": "MessageObjectAttachment", "namespace": "OpenAI", @@ -76239,13 +76265,13 @@ "decorators": [], "properties": [ { - "$id": "5948", + "$id": "5950", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to attach to the message.", "type": { - "$id": "5949", + "$id": "5951", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76265,17 +76291,17 @@ "isHttpMetadata": false }, { - "$id": "5950", + "$id": "5952", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "The tools to add this file to.", "type": { - "$id": "5951", + "$id": "5953", "kind": "array", "name": "Array29", "valueType": { - "$id": "5952", + "$id": "5954", "kind": "union", "name": "MessageObjectAttachmentTool", "variantTypes": [ @@ -76283,7 +76309,7 @@ "$ref": "2331" }, { - "$ref": "5911" + "$ref": "5913" } ], "namespace": "OpenAI", @@ -76326,7 +76352,7 @@ "isHttpMetadata": false }, { - "$id": "5953", + "$id": "5955", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -76350,13 +76376,13 @@ ] }, { - "$ref": "5926" + "$ref": "5928" }, { - "$ref": "5947" + "$ref": "5949" }, { - "$id": "5954", + "$id": "5956", "kind": "model", "name": "ListMessagesResponse", "namespace": "OpenAI", @@ -76365,7 +76391,7 @@ "decorators": [], "properties": [ { - "$id": "5955", + "$id": "5957", "kind": "property", "name": "object", "serializedName": "object", @@ -76386,16 +76412,16 @@ "isHttpMetadata": false }, { - "$id": "5956", + "$id": "5958", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "5957", + "$id": "5959", "kind": "array", "name": "ArrayMessageObject", "valueType": { - "$ref": "5914" + "$ref": "5916" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -76414,12 +76440,12 @@ "isHttpMetadata": false }, { - "$id": "5958", + "$id": "5960", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "5959", + "$id": "5961", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76439,12 +76465,12 @@ "isHttpMetadata": false }, { - "$id": "5960", + "$id": "5962", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "5961", + "$id": "5963", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76464,12 +76490,12 @@ "isHttpMetadata": false }, { - "$id": "5962", + "$id": "5964", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "5963", + "$id": "5965", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -76491,7 +76517,7 @@ ] }, { - "$id": "5964", + "$id": "5966", "kind": "model", "name": "ModifyMessageRequest", "namespace": "OpenAI", @@ -76500,7 +76526,7 @@ "decorators": [], "properties": [ { - "$id": "5965", + "$id": "5967", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -76524,7 +76550,7 @@ ] }, { - "$id": "5966", + "$id": "5968", "kind": "model", "name": "DeleteMessageResponse", "namespace": "OpenAI", @@ -76533,12 +76559,12 @@ "decorators": [], "properties": [ { - "$id": "5967", + "$id": "5969", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "5968", + "$id": "5970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76558,12 +76584,12 @@ "isHttpMetadata": false }, { - "$id": "5969", + "$id": "5971", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "5970", + "$id": "5972", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -76583,7 +76609,7 @@ "isHttpMetadata": false }, { - "$id": "5971", + "$id": "5973", "kind": "property", "name": "object", "serializedName": "object", @@ -76606,7 +76632,7 @@ ] }, { - "$id": "5972", + "$id": "5974", "kind": "model", "name": "CreateModerationRequest", "namespace": "OpenAI", @@ -76615,18 +76641,18 @@ "decorators": [], "properties": [ { - "$id": "5973", + "$id": "5975", "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": "5974", + "$id": "5976", "kind": "union", "name": "CreateModerationRequestInput", "variantTypes": [ { - "$id": "5975", + "$id": "5977", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76636,16 +76662,16 @@ "$ref": "2371" }, { - "$id": "5976", + "$id": "5978", "kind": "array", "name": "Array30", "valueType": { - "$id": "5977", + "$id": "5979", "kind": "union", "name": "CreateModerationRequestInput1", "variantTypes": [ { - "$id": "5978", + "$id": "5980", "kind": "model", "name": "CreateModerationRequestInput2", "namespace": "OpenAI", @@ -76654,7 +76680,7 @@ "decorators": [], "properties": [ { - "$id": "5979", + "$id": "5981", "kind": "property", "name": "type", "serializedName": "type", @@ -76676,13 +76702,13 @@ "isHttpMetadata": false }, { - "$id": "5980", + "$id": "5982", "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": "5981", + "$id": "5983", "kind": "model", "name": "CreateModerationRequestInputImageUrl", "namespace": "OpenAI", @@ -76691,13 +76717,13 @@ "decorators": [], "properties": [ { - "$id": "5982", + "$id": "5984", "kind": "property", "name": "url", "serializedName": "url", "doc": "Either a URL of the image or the base64 encoded image data.", "type": { - "$id": "5983", + "$id": "5985", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76734,7 +76760,7 @@ ] }, { - "$id": "5984", + "$id": "5986", "kind": "model", "name": "CreateModerationRequestInput3", "namespace": "OpenAI", @@ -76743,7 +76769,7 @@ "decorators": [], "properties": [ { - "$id": "5985", + "$id": "5987", "kind": "property", "name": "type", "serializedName": "type", @@ -76765,13 +76791,13 @@ "isHttpMetadata": false }, { - "$id": "5986", + "$id": "5988", "kind": "property", "name": "text", "serializedName": "text", "doc": "A string of text to classify.", "type": { - "$id": "5987", + "$id": "5989", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76817,7 +76843,7 @@ "isHttpMetadata": false }, { - "$id": "5988", + "$id": "5990", "kind": "property", "name": "model", "serializedName": "model", @@ -76841,16 +76867,16 @@ ] }, { - "$ref": "5978" + "$ref": "5980" }, { - "$ref": "5981" + "$ref": "5983" }, { - "$ref": "5984" + "$ref": "5986" }, { - "$id": "5989", + "$id": "5991", "kind": "model", "name": "CreateModerationResponse", "namespace": "OpenAI", @@ -76860,13 +76886,13 @@ "decorators": [], "properties": [ { - "$id": "5990", + "$id": "5992", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique identifier for the moderation request.", "type": { - "$id": "5991", + "$id": "5993", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76886,13 +76912,13 @@ "isHttpMetadata": false }, { - "$id": "5992", + "$id": "5994", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used to generate the moderation results.", "type": { - "$id": "5993", + "$id": "5995", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -76912,17 +76938,17 @@ "isHttpMetadata": false }, { - "$id": "5994", + "$id": "5996", "kind": "property", "name": "results", "serializedName": "results", "doc": "A list of moderation objects.", "type": { - "$id": "5995", + "$id": "5997", "kind": "array", "name": "ArrayCreateModerationResponseResult", "valueType": { - "$id": "5996", + "$id": "5998", "kind": "model", "name": "CreateModerationResponseResult", "namespace": "OpenAI", @@ -76931,13 +76957,13 @@ "decorators": [], "properties": [ { - "$id": "5997", + "$id": "5999", "kind": "property", "name": "flagged", "serializedName": "flagged", "doc": "Whether any of the below categories are flagged.", "type": { - "$id": "5998", + "$id": "6000", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -76957,13 +76983,13 @@ "isHttpMetadata": false }, { - "$id": "5999", + "$id": "6001", "kind": "property", "name": "categories", "serializedName": "categories", "doc": "A list of the categories, and whether they are flagged or not.", "type": { - "$id": "6000", + "$id": "6002", "kind": "model", "name": "CreateModerationResponseResultCategories", "namespace": "OpenAI", @@ -76972,13 +76998,13 @@ "decorators": [], "properties": [ { - "$id": "6001", + "$id": "6003", "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": "6002", + "$id": "6004", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -76998,13 +77024,13 @@ "isHttpMetadata": false }, { - "$id": "6003", + "$id": "6005", "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": "6004", + "$id": "6006", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77024,13 +77050,13 @@ "isHttpMetadata": false }, { - "$id": "6005", + "$id": "6007", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "Content that expresses, incites, or promotes harassing language towards any target.", "type": { - "$id": "6006", + "$id": "6008", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77050,13 +77076,13 @@ "isHttpMetadata": false }, { - "$id": "6007", + "$id": "6009", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "Harassment content that also includes violence or serious harm towards any target.", "type": { - "$id": "6008", + "$id": "6010", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77076,13 +77102,13 @@ "isHttpMetadata": false }, { - "$id": "6009", + "$id": "6011", "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": "6010", + "$id": "6012", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77102,13 +77128,13 @@ "isHttpMetadata": false }, { - "$id": "6011", + "$id": "6013", "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": "6012", + "$id": "6014", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77128,13 +77154,13 @@ "isHttpMetadata": false }, { - "$id": "6013", + "$id": "6015", "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": "6014", + "$id": "6016", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77154,13 +77180,13 @@ "isHttpMetadata": false }, { - "$id": "6015", + "$id": "6017", "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": "6016", + "$id": "6018", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77180,13 +77206,13 @@ "isHttpMetadata": false }, { - "$id": "6017", + "$id": "6019", "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": "6018", + "$id": "6020", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77206,13 +77232,13 @@ "isHttpMetadata": false }, { - "$id": "6019", + "$id": "6021", "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": "6020", + "$id": "6022", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77232,13 +77258,13 @@ "isHttpMetadata": false }, { - "$id": "6021", + "$id": "6023", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "Sexual content that includes an individual who is under 18 years old.", "type": { - "$id": "6022", + "$id": "6024", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77258,13 +77284,13 @@ "isHttpMetadata": false }, { - "$id": "6023", + "$id": "6025", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "Content that depicts death, violence, or physical injury.", "type": { - "$id": "6024", + "$id": "6026", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77284,13 +77310,13 @@ "isHttpMetadata": false }, { - "$id": "6025", + "$id": "6027", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "Content that depicts death, violence, or physical injury in graphic detail.", "type": { - "$id": "6026", + "$id": "6028", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -77325,13 +77351,13 @@ "isHttpMetadata": false }, { - "$id": "6027", + "$id": "6029", "kind": "property", "name": "category_scores", "serializedName": "category_scores", "doc": "A list of the categories along with their scores as predicted by model.", "type": { - "$id": "6028", + "$id": "6030", "kind": "model", "name": "CreateModerationResponseResultCategoryScores", "namespace": "OpenAI", @@ -77340,13 +77366,13 @@ "decorators": [], "properties": [ { - "$id": "6029", + "$id": "6031", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The score for the category 'hate'.", "type": { - "$id": "6030", + "$id": "6032", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77366,13 +77392,13 @@ "isHttpMetadata": false }, { - "$id": "6031", + "$id": "6033", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The score for the category 'hate/threatening'.", "type": { - "$id": "6032", + "$id": "6034", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77392,13 +77418,13 @@ "isHttpMetadata": false }, { - "$id": "6033", + "$id": "6035", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The score for the category 'harassment'.", "type": { - "$id": "6034", + "$id": "6036", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77418,13 +77444,13 @@ "isHttpMetadata": false }, { - "$id": "6035", + "$id": "6037", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The score for the category 'harassment/threatening'.", "type": { - "$id": "6036", + "$id": "6038", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77444,13 +77470,13 @@ "isHttpMetadata": false }, { - "$id": "6037", + "$id": "6039", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The score for the category 'illicit'.", "type": { - "$id": "6038", + "$id": "6040", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77470,13 +77496,13 @@ "isHttpMetadata": false }, { - "$id": "6039", + "$id": "6041", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The score for the category 'illicit/violent'.", "type": { - "$id": "6040", + "$id": "6042", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77496,13 +77522,13 @@ "isHttpMetadata": false }, { - "$id": "6041", + "$id": "6043", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The score for the category 'self-harm'.", "type": { - "$id": "6042", + "$id": "6044", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77522,13 +77548,13 @@ "isHttpMetadata": false }, { - "$id": "6043", + "$id": "6045", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The score for the category 'self-harm/intent'.", "type": { - "$id": "6044", + "$id": "6046", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77548,13 +77574,13 @@ "isHttpMetadata": false }, { - "$id": "6045", + "$id": "6047", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The score for the category 'self-harm/instructions'.", "type": { - "$id": "6046", + "$id": "6048", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77574,13 +77600,13 @@ "isHttpMetadata": false }, { - "$id": "6047", + "$id": "6049", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The score for the category 'sexual'.", "type": { - "$id": "6048", + "$id": "6050", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77600,13 +77626,13 @@ "isHttpMetadata": false }, { - "$id": "6049", + "$id": "6051", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The score for the category 'sexual/minors'.", "type": { - "$id": "6050", + "$id": "6052", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77626,13 +77652,13 @@ "isHttpMetadata": false }, { - "$id": "6051", + "$id": "6053", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The score for the category 'violence'.", "type": { - "$id": "6052", + "$id": "6054", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77652,13 +77678,13 @@ "isHttpMetadata": false }, { - "$id": "6053", + "$id": "6055", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The score for the category 'violence/graphic'.", "type": { - "$id": "6054", + "$id": "6056", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -77693,13 +77719,13 @@ "isHttpMetadata": false }, { - "$id": "6055", + "$id": "6057", "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": "6056", + "$id": "6058", "kind": "model", "name": "CreateModerationResponseResultCategoryAppliedInputTypes", "namespace": "OpenAI", @@ -77708,17 +77734,17 @@ "decorators": [], "properties": [ { - "$id": "6057", + "$id": "6059", "kind": "property", "name": "hate", "serializedName": "hate", "doc": "The applied input type(s) for the category 'hate'.", "type": { - "$id": "6058", + "$id": "6060", "kind": "array", "name": "Array31", "valueType": { - "$id": "6059", + "$id": "6061", "kind": "enumvalue", "name": "text", "value": "text", @@ -77726,14 +77752,14 @@ "$ref": "1440" }, "enumType": { - "$id": "6060", + "$id": "6062", "kind": "enum", "decorators": [], "name": "ModerationAppliedInputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6061", + "$id": "6063", "kind": "string", "decorators": [], "name": "string", @@ -77742,29 +77768,29 @@ }, "values": [ { - "$id": "6062", + "$id": "6064", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "6061" + "$ref": "6063" }, "enumType": { - "$ref": "6060" + "$ref": "6062" } }, { - "$id": "6063", + "$id": "6065", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6061" + "$ref": "6063" }, "enumType": { - "$ref": "6060" + "$ref": "6062" } } ], @@ -77796,13 +77822,13 @@ "isHttpMetadata": false }, { - "$id": "6064", + "$id": "6066", "kind": "property", "name": "hate/threatening", "serializedName": "hate/threatening", "doc": "The applied input type(s) for the category 'hate/threatening'.", "type": { - "$ref": "6058" + "$ref": "6060" }, "optional": false, "readOnly": false, @@ -77818,13 +77844,13 @@ "isHttpMetadata": false }, { - "$id": "6065", + "$id": "6067", "kind": "property", "name": "harassment", "serializedName": "harassment", "doc": "The applied input type(s) for the category 'harassment'.", "type": { - "$ref": "6058" + "$ref": "6060" }, "optional": false, "readOnly": false, @@ -77840,13 +77866,13 @@ "isHttpMetadata": false }, { - "$id": "6066", + "$id": "6068", "kind": "property", "name": "harassment/threatening", "serializedName": "harassment/threatening", "doc": "The applied input type(s) for the category 'harassment/threatening'.", "type": { - "$ref": "6058" + "$ref": "6060" }, "optional": false, "readOnly": false, @@ -77862,13 +77888,13 @@ "isHttpMetadata": false }, { - "$id": "6067", + "$id": "6069", "kind": "property", "name": "illicit", "serializedName": "illicit", "doc": "The applied input type(s) for the category 'illicit'.", "type": { - "$ref": "6058" + "$ref": "6060" }, "optional": false, "readOnly": false, @@ -77884,13 +77910,13 @@ "isHttpMetadata": false }, { - "$id": "6068", + "$id": "6070", "kind": "property", "name": "illicit/violent", "serializedName": "illicit/violent", "doc": "The applied input type(s) for the category 'illicit/violent'.", "type": { - "$ref": "6058" + "$ref": "6060" }, "optional": false, "readOnly": false, @@ -77906,25 +77932,25 @@ "isHttpMetadata": false }, { - "$id": "6069", + "$id": "6071", "kind": "property", "name": "self-harm", "serializedName": "self-harm", "doc": "The applied input type(s) for the category 'self-harm'.", "type": { - "$id": "6070", + "$id": "6072", "kind": "array", "name": "Array32", "valueType": { - "$id": "6071", + "$id": "6073", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarm", "variantTypes": [ { - "$ref": "6059" + "$ref": "6061" }, { - "$id": "6072", + "$id": "6074", "kind": "enumvalue", "name": "image", "value": "image", @@ -77932,7 +77958,7 @@ "$ref": "1440" }, "enumType": { - "$ref": "6060" + "$ref": "6062" }, "decorators": [] } @@ -77957,25 +77983,25 @@ "isHttpMetadata": false }, { - "$id": "6073", + "$id": "6075", "kind": "property", "name": "self-harm/intent", "serializedName": "self-harm/intent", "doc": "The applied input type(s) for the category 'self-harm/intent'.", "type": { - "$id": "6074", + "$id": "6076", "kind": "array", "name": "Array33", "valueType": { - "$id": "6075", + "$id": "6077", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmIntent", "variantTypes": [ { - "$ref": "6059" + "$ref": "6061" }, { - "$ref": "6072" + "$ref": "6074" } ], "namespace": "OpenAI", @@ -77998,25 +78024,25 @@ "isHttpMetadata": false }, { - "$id": "6076", + "$id": "6078", "kind": "property", "name": "self-harm/instructions", "serializedName": "self-harm/instructions", "doc": "The applied input type(s) for the category 'self-harm/instructions'.", "type": { - "$id": "6077", + "$id": "6079", "kind": "array", "name": "Array34", "valueType": { - "$id": "6078", + "$id": "6080", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSelfHarmInstruction", "variantTypes": [ { - "$ref": "6059" + "$ref": "6061" }, { - "$ref": "6072" + "$ref": "6074" } ], "namespace": "OpenAI", @@ -78039,25 +78065,25 @@ "isHttpMetadata": false }, { - "$id": "6079", + "$id": "6081", "kind": "property", "name": "sexual", "serializedName": "sexual", "doc": "The applied input type(s) for the category 'sexual'.", "type": { - "$id": "6080", + "$id": "6082", "kind": "array", "name": "Array35", "valueType": { - "$id": "6081", + "$id": "6083", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesSexual", "variantTypes": [ { - "$ref": "6059" + "$ref": "6061" }, { - "$ref": "6072" + "$ref": "6074" } ], "namespace": "OpenAI", @@ -78080,13 +78106,13 @@ "isHttpMetadata": false }, { - "$id": "6082", + "$id": "6084", "kind": "property", "name": "sexual/minors", "serializedName": "sexual/minors", "doc": "The applied input type(s) for the category 'sexual/minors'.", "type": { - "$ref": "6058" + "$ref": "6060" }, "optional": false, "readOnly": false, @@ -78102,25 +78128,25 @@ "isHttpMetadata": false }, { - "$id": "6083", + "$id": "6085", "kind": "property", "name": "violence", "serializedName": "violence", "doc": "The applied input type(s) for the category 'violence'.", "type": { - "$id": "6084", + "$id": "6086", "kind": "array", "name": "Array36", "valueType": { - "$id": "6085", + "$id": "6087", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolence", "variantTypes": [ { - "$ref": "6059" + "$ref": "6061" }, { - "$ref": "6072" + "$ref": "6074" } ], "namespace": "OpenAI", @@ -78143,25 +78169,25 @@ "isHttpMetadata": false }, { - "$id": "6086", + "$id": "6088", "kind": "property", "name": "violence/graphic", "serializedName": "violence/graphic", "doc": "The applied input type(s) for the category 'violence/graphic'.", "type": { - "$id": "6087", + "$id": "6089", "kind": "array", "name": "Array37", "valueType": { - "$id": "6088", + "$id": "6090", "kind": "union", "name": "CreateModerationResponseResultCategoryAppliedInputTypesViolenceGraphic", "variantTypes": [ { - "$ref": "6059" + "$ref": "6061" }, { - "$ref": "6072" + "$ref": "6074" } ], "namespace": "OpenAI", @@ -78219,19 +78245,19 @@ ] }, { - "$ref": "5996" + "$ref": "5998" }, { - "$ref": "6000" + "$ref": "6002" }, { - "$ref": "6028" + "$ref": "6030" }, { - "$ref": "6056" + "$ref": "6058" }, { - "$id": "6089", + "$id": "6091", "kind": "model", "name": "CreateThreadAndRunRequest", "namespace": "OpenAI", @@ -78240,13 +78266,13 @@ "decorators": [], "properties": [ { - "$id": "6090", + "$id": "6092", "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": "6091", + "$id": "6093", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78266,12 +78292,12 @@ "isHttpMetadata": false }, { - "$id": "6092", + "$id": "6094", "kind": "property", "name": "thread", "serializedName": "thread", "type": { - "$id": "6093", + "$id": "6095", "kind": "model", "name": "CreateThreadRequest", "namespace": "OpenAI", @@ -78281,17 +78307,17 @@ "decorators": [], "properties": [ { - "$id": "6094", + "$id": "6096", "kind": "property", "name": "messages", "serializedName": "messages", "doc": "A list of [messages](/docs/api-reference/messages) to start the thread with.", "type": { - "$id": "6095", + "$id": "6097", "kind": "array", "name": "ArrayCreateMessageRequest", "valueType": { - "$ref": "5826" + "$ref": "5828" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -78310,16 +78336,16 @@ "isHttpMetadata": false }, { - "$id": "6096", + "$id": "6098", "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": "6097", + "$id": "6099", "kind": "nullable", "type": { - "$id": "6098", + "$id": "6100", "kind": "model", "name": "CreateThreadRequestToolResources1", "namespace": "OpenAI", @@ -78328,12 +78354,12 @@ "decorators": [], "properties": [ { - "$id": "6099", + "$id": "6101", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6100", + "$id": "6102", "kind": "model", "name": "CreateThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -78342,7 +78368,7 @@ "decorators": [], "properties": [ { - "$id": "6101", + "$id": "6103", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -78379,7 +78405,7 @@ "isHttpMetadata": false }, { - "$id": "6102", + "$id": "6104", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -78417,7 +78443,7 @@ "isHttpMetadata": false }, { - "$id": "6103", + "$id": "6105", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78454,13 +78480,13 @@ "isHttpMetadata": false }, { - "$id": "6104", + "$id": "6106", "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": "6105", + "$id": "6107", "kind": "nullable", "type": { "$ref": "959" @@ -78481,16 +78507,16 @@ "isHttpMetadata": false }, { - "$id": "6106", + "$id": "6108", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "Override the default system message of the assistant. This is useful for modifying the behavior on a per-run basis.", "type": { - "$id": "6107", + "$id": "6109", "kind": "nullable", "type": { - "$id": "6108", + "$id": "6110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -78512,13 +78538,13 @@ "isHttpMetadata": false }, { - "$id": "6109", + "$id": "6111", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis.", "type": { - "$id": "6110", + "$id": "6112", "kind": "nullable", "type": { "$ref": "2328" @@ -78539,16 +78565,16 @@ "isHttpMetadata": false }, { - "$id": "6111", + "$id": "6113", "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": "6112", + "$id": "6114", "kind": "nullable", "type": { - "$id": "6113", + "$id": "6115", "kind": "model", "name": "CreateThreadAndRunRequestToolResources1", "namespace": "OpenAI", @@ -78557,12 +78583,12 @@ "decorators": [], "properties": [ { - "$id": "6114", + "$id": "6116", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6115", + "$id": "6117", "kind": "model", "name": "CreateThreadAndRunRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -78571,7 +78597,7 @@ "decorators": [], "properties": [ { - "$id": "6116", + "$id": "6118", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -78608,7 +78634,7 @@ "isHttpMetadata": false }, { - "$id": "6117", + "$id": "6119", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -78646,7 +78672,7 @@ "isHttpMetadata": false }, { - "$id": "6118", + "$id": "6120", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -78668,16 +78694,16 @@ "isHttpMetadata": false }, { - "$id": "6119", + "$id": "6121", "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": "6120", + "$id": "6122", "kind": "nullable", "type": { - "$id": "6121", + "$id": "6123", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78699,16 +78725,16 @@ "isHttpMetadata": false }, { - "$id": "6122", + "$id": "6124", "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": "6123", + "$id": "6125", "kind": "nullable", "type": { - "$id": "6124", + "$id": "6126", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -78730,16 +78756,16 @@ "isHttpMetadata": false }, { - "$id": "6125", + "$id": "6127", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message.", "type": { - "$id": "6126", + "$id": "6128", "kind": "nullable", "type": { - "$id": "6127", + "$id": "6129", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -78761,16 +78787,16 @@ "isHttpMetadata": false }, { - "$id": "6128", + "$id": "6130", "kind": "property", "name": "max_prompt_tokens", "serializedName": "max_prompt_tokens", "doc": "The maximum number of prompt tokens that may be used over the course of the run. The run will make a best effort to use only the number of prompt tokens specified, across multiple turns of the run. If the run exceeds the number of prompt tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info.", "type": { - "$id": "6129", + "$id": "6131", "kind": "nullable", "type": { - "$id": "6130", + "$id": "6132", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78792,16 +78818,16 @@ "isHttpMetadata": false }, { - "$id": "6131", + "$id": "6133", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of completion tokens that may be used over the course of the run. The run will make a best effort to use only the number of completion tokens specified, across multiple turns of the run. If the run exceeds the number of completion tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info.", "type": { - "$id": "6132", + "$id": "6134", "kind": "nullable", "type": { - "$id": "6133", + "$id": "6135", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78823,15 +78849,15 @@ "isHttpMetadata": false }, { - "$id": "6134", + "$id": "6136", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6135", + "$id": "6137", "kind": "nullable", "type": { - "$id": "6136", + "$id": "6138", "kind": "model", "name": "TruncationObject", "namespace": "OpenAI", @@ -78841,7 +78867,7 @@ "decorators": [], "properties": [ { - "$id": "6137", + "$id": "6139", "kind": "property", "name": "type", "serializedName": "type", @@ -78863,16 +78889,16 @@ "isHttpMetadata": false }, { - "$id": "6138", + "$id": "6140", "kind": "property", "name": "last_messages", "serializedName": "last_messages", "doc": "The number of most recent messages from the thread when constructing the context for the run.", "type": { - "$id": "6139", + "$id": "6141", "kind": "nullable", "type": { - "$id": "6140", + "$id": "6142", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -78911,15 +78937,15 @@ "isHttpMetadata": false }, { - "$id": "6141", + "$id": "6143", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6142", + "$id": "6144", "kind": "nullable", "type": { - "$id": "6143", + "$id": "6145", "kind": "union", "name": "AssistantsApiToolChoiceOption", "variantTypes": [ @@ -78927,7 +78953,7 @@ "$ref": "997" }, { - "$id": "6144", + "$id": "6146", "kind": "model", "name": "AssistantsNamedToolChoice", "namespace": "OpenAI", @@ -78937,7 +78963,7 @@ "decorators": [], "properties": [ { - "$id": "6145", + "$id": "6147", "kind": "property", "name": "type", "serializedName": "type", @@ -78959,12 +78985,12 @@ "isHttpMetadata": false }, { - "$id": "6146", + "$id": "6148", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "6147", + "$id": "6149", "kind": "model", "name": "AssistantsNamedToolChoiceFunction", "namespace": "OpenAI", @@ -78973,13 +78999,13 @@ "decorators": [], "properties": [ { - "$id": "6148", + "$id": "6150", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function to call.", "type": { - "$id": "6149", + "$id": "6151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79035,17 +79061,17 @@ "isHttpMetadata": false }, { - "$id": "6150", + "$id": "6152", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6151", + "$id": "6153", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6152", + "$id": "6154", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -79067,12 +79093,12 @@ "isHttpMetadata": false }, { - "$id": "6153", + "$id": "6155", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6154", + "$id": "6156", "kind": "nullable", "type": { "$ref": "2389" @@ -79095,31 +79121,31 @@ ] }, { - "$ref": "6093" - }, - { - "$ref": "6098" + "$ref": "6095" }, { "$ref": "6100" }, { - "$ref": "6113" + "$ref": "6102" }, { "$ref": "6115" }, { - "$ref": "6136" + "$ref": "6117" + }, + { + "$ref": "6138" }, { - "$ref": "6144" + "$ref": "6146" }, { - "$ref": "6147" + "$ref": "6149" }, { - "$id": "6155", + "$id": "6157", "kind": "model", "name": "RunObject", "namespace": "OpenAI", @@ -79129,13 +79155,13 @@ "decorators": [], "properties": [ { - "$id": "6156", + "$id": "6158", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6157", + "$id": "6159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79155,7 +79181,7 @@ "isHttpMetadata": false }, { - "$id": "6158", + "$id": "6160", "kind": "property", "name": "object", "serializedName": "object", @@ -79177,18 +79203,18 @@ "isHttpMetadata": false }, { - "$id": "6159", + "$id": "6161", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run was created.", "type": { - "$id": "6160", + "$id": "6162", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6161", + "$id": "6163", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79211,13 +79237,13 @@ "isHttpMetadata": false }, { - "$id": "6162", + "$id": "6164", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was executed on as a part of this run.", "type": { - "$id": "6163", + "$id": "6165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79237,13 +79263,13 @@ "isHttpMetadata": false }, { - "$id": "6164", + "$id": "6166", "kind": "property", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the [assistant](/docs/api-reference/assistants) used for execution of this run.", "type": { - "$id": "6165", + "$id": "6167", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79263,7 +79289,7 @@ "isHttpMetadata": false }, { - "$id": "6166", + "$id": "6168", "kind": "property", "name": "status", "serializedName": "status", @@ -79285,16 +79311,16 @@ "isHttpMetadata": false }, { - "$id": "6167", + "$id": "6169", "kind": "property", "name": "required_action", "serializedName": "required_action", "doc": "Details on the action required to continue the run. Will be `null` if no action is required.", "type": { - "$id": "6168", + "$id": "6170", "kind": "nullable", "type": { - "$id": "6169", + "$id": "6171", "kind": "model", "name": "RunObjectRequiredAction1", "namespace": "OpenAI", @@ -79303,7 +79329,7 @@ "decorators": [], "properties": [ { - "$id": "6170", + "$id": "6172", "kind": "property", "name": "type", "serializedName": "type", @@ -79325,13 +79351,13 @@ "isHttpMetadata": false }, { - "$id": "6171", + "$id": "6173", "kind": "property", "name": "submit_tool_outputs", "serializedName": "submit_tool_outputs", "doc": "Details on the tool outputs needed for this run to continue.", "type": { - "$id": "6172", + "$id": "6174", "kind": "model", "name": "RunObjectRequiredActionSubmitToolOutputs", "namespace": "OpenAI", @@ -79340,17 +79366,17 @@ "decorators": [], "properties": [ { - "$id": "6173", + "$id": "6175", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "doc": "A list of the relevant tool calls.", "type": { - "$id": "6174", + "$id": "6176", "kind": "array", "name": "ArrayRunToolCallObject", "valueType": { - "$id": "6175", + "$id": "6177", "kind": "model", "name": "RunToolCallObject", "namespace": "OpenAI", @@ -79360,13 +79386,13 @@ "decorators": [], "properties": [ { - "$id": "6176", + "$id": "6178", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call. This ID must be referenced when you submit the tool outputs in using the [Submit tool outputs to run](/docs/api-reference/runs/submitToolOutputs) endpoint.", "type": { - "$id": "6177", + "$id": "6179", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79386,7 +79412,7 @@ "isHttpMetadata": false }, { - "$id": "6178", + "$id": "6180", "kind": "property", "name": "type", "serializedName": "type", @@ -79408,13 +79434,13 @@ "isHttpMetadata": false }, { - "$id": "6179", + "$id": "6181", "kind": "property", "name": "function", "serializedName": "function", "doc": "The function definition.", "type": { - "$id": "6180", + "$id": "6182", "kind": "model", "name": "RunToolCallObjectFunction", "namespace": "OpenAI", @@ -79423,13 +79449,13 @@ "decorators": [], "properties": [ { - "$id": "6181", + "$id": "6183", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6182", + "$id": "6184", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79449,13 +79475,13 @@ "isHttpMetadata": false }, { - "$id": "6183", + "$id": "6185", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments that the model expects you to pass to the function.", "type": { - "$id": "6184", + "$id": "6186", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79540,16 +79566,16 @@ "isHttpMetadata": false }, { - "$id": "6185", + "$id": "6187", "kind": "property", "name": "last_error", "serializedName": "last_error", "doc": "The last error associated with this run. Will be `null` if there are no errors.", "type": { - "$id": "6186", + "$id": "6188", "kind": "nullable", "type": { - "$id": "6187", + "$id": "6189", "kind": "model", "name": "RunObjectLastError1", "namespace": "OpenAI", @@ -79558,7 +79584,7 @@ "decorators": [], "properties": [ { - "$id": "6188", + "$id": "6190", "kind": "property", "name": "code", "serializedName": "code", @@ -79580,13 +79606,13 @@ "isHttpMetadata": false }, { - "$id": "6189", + "$id": "6191", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6190", + "$id": "6192", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79623,21 +79649,21 @@ "isHttpMetadata": false }, { - "$id": "6191", + "$id": "6193", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the run will expire.", "type": { - "$id": "6192", + "$id": "6194", "kind": "nullable", "type": { - "$id": "6193", + "$id": "6195", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6194", + "$id": "6196", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79662,21 +79688,21 @@ "isHttpMetadata": false }, { - "$id": "6195", + "$id": "6197", "kind": "property", "name": "started_at", "serializedName": "started_at", "doc": "The Unix timestamp (in seconds) for when the run was started.", "type": { - "$id": "6196", + "$id": "6198", "kind": "nullable", "type": { - "$id": "6197", + "$id": "6199", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6198", + "$id": "6200", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79701,21 +79727,21 @@ "isHttpMetadata": false }, { - "$id": "6199", + "$id": "6201", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run was cancelled.", "type": { - "$id": "6200", + "$id": "6202", "kind": "nullable", "type": { - "$id": "6201", + "$id": "6203", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6202", + "$id": "6204", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79740,21 +79766,21 @@ "isHttpMetadata": false }, { - "$id": "6203", + "$id": "6205", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run failed.", "type": { - "$id": "6204", + "$id": "6206", "kind": "nullable", "type": { - "$id": "6205", + "$id": "6207", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6206", + "$id": "6208", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79779,21 +79805,21 @@ "isHttpMetadata": false }, { - "$id": "6207", + "$id": "6209", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run was completed.", "type": { - "$id": "6208", + "$id": "6210", "kind": "nullable", "type": { - "$id": "6209", + "$id": "6211", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6210", + "$id": "6212", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -79818,16 +79844,16 @@ "isHttpMetadata": false }, { - "$id": "6211", + "$id": "6213", "kind": "property", "name": "incomplete_details", "serializedName": "incomplete_details", "doc": "Details on why the run is incomplete. Will be `null` if the run is not incomplete.", "type": { - "$id": "6212", + "$id": "6214", "kind": "nullable", "type": { - "$id": "6213", + "$id": "6215", "kind": "model", "name": "RunObjectIncompleteDetails1", "namespace": "OpenAI", @@ -79836,7 +79862,7 @@ "decorators": [], "properties": [ { - "$id": "6214", + "$id": "6216", "kind": "property", "name": "reason", "serializedName": "reason", @@ -79875,13 +79901,13 @@ "isHttpMetadata": false }, { - "$id": "6215", + "$id": "6217", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6216", + "$id": "6218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79901,13 +79927,13 @@ "isHttpMetadata": false }, { - "$id": "6217", + "$id": "6219", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The instructions that the [assistant](/docs/api-reference/assistants) used for this run.", "type": { - "$id": "6218", + "$id": "6220", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -79927,7 +79953,7 @@ "isHttpMetadata": false }, { - "$id": "6219", + "$id": "6221", "kind": "property", "name": "tools", "serializedName": "tools", @@ -79949,7 +79975,7 @@ "isHttpMetadata": false }, { - "$id": "6220", + "$id": "6222", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -79971,15 +79997,15 @@ "isHttpMetadata": false }, { - "$id": "6221", + "$id": "6223", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6222", + "$id": "6224", "kind": "nullable", "type": { - "$id": "6223", + "$id": "6225", "kind": "model", "name": "RunCompletionUsage", "namespace": "OpenAI", @@ -79989,13 +80015,13 @@ "decorators": [], "properties": [ { - "$id": "6224", + "$id": "6226", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run.", "type": { - "$id": "6225", + "$id": "6227", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80015,13 +80041,13 @@ "isHttpMetadata": false }, { - "$id": "6226", + "$id": "6228", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run.", "type": { - "$id": "6227", + "$id": "6229", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80041,13 +80067,13 @@ "isHttpMetadata": false }, { - "$id": "6228", + "$id": "6230", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6229", + "$id": "6231", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80084,16 +80110,16 @@ "isHttpMetadata": false }, { - "$id": "6230", + "$id": "6232", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "The sampling temperature used for this run. If not set, defaults to 1.", "type": { - "$id": "6231", + "$id": "6233", "kind": "nullable", "type": { - "$id": "6232", + "$id": "6234", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80115,16 +80141,16 @@ "isHttpMetadata": false }, { - "$id": "6233", + "$id": "6235", "kind": "property", "name": "top_p", "serializedName": "top_p", "doc": "The nucleus sampling value used for this run. If not set, defaults to 1.", "type": { - "$id": "6234", + "$id": "6236", "kind": "nullable", "type": { - "$id": "6235", + "$id": "6237", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80146,16 +80172,16 @@ "isHttpMetadata": false }, { - "$id": "6236", + "$id": "6238", "kind": "property", "name": "max_prompt_tokens", "serializedName": "max_prompt_tokens", "doc": "The maximum number of prompt tokens specified to have been used over the course of the run.", "type": { - "$id": "6237", + "$id": "6239", "kind": "nullable", "type": { - "$id": "6238", + "$id": "6240", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80177,16 +80203,16 @@ "isHttpMetadata": false }, { - "$id": "6239", + "$id": "6241", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of completion tokens specified to have been used over the course of the run.", "type": { - "$id": "6240", + "$id": "6242", "kind": "nullable", "type": { - "$id": "6241", + "$id": "6243", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80208,15 +80234,15 @@ "isHttpMetadata": false }, { - "$id": "6242", + "$id": "6244", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6243", + "$id": "6245", "kind": "nullable", "type": { - "$ref": "6136" + "$ref": "6138" }, "namespace": "OpenAI" }, @@ -80234,15 +80260,15 @@ "isHttpMetadata": false }, { - "$id": "6244", + "$id": "6246", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6245", + "$id": "6247", "kind": "nullable", "type": { - "$ref": "6143" + "$ref": "6145" }, "namespace": "OpenAI" }, @@ -80260,17 +80286,17 @@ "isHttpMetadata": false }, { - "$id": "6246", + "$id": "6248", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6247", + "$id": "6249", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6248", + "$id": "6250", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80292,12 +80318,12 @@ "isHttpMetadata": false }, { - "$id": "6249", + "$id": "6251", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6250", + "$id": "6252", "kind": "nullable", "type": { "$ref": "2389" @@ -80320,28 +80346,28 @@ ] }, { - "$ref": "6169" + "$ref": "6171" }, { - "$ref": "6172" + "$ref": "6174" }, { - "$ref": "6175" + "$ref": "6177" }, { - "$ref": "6180" + "$ref": "6182" }, { - "$ref": "6187" + "$ref": "6189" }, { - "$ref": "6213" + "$ref": "6215" }, { - "$ref": "6223" + "$ref": "6225" }, { - "$id": "6251", + "$id": "6253", "kind": "model", "name": "CreateRunRequest", "namespace": "OpenAI", @@ -80350,13 +80376,13 @@ "decorators": [], "properties": [ { - "$id": "6252", + "$id": "6254", "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": "6253", + "$id": "6255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80376,13 +80402,13 @@ "isHttpMetadata": false }, { - "$id": "6254", + "$id": "6256", "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": "6255", + "$id": "6257", "kind": "nullable", "type": { "$ref": "15" @@ -80403,12 +80429,12 @@ "isHttpMetadata": false }, { - "$id": "6256", + "$id": "6258", "kind": "property", "name": "reasoning_effort", "serializedName": "reasoning_effort", "type": { - "$id": "6257", + "$id": "6259", "kind": "nullable", "type": { "$ref": "53" @@ -80429,16 +80455,16 @@ "isHttpMetadata": false }, { - "$id": "6258", + "$id": "6260", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "Overrides the [instructions](/docs/api-reference/assistants/createAssistant) of the assistant. This is useful for modifying the behavior on a per-run basis.", "type": { - "$id": "6259", + "$id": "6261", "kind": "nullable", "type": { - "$id": "6260", + "$id": "6262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80460,16 +80486,16 @@ "isHttpMetadata": false }, { - "$id": "6261", + "$id": "6263", "kind": "property", "name": "additional_instructions", "serializedName": "additional_instructions", "doc": "Appends additional instructions at the end of the instructions for the run. This is useful for modifying the behavior on a per-run basis without overriding other instructions.", "type": { - "$id": "6262", + "$id": "6264", "kind": "nullable", "type": { - "$id": "6263", + "$id": "6265", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80491,16 +80517,16 @@ "isHttpMetadata": false }, { - "$id": "6264", + "$id": "6266", "kind": "property", "name": "additional_messages", "serializedName": "additional_messages", "doc": "Adds additional messages to the thread before creating the run.", "type": { - "$id": "6265", + "$id": "6267", "kind": "nullable", "type": { - "$ref": "6095" + "$ref": "6097" }, "namespace": "OpenAI" }, @@ -80518,13 +80544,13 @@ "isHttpMetadata": false }, { - "$id": "6266", + "$id": "6268", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Override the tools the assistant can use for this run. This is useful for modifying the behavior on a per-run basis.", "type": { - "$id": "6267", + "$id": "6269", "kind": "nullable", "type": { "$ref": "2328" @@ -80545,7 +80571,7 @@ "isHttpMetadata": false }, { - "$id": "6268", + "$id": "6270", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -80567,16 +80593,16 @@ "isHttpMetadata": false }, { - "$id": "6269", + "$id": "6271", "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": "6270", + "$id": "6272", "kind": "nullable", "type": { - "$id": "6271", + "$id": "6273", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80598,16 +80624,16 @@ "isHttpMetadata": false }, { - "$id": "6272", + "$id": "6274", "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": "6273", + "$id": "6275", "kind": "nullable", "type": { - "$id": "6274", + "$id": "6276", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -80629,16 +80655,16 @@ "isHttpMetadata": false }, { - "$id": "6275", + "$id": "6277", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message.", "type": { - "$id": "6276", + "$id": "6278", "kind": "nullable", "type": { - "$id": "6277", + "$id": "6279", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80660,16 +80686,16 @@ "isHttpMetadata": false }, { - "$id": "6278", + "$id": "6280", "kind": "property", "name": "max_prompt_tokens", "serializedName": "max_prompt_tokens", "doc": "The maximum number of prompt tokens that may be used over the course of the run. The run will make a best effort to use only the number of prompt tokens specified, across multiple turns of the run. If the run exceeds the number of prompt tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info.", "type": { - "$id": "6279", + "$id": "6281", "kind": "nullable", "type": { - "$id": "6280", + "$id": "6282", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80691,16 +80717,16 @@ "isHttpMetadata": false }, { - "$id": "6281", + "$id": "6283", "kind": "property", "name": "max_completion_tokens", "serializedName": "max_completion_tokens", "doc": "The maximum number of completion tokens that may be used over the course of the run. The run will make a best effort to use only the number of completion tokens specified, across multiple turns of the run. If the run exceeds the number of completion tokens specified, the run will end with status `incomplete`. See `incomplete_details` for more info.", "type": { - "$id": "6282", + "$id": "6284", "kind": "nullable", "type": { - "$id": "6283", + "$id": "6285", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -80722,15 +80748,15 @@ "isHttpMetadata": false }, { - "$id": "6284", + "$id": "6286", "kind": "property", "name": "truncation_strategy", "serializedName": "truncation_strategy", "type": { - "$id": "6285", + "$id": "6287", "kind": "nullable", "type": { - "$ref": "6136" + "$ref": "6138" }, "namespace": "OpenAI" }, @@ -80748,15 +80774,15 @@ "isHttpMetadata": false }, { - "$id": "6286", + "$id": "6288", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6287", + "$id": "6289", "kind": "nullable", "type": { - "$ref": "6143" + "$ref": "6145" }, "namespace": "OpenAI" }, @@ -80774,17 +80800,17 @@ "isHttpMetadata": false }, { - "$id": "6288", + "$id": "6290", "kind": "property", "name": "parallel_tool_calls", "serializedName": "parallel_tool_calls", "type": { - "$id": "6289", + "$id": "6291", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "6290", + "$id": "6292", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80806,12 +80832,12 @@ "isHttpMetadata": false }, { - "$id": "6291", + "$id": "6293", "kind": "property", "name": "response_format", "serializedName": "response_format", "type": { - "$id": "6292", + "$id": "6294", "kind": "nullable", "type": { "$ref": "2389" @@ -80834,7 +80860,7 @@ ] }, { - "$id": "6293", + "$id": "6295", "kind": "model", "name": "ListRunsResponse", "namespace": "OpenAI", @@ -80843,7 +80869,7 @@ "decorators": [], "properties": [ { - "$id": "6294", + "$id": "6296", "kind": "property", "name": "object", "serializedName": "object", @@ -80864,16 +80890,16 @@ "isHttpMetadata": false }, { - "$id": "6295", + "$id": "6297", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6296", + "$id": "6298", "kind": "array", "name": "ArrayRunObject", "valueType": { - "$ref": "6155" + "$ref": "6157" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -80892,12 +80918,12 @@ "isHttpMetadata": false }, { - "$id": "6297", + "$id": "6299", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6298", + "$id": "6300", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80917,12 +80943,12 @@ "isHttpMetadata": false }, { - "$id": "6299", + "$id": "6301", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6300", + "$id": "6302", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -80942,12 +80968,12 @@ "isHttpMetadata": false }, { - "$id": "6301", + "$id": "6303", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6302", + "$id": "6304", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -80969,7 +80995,7 @@ ] }, { - "$id": "6303", + "$id": "6305", "kind": "model", "name": "ModifyRunRequest", "namespace": "OpenAI", @@ -80978,7 +81004,7 @@ "decorators": [], "properties": [ { - "$id": "6304", + "$id": "6306", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -81002,7 +81028,7 @@ ] }, { - "$id": "6305", + "$id": "6307", "kind": "model", "name": "SubmitToolOutputsRunRequest", "namespace": "OpenAI", @@ -81011,17 +81037,17 @@ "decorators": [], "properties": [ { - "$id": "6306", + "$id": "6308", "kind": "property", "name": "tool_outputs", "serializedName": "tool_outputs", "doc": "A list of tools for which the outputs are being submitted.", "type": { - "$id": "6307", + "$id": "6309", "kind": "array", "name": "Array38", "valueType": { - "$id": "6308", + "$id": "6310", "kind": "model", "name": "SubmitToolOutputsRunRequestToolOutput", "namespace": "OpenAI", @@ -81030,13 +81056,13 @@ "decorators": [], "properties": [ { - "$id": "6309", + "$id": "6311", "kind": "property", "name": "tool_call_id", "serializedName": "tool_call_id", "doc": "The ID of the tool call in the `required_action` object within the run object the output is being submitted for.", "type": { - "$id": "6310", + "$id": "6312", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81056,13 +81082,13 @@ "isHttpMetadata": false }, { - "$id": "6311", + "$id": "6313", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output of the tool call to be submitted to continue the run.", "type": { - "$id": "6312", + "$id": "6314", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81100,16 +81126,16 @@ "isHttpMetadata": false }, { - "$id": "6313", + "$id": "6315", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "If `true`, returns a stream of events that happen during the Run as server-sent events, terminating when the Run enters a terminal state with a `data: [DONE]` message.", "type": { - "$id": "6314", + "$id": "6316", "kind": "nullable", "type": { - "$id": "6315", + "$id": "6317", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -81133,10 +81159,10 @@ ] }, { - "$ref": "6308" + "$ref": "6310" }, { - "$id": "6316", + "$id": "6318", "kind": "model", "name": "ListRunStepsResponse", "namespace": "OpenAI", @@ -81145,7 +81171,7 @@ "decorators": [], "properties": [ { - "$id": "6317", + "$id": "6319", "kind": "property", "name": "object", "serializedName": "object", @@ -81166,16 +81192,16 @@ "isHttpMetadata": false }, { - "$id": "6318", + "$id": "6320", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6319", + "$id": "6321", "kind": "array", "name": "ArrayRunStepObject", "valueType": { - "$id": "6320", + "$id": "6322", "kind": "model", "name": "RunStepObject", "namespace": "OpenAI", @@ -81185,13 +81211,13 @@ "decorators": [], "properties": [ { - "$id": "6321", + "$id": "6323", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "6322", + "$id": "6324", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81211,7 +81237,7 @@ "isHttpMetadata": false }, { - "$id": "6323", + "$id": "6325", "kind": "property", "name": "object", "serializedName": "object", @@ -81233,18 +81259,18 @@ "isHttpMetadata": false }, { - "$id": "6324", + "$id": "6326", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the run step was created.", "type": { - "$id": "6325", + "$id": "6327", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6326", + "$id": "6328", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -81267,13 +81293,13 @@ "isHttpMetadata": false }, { - "$id": "6327", + "$id": "6329", "kind": "property", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the [assistant](/docs/api-reference/assistants) associated with the run step.", "type": { - "$id": "6328", + "$id": "6330", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81293,13 +81319,13 @@ "isHttpMetadata": false }, { - "$id": "6329", + "$id": "6331", "kind": "property", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "6330", + "$id": "6332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81319,13 +81345,13 @@ "isHttpMetadata": false }, { - "$id": "6331", + "$id": "6333", "kind": "property", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the [run](/docs/api-reference/runs) that this run step is a part of.", "type": { - "$id": "6332", + "$id": "6334", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81345,7 +81371,7 @@ "isHttpMetadata": false }, { - "$id": "6333", + "$id": "6335", "kind": "property", "name": "type", "serializedName": "type", @@ -81367,7 +81393,7 @@ "isHttpMetadata": false }, { - "$id": "6334", + "$id": "6336", "kind": "property", "name": "status", "serializedName": "status", @@ -81389,13 +81415,13 @@ "isHttpMetadata": false }, { - "$id": "6335", + "$id": "6337", "kind": "property", "name": "step_details", "serializedName": "step_details", "doc": "The details of the run step.", "type": { - "$id": "6336", + "$id": "6338", "kind": "model", "name": "RunStepObjectStepDetails", "namespace": "OpenAI", @@ -81404,7 +81430,7 @@ "doc": "Abstractly represents a run step details object.", "decorators": [], "discriminatorProperty": { - "$id": "6337", + "$id": "6339", "kind": "property", "name": "type", "serializedName": "type", @@ -81427,12 +81453,12 @@ }, "properties": [ { - "$ref": "6337" + "$ref": "6339" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "6338", + "$id": "6340", "kind": "model", "name": "RunStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -81442,17 +81468,17 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "6336" + "$ref": "6338" }, "properties": [ { - "$id": "6339", + "$id": "6341", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `message_creation`.", "type": { - "$id": "6340", + "$id": "6342", "kind": "enumvalue", "name": "message_creation", "value": "message_creation", @@ -81460,14 +81486,14 @@ "$ref": "1039" }, "enumType": { - "$id": "6341", + "$id": "6343", "kind": "enum", "decorators": [], "name": "RunStepDetailsType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6342", + "$id": "6344", "kind": "string", "decorators": [], "name": "string", @@ -81476,29 +81502,29 @@ }, "values": [ { - "$id": "6343", + "$id": "6345", "kind": "enumvalue", "decorators": [], "name": "message_creation", "value": "message_creation", "valueType": { - "$ref": "6342" + "$ref": "6344" }, "enumType": { - "$ref": "6341" + "$ref": "6343" } }, { - "$id": "6344", + "$id": "6346", "kind": "enumvalue", "decorators": [], "name": "tool_calls", "value": "tool_calls", "valueType": { - "$ref": "6342" + "$ref": "6344" }, "enumType": { - "$ref": "6341" + "$ref": "6343" } } ], @@ -81527,12 +81553,12 @@ "isHttpMetadata": false }, { - "$id": "6345", + "$id": "6347", "kind": "property", "name": "message_creation", "serializedName": "message_creation", "type": { - "$id": "6346", + "$id": "6348", "kind": "model", "name": "RunStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -81541,13 +81567,13 @@ "decorators": [], "properties": [ { - "$id": "6347", + "$id": "6349", "kind": "property", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "6348", + "$id": "6350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81584,7 +81610,7 @@ ] }, "tool_calls": { - "$id": "6349", + "$id": "6351", "kind": "model", "name": "RunStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -81594,17 +81620,17 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "6336" + "$ref": "6338" }, "properties": [ { - "$id": "6350", + "$id": "6352", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `tool_calls`.", "type": { - "$id": "6351", + "$id": "6353", "kind": "enumvalue", "name": "tool_calls", "value": "tool_calls", @@ -81612,7 +81638,7 @@ "$ref": "1039" }, "enumType": { - "$ref": "6341" + "$ref": "6343" }, "decorators": [] }, @@ -81630,17 +81656,17 @@ "isHttpMetadata": false }, { - "$id": "6352", + "$id": "6354", "kind": "property", "name": "tool_calls", "serializedName": "tool_calls", "doc": "An array of tool calls the run step was involved in. These can be associated with one of three types of tools: `code_interpreter`, `file_search`, or `function`.", "type": { - "$id": "6353", + "$id": "6355", "kind": "array", "name": "ArrayRunStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "6354", + "$id": "6356", "kind": "model", "name": "RunStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -81649,7 +81675,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "6355", + "$id": "6357", "kind": "property", "name": "type", "serializedName": "type", @@ -81672,16 +81698,16 @@ }, "properties": [ { - "$ref": "6355" + "$ref": "6357" }, { - "$id": "6356", + "$id": "6358", "kind": "property", "name": "id", "serializedName": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "6357", + "$id": "6359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81703,7 +81729,7 @@ ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "6358", + "$id": "6360", "kind": "model", "name": "RunStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -81713,17 +81739,17 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "6354" + "$ref": "6356" }, "properties": [ { - "$id": "6359", + "$id": "6361", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool call. This is always going to be `code_interpreter` for this type of tool call.", "type": { - "$id": "6360", + "$id": "6362", "kind": "enumvalue", "name": "code_interpreter", "value": "code_interpreter", @@ -81731,14 +81757,14 @@ "$ref": "1043" }, "enumType": { - "$id": "6361", + "$id": "6363", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6362", + "$id": "6364", "kind": "string", "decorators": [], "name": "string", @@ -81747,42 +81773,42 @@ }, "values": [ { - "$id": "6363", + "$id": "6365", "kind": "enumvalue", "decorators": [], "name": "code_interpreter", "value": "code_interpreter", "valueType": { - "$ref": "6362" + "$ref": "6364" }, "enumType": { - "$ref": "6361" + "$ref": "6363" } }, { - "$id": "6364", + "$id": "6366", "kind": "enumvalue", "decorators": [], "name": "file_search", "value": "file_search", "valueType": { - "$ref": "6362" + "$ref": "6364" }, "enumType": { - "$ref": "6361" + "$ref": "6363" } }, { - "$id": "6365", + "$id": "6367", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "6362" + "$ref": "6364" }, "enumType": { - "$ref": "6361" + "$ref": "6363" } } ], @@ -81811,13 +81837,13 @@ "isHttpMetadata": false }, { - "$id": "6366", + "$id": "6368", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "6367", + "$id": "6369", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -81826,13 +81852,13 @@ "decorators": [], "properties": [ { - "$id": "6368", + "$id": "6370", "kind": "property", "name": "input", "serializedName": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "6369", + "$id": "6371", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -81852,17 +81878,17 @@ "isHttpMetadata": false }, { - "$id": "6370", + "$id": "6372", "kind": "property", "name": "outputs", "serializedName": "outputs", "doc": "The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (`logs`) or images (`image`). Each of these are represented by a different object type.", "type": { - "$id": "6371", + "$id": "6373", "kind": "array", "name": "ArrayRunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "6372", + "$id": "6374", "kind": "model", "name": "RunStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -81871,7 +81897,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "6373", + "$id": "6375", "kind": "property", "name": "type", "serializedName": "type", @@ -81894,12 +81920,12 @@ }, "properties": [ { - "$ref": "6373" + "$ref": "6375" } ], "discriminatedSubtypes": { "logs": { - "$id": "6374", + "$id": "6376", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -81909,17 +81935,17 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "6372" + "$ref": "6374" }, "properties": [ { - "$id": "6375", + "$id": "6377", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `logs`.", "type": { - "$id": "6376", + "$id": "6378", "kind": "enumvalue", "name": "logs", "value": "logs", @@ -81927,14 +81953,14 @@ "$ref": "1048" }, "enumType": { - "$id": "6377", + "$id": "6379", "kind": "enum", "decorators": [], "name": "RunStepDetailsCodeInterpreterOutputType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6378", + "$id": "6380", "kind": "string", "decorators": [], "name": "string", @@ -81943,29 +81969,29 @@ }, "values": [ { - "$id": "6379", + "$id": "6381", "kind": "enumvalue", "decorators": [], "name": "logs", "value": "logs", "valueType": { - "$ref": "6378" + "$ref": "6380" }, "enumType": { - "$ref": "6377" + "$ref": "6379" } }, { - "$id": "6380", + "$id": "6382", "kind": "enumvalue", "decorators": [], "name": "image", "value": "image", "valueType": { - "$ref": "6378" + "$ref": "6380" }, "enumType": { - "$ref": "6377" + "$ref": "6379" } } ], @@ -81994,13 +82020,13 @@ "isHttpMetadata": false }, { - "$id": "6381", + "$id": "6383", "kind": "property", "name": "logs", "serializedName": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "6382", + "$id": "6384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82022,7 +82048,7 @@ ] }, "image": { - "$id": "6383", + "$id": "6385", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -82031,17 +82057,17 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "6372" + "$ref": "6374" }, "properties": [ { - "$id": "6384", + "$id": "6386", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `image`.", "type": { - "$id": "6385", + "$id": "6387", "kind": "enumvalue", "name": "image", "value": "image", @@ -82049,7 +82075,7 @@ "$ref": "1048" }, "enumType": { - "$ref": "6377" + "$ref": "6379" }, "decorators": [] }, @@ -82067,12 +82093,12 @@ "isHttpMetadata": false }, { - "$id": "6386", + "$id": "6388", "kind": "property", "name": "image", "serializedName": "image", "type": { - "$id": "6387", + "$id": "6389", "kind": "model", "name": "RunStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -82081,13 +82107,13 @@ "decorators": [], "properties": [ { - "$id": "6388", + "$id": "6390", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "6389", + "$id": "6391", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82159,7 +82185,7 @@ ] }, "file_search": { - "$id": "6390", + "$id": "6392", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -82168,17 +82194,17 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "6354" + "$ref": "6356" }, "properties": [ { - "$id": "6391", + "$id": "6393", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool call. This is always going to be `file_search` for this type of tool call.", "type": { - "$id": "6392", + "$id": "6394", "kind": "enumvalue", "name": "file_search", "value": "file_search", @@ -82186,7 +82212,7 @@ "$ref": "1043" }, "enumType": { - "$ref": "6361" + "$ref": "6363" }, "decorators": [] }, @@ -82204,13 +82230,13 @@ "isHttpMetadata": false }, { - "$id": "6393", + "$id": "6395", "kind": "property", "name": "file_search", "serializedName": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "6394", + "$id": "6396", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -82219,12 +82245,12 @@ "decorators": [], "properties": [ { - "$id": "6395", + "$id": "6397", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "type": { - "$id": "6396", + "$id": "6398", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchRankingOptionsObject", "namespace": "OpenAI", @@ -82234,7 +82260,7 @@ "decorators": [], "properties": [ { - "$id": "6397", + "$id": "6399", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -82255,13 +82281,13 @@ "isHttpMetadata": false }, { - "$id": "6398", + "$id": "6400", "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": "6399", + "$id": "6401", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82296,17 +82322,17 @@ "isHttpMetadata": false }, { - "$id": "6400", + "$id": "6402", "kind": "property", "name": "results", "serializedName": "results", "doc": "The results of the file search.", "type": { - "$id": "6401", + "$id": "6403", "kind": "array", "name": "ArrayRunStepDetailsToolCallsFileSearchResultObject", "valueType": { - "$id": "6402", + "$id": "6404", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObject", "namespace": "OpenAI", @@ -82316,13 +82342,13 @@ "decorators": [], "properties": [ { - "$id": "6403", + "$id": "6405", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file that result was found in.", "type": { - "$id": "6404", + "$id": "6406", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82342,13 +82368,13 @@ "isHttpMetadata": false }, { - "$id": "6405", + "$id": "6407", "kind": "property", "name": "file_name", "serializedName": "file_name", "doc": "The name of the file that result was found in.", "type": { - "$id": "6406", + "$id": "6408", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82368,13 +82394,13 @@ "isHttpMetadata": false }, { - "$id": "6407", + "$id": "6409", "kind": "property", "name": "score", "serializedName": "score", "doc": "The score of the result. All values must be a floating point number between 0 and 1.", "type": { - "$id": "6408", + "$id": "6410", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -82394,17 +82420,17 @@ "isHttpMetadata": false }, { - "$id": "6409", + "$id": "6411", "kind": "property", "name": "content", "serializedName": "content", "doc": "The content of the result that was found. The content is only included if requested via the include query parameter.", "type": { - "$id": "6410", + "$id": "6412", "kind": "array", "name": "Array39", "valueType": { - "$id": "6411", + "$id": "6413", "kind": "model", "name": "RunStepDetailsToolCallsFileSearchResultObjectContent", "namespace": "OpenAI", @@ -82413,13 +82439,13 @@ "decorators": [], "properties": [ { - "$id": "6412", + "$id": "6414", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of the content.", "type": { - "$id": "6413", + "$id": "6415", "kind": "enumvalue", "name": "text", "value": "text", @@ -82427,14 +82453,14 @@ "$ref": "1447" }, "enumType": { - "$id": "6414", + "$id": "6416", "kind": "enum", "decorators": [], "name": "RunStepDetailsToolCallsFileSearchResultObjectContentType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6415", + "$id": "6417", "kind": "string", "decorators": [], "name": "string", @@ -82443,16 +82469,16 @@ }, "values": [ { - "$id": "6416", + "$id": "6418", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "enumType": { - "$ref": "6414" + "$ref": "6416" }, "valueType": { - "$ref": "6415" + "$ref": "6417" } } ], @@ -82481,13 +82507,13 @@ "isHttpMetadata": false }, { - "$id": "6417", + "$id": "6419", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content of the file.", "type": { - "$id": "6418", + "$id": "6420", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82560,7 +82586,7 @@ ] }, "function": { - "$id": "6419", + "$id": "6421", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -82569,17 +82595,17 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6354" + "$ref": "6356" }, "properties": [ { - "$id": "6420", + "$id": "6422", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of tool call. This is always going to be `function` for this type of tool call.", "type": { - "$id": "6421", + "$id": "6423", "kind": "enumvalue", "name": "function", "value": "function", @@ -82587,7 +82613,7 @@ "$ref": "1043" }, "enumType": { - "$ref": "6361" + "$ref": "6363" }, "decorators": [] }, @@ -82605,13 +82631,13 @@ "isHttpMetadata": false }, { - "$id": "6422", + "$id": "6424", "kind": "property", "name": "function", "serializedName": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "6423", + "$id": "6425", "kind": "model", "name": "RunStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -82620,13 +82646,13 @@ "decorators": [], "properties": [ { - "$id": "6424", + "$id": "6426", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the function.", "type": { - "$id": "6425", + "$id": "6427", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82646,13 +82672,13 @@ "isHttpMetadata": false }, { - "$id": "6426", + "$id": "6428", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "6427", + "$id": "6429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82672,16 +82698,16 @@ "isHttpMetadata": false }, { - "$id": "6428", + "$id": "6430", "kind": "property", "name": "output", "serializedName": "output", "doc": "The output of the function. This will be `null` if the outputs have not been [submitted](/docs/api-reference/runs/submitToolOutputs) yet.", "type": { - "$id": "6429", + "$id": "6431", "kind": "nullable", "type": { - "$id": "6430", + "$id": "6432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82755,16 +82781,16 @@ "isHttpMetadata": false }, { - "$id": "6431", + "$id": "6433", "kind": "property", "name": "last_error", "serializedName": "last_error", "doc": "The last error associated with this run step. Will be `null` if there are no errors.", "type": { - "$id": "6432", + "$id": "6434", "kind": "nullable", "type": { - "$id": "6433", + "$id": "6435", "kind": "model", "name": "RunStepObjectLastError1", "namespace": "OpenAI", @@ -82773,7 +82799,7 @@ "decorators": [], "properties": [ { - "$id": "6434", + "$id": "6436", "kind": "property", "name": "code", "serializedName": "code", @@ -82795,13 +82821,13 @@ "isHttpMetadata": false }, { - "$id": "6435", + "$id": "6437", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6436", + "$id": "6438", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -82838,21 +82864,21 @@ "isHttpMetadata": false }, { - "$id": "6437", + "$id": "6439", "kind": "property", "name": "expired_at", "serializedName": "expired_at", "doc": "The Unix timestamp (in seconds) for when the run step expired. A step is considered expired if the parent run is expired.", "type": { - "$id": "6438", + "$id": "6440", "kind": "nullable", "type": { - "$id": "6439", + "$id": "6441", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6440", + "$id": "6442", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82877,21 +82903,21 @@ "isHttpMetadata": false }, { - "$id": "6441", + "$id": "6443", "kind": "property", "name": "cancelled_at", "serializedName": "cancelled_at", "doc": "The Unix timestamp (in seconds) for when the run step was cancelled.", "type": { - "$id": "6442", + "$id": "6444", "kind": "nullable", "type": { - "$id": "6443", + "$id": "6445", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6444", + "$id": "6446", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82916,21 +82942,21 @@ "isHttpMetadata": false }, { - "$id": "6445", + "$id": "6447", "kind": "property", "name": "failed_at", "serializedName": "failed_at", "doc": "The Unix timestamp (in seconds) for when the run step failed.", "type": { - "$id": "6446", + "$id": "6448", "kind": "nullable", "type": { - "$id": "6447", + "$id": "6449", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6448", + "$id": "6450", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82955,21 +82981,21 @@ "isHttpMetadata": false }, { - "$id": "6449", + "$id": "6451", "kind": "property", "name": "completed_at", "serializedName": "completed_at", "doc": "The Unix timestamp (in seconds) for when the run step completed.", "type": { - "$id": "6450", + "$id": "6452", "kind": "nullable", "type": { - "$id": "6451", + "$id": "6453", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6452", + "$id": "6454", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -82994,7 +83020,7 @@ "isHttpMetadata": false }, { - "$id": "6453", + "$id": "6455", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -83016,15 +83042,15 @@ "isHttpMetadata": false }, { - "$id": "6454", + "$id": "6456", "kind": "property", "name": "usage", "serializedName": "usage", "type": { - "$id": "6455", + "$id": "6457", "kind": "nullable", "type": { - "$id": "6456", + "$id": "6458", "kind": "model", "name": "RunStepCompletionUsage", "namespace": "OpenAI", @@ -83034,13 +83060,13 @@ "decorators": [], "properties": [ { - "$id": "6457", + "$id": "6459", "kind": "property", "name": "completion_tokens", "serializedName": "completion_tokens", "doc": "Number of completion tokens used over the course of the run step.", "type": { - "$id": "6458", + "$id": "6460", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83060,13 +83086,13 @@ "isHttpMetadata": false }, { - "$id": "6459", + "$id": "6461", "kind": "property", "name": "prompt_tokens", "serializedName": "prompt_tokens", "doc": "Number of prompt tokens used over the course of the run step.", "type": { - "$id": "6460", + "$id": "6462", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83086,13 +83112,13 @@ "isHttpMetadata": false }, { - "$id": "6461", + "$id": "6463", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "Total number of tokens used (prompt + completion).", "type": { - "$id": "6462", + "$id": "6464", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83147,12 +83173,12 @@ "isHttpMetadata": false }, { - "$id": "6463", + "$id": "6465", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6464", + "$id": "6466", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83172,12 +83198,12 @@ "isHttpMetadata": false }, { - "$id": "6465", + "$id": "6467", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6466", + "$id": "6468", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83197,12 +83223,12 @@ "isHttpMetadata": false }, { - "$id": "6467", + "$id": "6469", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6468", + "$id": "6470", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83224,70 +83250,70 @@ ] }, { - "$ref": "6320" - }, - { - "$ref": "6336" + "$ref": "6322" }, { "$ref": "6338" }, { - "$ref": "6346" + "$ref": "6340" }, { - "$ref": "6349" + "$ref": "6348" }, { - "$ref": "6354" + "$ref": "6351" }, { - "$ref": "6358" + "$ref": "6356" }, { - "$ref": "6367" + "$ref": "6360" }, { - "$ref": "6372" + "$ref": "6369" }, { "$ref": "6374" }, { - "$ref": "6383" + "$ref": "6376" }, { - "$ref": "6387" + "$ref": "6385" }, { - "$ref": "6390" + "$ref": "6389" }, { - "$ref": "6394" + "$ref": "6392" }, { "$ref": "6396" }, { - "$ref": "6402" + "$ref": "6398" + }, + { + "$ref": "6404" }, { - "$ref": "6411" + "$ref": "6413" }, { - "$ref": "6419" + "$ref": "6421" }, { - "$ref": "6423" + "$ref": "6425" }, { - "$ref": "6433" + "$ref": "6435" }, { - "$ref": "6456" + "$ref": "6458" }, { - "$id": "6469", + "$id": "6471", "kind": "model", "name": "ThreadObject", "namespace": "OpenAI", @@ -83297,13 +83323,13 @@ "decorators": [], "properties": [ { - "$id": "6470", + "$id": "6472", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6471", + "$id": "6473", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83323,7 +83349,7 @@ "isHttpMetadata": false }, { - "$id": "6472", + "$id": "6474", "kind": "property", "name": "object", "serializedName": "object", @@ -83345,18 +83371,18 @@ "isHttpMetadata": false }, { - "$id": "6473", + "$id": "6475", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the thread was created.", "type": { - "$id": "6474", + "$id": "6476", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6475", + "$id": "6477", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83379,16 +83405,16 @@ "isHttpMetadata": false }, { - "$id": "6476", + "$id": "6478", "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": "6477", + "$id": "6479", "kind": "nullable", "type": { - "$id": "6478", + "$id": "6480", "kind": "model", "name": "ThreadObjectToolResources1", "namespace": "OpenAI", @@ -83397,12 +83423,12 @@ "decorators": [], "properties": [ { - "$id": "6479", + "$id": "6481", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6480", + "$id": "6482", "kind": "model", "name": "ThreadObjectToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -83411,7 +83437,7 @@ "decorators": [], "properties": [ { - "$id": "6481", + "$id": "6483", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -83448,12 +83474,12 @@ "isHttpMetadata": false }, { - "$id": "6482", + "$id": "6484", "kind": "property", "name": "file_search", "serializedName": "file_search", "type": { - "$id": "6483", + "$id": "6485", "kind": "model", "name": "ThreadObjectToolResourcesFileSearch", "namespace": "OpenAI", @@ -83462,7 +83488,7 @@ "decorators": [], "properties": [ { - "$id": "6484", + "$id": "6486", "kind": "property", "name": "vector_store_ids", "serializedName": "vector_store_ids", @@ -83516,7 +83542,7 @@ "isHttpMetadata": false }, { - "$id": "6485", + "$id": "6487", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -83540,16 +83566,16 @@ ] }, { - "$ref": "6478" + "$ref": "6480" }, { - "$ref": "6480" + "$ref": "6482" }, { - "$ref": "6483" + "$ref": "6485" }, { - "$id": "6486", + "$id": "6488", "kind": "model", "name": "ModifyThreadRequest", "namespace": "OpenAI", @@ -83558,16 +83584,16 @@ "decorators": [], "properties": [ { - "$id": "6487", + "$id": "6489", "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": "6488", + "$id": "6490", "kind": "nullable", "type": { - "$id": "6489", + "$id": "6491", "kind": "model", "name": "ModifyThreadRequestToolResources1", "namespace": "OpenAI", @@ -83576,12 +83602,12 @@ "decorators": [], "properties": [ { - "$id": "6490", + "$id": "6492", "kind": "property", "name": "code_interpreter", "serializedName": "code_interpreter", "type": { - "$id": "6491", + "$id": "6493", "kind": "model", "name": "ModifyThreadRequestToolResourcesCodeInterpreter", "namespace": "OpenAI", @@ -83590,7 +83616,7 @@ "decorators": [], "properties": [ { - "$id": "6492", + "$id": "6494", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -83627,7 +83653,7 @@ "isHttpMetadata": false }, { - "$id": "6493", + "$id": "6495", "kind": "property", "name": "file_search", "serializedName": "file_search", @@ -83665,7 +83691,7 @@ "isHttpMetadata": false }, { - "$id": "6494", + "$id": "6496", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -83689,13 +83715,13 @@ ] }, { - "$ref": "6489" + "$ref": "6491" }, { - "$ref": "6491" + "$ref": "6493" }, { - "$id": "6495", + "$id": "6497", "kind": "model", "name": "DeleteThreadResponse", "namespace": "OpenAI", @@ -83704,12 +83730,12 @@ "decorators": [], "properties": [ { - "$id": "6496", + "$id": "6498", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6497", + "$id": "6499", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83729,12 +83755,12 @@ "isHttpMetadata": false }, { - "$id": "6498", + "$id": "6500", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6499", + "$id": "6501", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -83754,7 +83780,7 @@ "isHttpMetadata": false }, { - "$id": "6500", + "$id": "6502", "kind": "property", "name": "object", "serializedName": "object", @@ -83777,7 +83803,7 @@ ] }, { - "$id": "6501", + "$id": "6503", "kind": "model", "name": "ListVectorStoresResponse", "namespace": "OpenAI", @@ -83786,7 +83812,7 @@ "decorators": [], "properties": [ { - "$id": "6502", + "$id": "6504", "kind": "property", "name": "object", "serializedName": "object", @@ -83807,16 +83833,16 @@ "isHttpMetadata": false }, { - "$id": "6503", + "$id": "6505", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6504", + "$id": "6506", "kind": "array", "name": "ArrayVectorStoreObject", "valueType": { - "$id": "6505", + "$id": "6507", "kind": "model", "name": "VectorStoreObject", "namespace": "OpenAI", @@ -83826,13 +83852,13 @@ "decorators": [], "properties": [ { - "$id": "6506", + "$id": "6508", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6507", + "$id": "6509", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83852,7 +83878,7 @@ "isHttpMetadata": false }, { - "$id": "6508", + "$id": "6510", "kind": "property", "name": "object", "serializedName": "object", @@ -83874,18 +83900,18 @@ "isHttpMetadata": false }, { - "$id": "6509", + "$id": "6511", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store was created.", "type": { - "$id": "6510", + "$id": "6512", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6511", + "$id": "6513", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83908,13 +83934,13 @@ "isHttpMetadata": false }, { - "$id": "6512", + "$id": "6514", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6513", + "$id": "6515", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -83934,13 +83960,13 @@ "isHttpMetadata": false }, { - "$id": "6514", + "$id": "6516", "kind": "property", "name": "usage_bytes", "serializedName": "usage_bytes", "doc": "The total number of bytes used by the files in the vector store.", "type": { - "$id": "6515", + "$id": "6517", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -83960,12 +83986,12 @@ "isHttpMetadata": false }, { - "$id": "6516", + "$id": "6518", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6517", + "$id": "6519", "kind": "model", "name": "VectorStoreObjectFileCounts", "namespace": "OpenAI", @@ -83974,13 +84000,13 @@ "decorators": [], "properties": [ { - "$id": "6518", + "$id": "6520", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6519", + "$id": "6521", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84000,13 +84026,13 @@ "isHttpMetadata": false }, { - "$id": "6520", + "$id": "6522", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been successfully processed.", "type": { - "$id": "6521", + "$id": "6523", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84026,13 +84052,13 @@ "isHttpMetadata": false }, { - "$id": "6522", + "$id": "6524", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6523", + "$id": "6525", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84052,13 +84078,13 @@ "isHttpMetadata": false }, { - "$id": "6524", + "$id": "6526", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that were cancelled.", "type": { - "$id": "6525", + "$id": "6527", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84078,13 +84104,13 @@ "isHttpMetadata": false }, { - "$id": "6526", + "$id": "6528", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6527", + "$id": "6529", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84119,7 +84145,7 @@ "isHttpMetadata": false }, { - "$id": "6528", + "$id": "6530", "kind": "property", "name": "status", "serializedName": "status", @@ -84141,12 +84167,12 @@ "isHttpMetadata": false }, { - "$id": "6529", + "$id": "6531", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6530", + "$id": "6532", "kind": "model", "name": "VectorStoreExpirationAfter", "namespace": "OpenAI", @@ -84156,13 +84182,13 @@ "decorators": [], "properties": [ { - "$id": "6531", + "$id": "6533", "kind": "property", "name": "anchor", "serializedName": "anchor", "doc": "Anchor timestamp after which the expiration policy applies. Supported anchors: `last_active_at`.", "type": { - "$id": "6532", + "$id": "6534", "kind": "enumvalue", "name": "last_active_at", "value": "last_active_at", @@ -84170,14 +84196,14 @@ "$ref": "1450" }, "enumType": { - "$id": "6533", + "$id": "6535", "kind": "enum", "decorators": [], "name": "VectorStoreExpirationAnchor", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6534", + "$id": "6536", "kind": "string", "decorators": [], "name": "string", @@ -84186,16 +84212,16 @@ }, "values": [ { - "$id": "6535", + "$id": "6537", "kind": "enumvalue", "decorators": [], "name": "last_active_at", "value": "last_active_at", "enumType": { - "$ref": "6533" + "$ref": "6535" }, "valueType": { - "$ref": "6534" + "$ref": "6536" } } ], @@ -84224,13 +84250,13 @@ "isHttpMetadata": false }, { - "$id": "6536", + "$id": "6538", "kind": "property", "name": "days", "serializedName": "days", "doc": "The number of days after the anchor time that the vector store will expire.", "type": { - "$id": "6537", + "$id": "6539", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84265,21 +84291,21 @@ "isHttpMetadata": false }, { - "$id": "6538", + "$id": "6540", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the vector store will expire.", "type": { - "$id": "6539", + "$id": "6541", "kind": "nullable", "type": { - "$id": "6540", + "$id": "6542", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6541", + "$id": "6543", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84304,21 +84330,21 @@ "isHttpMetadata": false }, { - "$id": "6542", + "$id": "6544", "kind": "property", "name": "last_active_at", "serializedName": "last_active_at", "doc": "The Unix timestamp (in seconds) for when the vector store was last active.", "type": { - "$id": "6543", + "$id": "6545", "kind": "nullable", "type": { - "$id": "6544", + "$id": "6546", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6545", + "$id": "6547", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84343,7 +84369,7 @@ "isHttpMetadata": false }, { - "$id": "6546", + "$id": "6548", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -84383,12 +84409,12 @@ "isHttpMetadata": false }, { - "$id": "6547", + "$id": "6549", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6548", + "$id": "6550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84408,12 +84434,12 @@ "isHttpMetadata": false }, { - "$id": "6549", + "$id": "6551", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6550", + "$id": "6552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84433,12 +84459,12 @@ "isHttpMetadata": false }, { - "$id": "6551", + "$id": "6553", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6552", + "$id": "6554", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84460,16 +84486,16 @@ ] }, { - "$ref": "6505" + "$ref": "6507" }, { - "$ref": "6517" + "$ref": "6519" }, { - "$ref": "6530" + "$ref": "6532" }, { - "$id": "6553", + "$id": "6555", "kind": "model", "name": "CreateVectorStoreRequest", "namespace": "OpenAI", @@ -84478,7 +84504,7 @@ "decorators": [], "properties": [ { - "$id": "6554", + "$id": "6556", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -84500,13 +84526,13 @@ "isHttpMetadata": false }, { - "$id": "6555", + "$id": "6557", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6556", + "$id": "6558", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84526,12 +84552,12 @@ "isHttpMetadata": false }, { - "$id": "6557", + "$id": "6559", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$ref": "6530" + "$ref": "6532" }, "optional": true, "readOnly": false, @@ -84547,13 +84573,13 @@ "isHttpMetadata": false }, { - "$id": "6558", + "$id": "6560", "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": "6559", + "$id": "6561", "kind": "union", "name": "CreateVectorStoreRequestChunkingStrategy", "variantTypes": [ @@ -84581,7 +84607,7 @@ "isHttpMetadata": false }, { - "$id": "6560", + "$id": "6562", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -84605,7 +84631,7 @@ ] }, { - "$id": "6561", + "$id": "6563", "kind": "model", "name": "UpdateVectorStoreRequest", "namespace": "OpenAI", @@ -84614,16 +84640,16 @@ "decorators": [], "properties": [ { - "$id": "6562", + "$id": "6564", "kind": "property", "name": "name", "serializedName": "name", "doc": "The name of the vector store.", "type": { - "$id": "6563", + "$id": "6565", "kind": "nullable", "type": { - "$id": "6564", + "$id": "6566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84645,15 +84671,15 @@ "isHttpMetadata": false }, { - "$id": "6565", + "$id": "6567", "kind": "property", "name": "expires_after", "serializedName": "expires_after", "type": { - "$id": "6566", + "$id": "6568", "kind": "nullable", "type": { - "$ref": "6530" + "$ref": "6532" }, "namespace": "OpenAI" }, @@ -84671,7 +84697,7 @@ "isHttpMetadata": false }, { - "$id": "6567", + "$id": "6569", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -84695,7 +84721,7 @@ ] }, { - "$id": "6568", + "$id": "6570", "kind": "model", "name": "DeleteVectorStoreResponse", "namespace": "OpenAI", @@ -84704,12 +84730,12 @@ "decorators": [], "properties": [ { - "$id": "6569", + "$id": "6571", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6570", + "$id": "6572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84729,12 +84755,12 @@ "isHttpMetadata": false }, { - "$id": "6571", + "$id": "6573", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6572", + "$id": "6574", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -84754,7 +84780,7 @@ "isHttpMetadata": false }, { - "$id": "6573", + "$id": "6575", "kind": "property", "name": "object", "serializedName": "object", @@ -84777,7 +84803,7 @@ ] }, { - "$id": "6574", + "$id": "6576", "kind": "model", "name": "CreateVectorStoreFileBatchRequest", "namespace": "OpenAI", @@ -84786,7 +84812,7 @@ "decorators": [], "properties": [ { - "$id": "6575", + "$id": "6577", "kind": "property", "name": "file_ids", "serializedName": "file_ids", @@ -84808,7 +84834,7 @@ "isHttpMetadata": false }, { - "$id": "6576", + "$id": "6578", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -84829,15 +84855,15 @@ "isHttpMetadata": false }, { - "$id": "6577", + "$id": "6579", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6578", + "$id": "6580", "kind": "nullable", "type": { - "$ref": "3877" + "$ref": "3879" }, "namespace": "OpenAI" }, @@ -84857,7 +84883,7 @@ ] }, { - "$id": "6579", + "$id": "6581", "kind": "model", "name": "VectorStoreFileBatchObject", "namespace": "OpenAI", @@ -84867,13 +84893,13 @@ "decorators": [], "properties": [ { - "$id": "6580", + "$id": "6582", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6581", + "$id": "6583", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84893,7 +84919,7 @@ "isHttpMetadata": false }, { - "$id": "6582", + "$id": "6584", "kind": "property", "name": "object", "serializedName": "object", @@ -84915,18 +84941,18 @@ "isHttpMetadata": false }, { - "$id": "6583", + "$id": "6585", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store files batch was created.", "type": { - "$id": "6584", + "$id": "6586", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6585", + "$id": "6587", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -84949,13 +84975,13 @@ "isHttpMetadata": false }, { - "$id": "6586", + "$id": "6588", "kind": "property", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the [vector store](/docs/api-reference/vector-stores/object) that the [File](/docs/api-reference/files) is attached to.", "type": { - "$id": "6587", + "$id": "6589", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -84975,7 +85001,7 @@ "isHttpMetadata": false }, { - "$id": "6588", + "$id": "6590", "kind": "property", "name": "status", "serializedName": "status", @@ -84997,12 +85023,12 @@ "isHttpMetadata": false }, { - "$id": "6589", + "$id": "6591", "kind": "property", "name": "file_counts", "serializedName": "file_counts", "type": { - "$id": "6590", + "$id": "6592", "kind": "model", "name": "VectorStoreFileBatchObjectFileCounts", "namespace": "OpenAI", @@ -85011,13 +85037,13 @@ "decorators": [], "properties": [ { - "$id": "6591", + "$id": "6593", "kind": "property", "name": "in_progress", "serializedName": "in_progress", "doc": "The number of files that are currently being processed.", "type": { - "$id": "6592", + "$id": "6594", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85037,13 +85063,13 @@ "isHttpMetadata": false }, { - "$id": "6593", + "$id": "6595", "kind": "property", "name": "completed", "serializedName": "completed", "doc": "The number of files that have been processed.", "type": { - "$id": "6594", + "$id": "6596", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85063,13 +85089,13 @@ "isHttpMetadata": false }, { - "$id": "6595", + "$id": "6597", "kind": "property", "name": "failed", "serializedName": "failed", "doc": "The number of files that have failed to process.", "type": { - "$id": "6596", + "$id": "6598", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85089,13 +85115,13 @@ "isHttpMetadata": false }, { - "$id": "6597", + "$id": "6599", "kind": "property", "name": "cancelled", "serializedName": "cancelled", "doc": "The number of files that where cancelled.", "type": { - "$id": "6598", + "$id": "6600", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85115,13 +85141,13 @@ "isHttpMetadata": false }, { - "$id": "6599", + "$id": "6601", "kind": "property", "name": "total", "serializedName": "total", "doc": "The total number of files.", "type": { - "$id": "6600", + "$id": "6602", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85158,10 +85184,10 @@ ] }, { - "$ref": "6590" + "$ref": "6592" }, { - "$id": "6601", + "$id": "6603", "kind": "model", "name": "ListVectorStoreFilesResponse", "namespace": "OpenAI", @@ -85170,7 +85196,7 @@ "decorators": [], "properties": [ { - "$id": "6602", + "$id": "6604", "kind": "property", "name": "object", "serializedName": "object", @@ -85191,16 +85217,16 @@ "isHttpMetadata": false }, { - "$id": "6603", + "$id": "6605", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6604", + "$id": "6606", "kind": "array", "name": "ArrayVectorStoreFileObject", "valueType": { - "$id": "6605", + "$id": "6607", "kind": "model", "name": "VectorStoreFileObject", "namespace": "OpenAI", @@ -85210,13 +85236,13 @@ "decorators": [], "properties": [ { - "$id": "6606", + "$id": "6608", "kind": "property", "name": "id", "serializedName": "id", "doc": "The identifier, which can be referenced in API endpoints.", "type": { - "$id": "6607", + "$id": "6609", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85236,7 +85262,7 @@ "isHttpMetadata": false }, { - "$id": "6608", + "$id": "6610", "kind": "property", "name": "object", "serializedName": "object", @@ -85258,13 +85284,13 @@ "isHttpMetadata": false }, { - "$id": "6609", + "$id": "6611", "kind": "property", "name": "usage_bytes", "serializedName": "usage_bytes", "doc": "The total vector store usage in bytes. Note that this may be different from the original file size.", "type": { - "$id": "6610", + "$id": "6612", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85284,18 +85310,18 @@ "isHttpMetadata": false }, { - "$id": "6611", + "$id": "6613", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the vector store file was created.", "type": { - "$id": "6612", + "$id": "6614", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6613", + "$id": "6615", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -85318,13 +85344,13 @@ "isHttpMetadata": false }, { - "$id": "6614", + "$id": "6616", "kind": "property", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the [vector store](/docs/api-reference/vector-stores/object) that the [File](/docs/api-reference/files) is attached to.", "type": { - "$id": "6615", + "$id": "6617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85344,7 +85370,7 @@ "isHttpMetadata": false }, { - "$id": "6616", + "$id": "6618", "kind": "property", "name": "status", "serializedName": "status", @@ -85366,16 +85392,16 @@ "isHttpMetadata": false }, { - "$id": "6617", + "$id": "6619", "kind": "property", "name": "last_error", "serializedName": "last_error", "doc": "The last error associated with this vector store file. Will be `null` if there are no errors.", "type": { - "$id": "6618", + "$id": "6620", "kind": "nullable", "type": { - "$id": "6619", + "$id": "6621", "kind": "model", "name": "VectorStoreFileObjectLastError1", "namespace": "OpenAI", @@ -85384,7 +85410,7 @@ "decorators": [], "properties": [ { - "$id": "6620", + "$id": "6622", "kind": "property", "name": "code", "serializedName": "code", @@ -85406,13 +85432,13 @@ "isHttpMetadata": false }, { - "$id": "6621", + "$id": "6623", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable description of the error.", "type": { - "$id": "6622", + "$id": "6624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85449,13 +85475,13 @@ "isHttpMetadata": false }, { - "$id": "6623", + "$id": "6625", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", "doc": "The strategy used to chunk the file.", "type": { - "$id": "6624", + "$id": "6626", "kind": "model", "name": "ChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -85463,7 +85489,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6625", + "$id": "6627", "kind": "property", "name": "type", "serializedName": "type", @@ -85485,12 +85511,12 @@ }, "properties": [ { - "$ref": "6625" + "$ref": "6627" } ], "discriminatedSubtypes": { "other": { - "$id": "6626", + "$id": "6628", "kind": "model", "name": "OtherChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -85500,17 +85526,17 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "6624" + "$ref": "6626" }, "properties": [ { - "$id": "6627", + "$id": "6629", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `other`.", "type": { - "$id": "6628", + "$id": "6630", "kind": "enumvalue", "name": "other", "value": "other", @@ -85518,14 +85544,14 @@ "$ref": "1078" }, "enumType": { - "$id": "6629", + "$id": "6631", "kind": "enum", "decorators": [], "name": "ChunkingStrategyResponseParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "6630", + "$id": "6632", "kind": "string", "decorators": [], "name": "string", @@ -85534,29 +85560,29 @@ }, "values": [ { - "$id": "6631", + "$id": "6633", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "6630" + "$ref": "6632" }, "enumType": { - "$ref": "6629" + "$ref": "6631" } }, { - "$id": "6632", + "$id": "6634", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "6630" + "$ref": "6632" }, "enumType": { - "$ref": "6629" + "$ref": "6631" } } ], @@ -85587,7 +85613,7 @@ ] }, "static": { - "$id": "6633", + "$id": "6635", "kind": "model", "name": "StaticChunkingStrategyResponseParam", "namespace": "OpenAI", @@ -85596,17 +85622,17 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "6624" + "$ref": "6626" }, "properties": [ { - "$id": "6634", + "$id": "6636", "kind": "property", "name": "type", "serializedName": "type", "doc": "Always `static`.", "type": { - "$id": "6635", + "$id": "6637", "kind": "enumvalue", "name": "static", "value": "static", @@ -85614,7 +85640,7 @@ "$ref": "1078" }, "enumType": { - "$ref": "6629" + "$ref": "6631" }, "decorators": [] }, @@ -85632,7 +85658,7 @@ "isHttpMetadata": false }, { - "$id": "6636", + "$id": "6638", "kind": "property", "name": "static", "serializedName": "static", @@ -85670,15 +85696,15 @@ "isHttpMetadata": false }, { - "$id": "6637", + "$id": "6639", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6638", + "$id": "6640", "kind": "nullable", "type": { - "$ref": "3877" + "$ref": "3879" }, "namespace": "OpenAI" }, @@ -85714,12 +85740,12 @@ "isHttpMetadata": false }, { - "$id": "6639", + "$id": "6641", "kind": "property", "name": "first_id", "serializedName": "first_id", "type": { - "$id": "6640", + "$id": "6642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85739,12 +85765,12 @@ "isHttpMetadata": false }, { - "$id": "6641", + "$id": "6643", "kind": "property", "name": "last_id", "serializedName": "last_id", "type": { - "$id": "6642", + "$id": "6644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85764,12 +85790,12 @@ "isHttpMetadata": false }, { - "$id": "6643", + "$id": "6645", "kind": "property", "name": "has_more", "serializedName": "has_more", "type": { - "$id": "6644", + "$id": "6646", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85791,22 +85817,22 @@ ] }, { - "$ref": "6605" + "$ref": "6607" }, { - "$ref": "6619" + "$ref": "6621" }, { - "$ref": "6624" + "$ref": "6626" }, { - "$ref": "6626" + "$ref": "6628" }, { - "$ref": "6633" + "$ref": "6635" }, { - "$id": "6645", + "$id": "6647", "kind": "model", "name": "CreateVectorStoreFileRequest", "namespace": "OpenAI", @@ -85815,13 +85841,13 @@ "decorators": [], "properties": [ { - "$id": "6646", + "$id": "6648", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "A [File](/docs/api-reference/files) ID that the vector store should use. Useful for tools like `file_search` that can access files.", "type": { - "$id": "6647", + "$id": "6649", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85841,7 +85867,7 @@ "isHttpMetadata": false }, { - "$id": "6648", + "$id": "6650", "kind": "property", "name": "chunking_strategy", "serializedName": "chunking_strategy", @@ -85862,15 +85888,15 @@ "isHttpMetadata": false }, { - "$id": "6649", + "$id": "6651", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6650", + "$id": "6652", "kind": "nullable", "type": { - "$ref": "3877" + "$ref": "3879" }, "namespace": "OpenAI" }, @@ -85890,7 +85916,7 @@ ] }, { - "$id": "6651", + "$id": "6653", "kind": "model", "name": "DeleteVectorStoreFileResponse", "namespace": "OpenAI", @@ -85899,12 +85925,12 @@ "decorators": [], "properties": [ { - "$id": "6652", + "$id": "6654", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6653", + "$id": "6655", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -85924,12 +85950,12 @@ "isHttpMetadata": false }, { - "$id": "6654", + "$id": "6656", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6655", + "$id": "6657", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -85949,7 +85975,7 @@ "isHttpMetadata": false }, { - "$id": "6656", + "$id": "6658", "kind": "property", "name": "object", "serializedName": "object", @@ -85972,7 +85998,7 @@ ] }, { - "$id": "6657", + "$id": "6659", "kind": "model", "name": "UpdateVectorStoreFileAttributesRequest", "namespace": "OpenAI", @@ -85981,15 +86007,15 @@ "decorators": [], "properties": [ { - "$id": "6658", + "$id": "6660", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6659", + "$id": "6661", "kind": "nullable", "type": { - "$ref": "3877" + "$ref": "3879" }, "namespace": "OpenAI" }, @@ -86009,7 +86035,7 @@ ] }, { - "$id": "6660", + "$id": "6662", "kind": "model", "name": "VectorStoreFileContentResponse", "namespace": "OpenAI", @@ -86019,7 +86045,7 @@ "decorators": [], "properties": [ { - "$id": "6661", + "$id": "6663", "kind": "property", "name": "object", "serializedName": "object", @@ -86041,17 +86067,17 @@ "isHttpMetadata": false }, { - "$id": "6662", + "$id": "6664", "kind": "property", "name": "data", "serializedName": "data", "doc": "Parsed content of the file.", "type": { - "$id": "6663", + "$id": "6665", "kind": "array", "name": "Array40", "valueType": { - "$id": "6664", + "$id": "6666", "kind": "model", "name": "VectorStoreFileContentResponseDatum", "namespace": "OpenAI", @@ -86060,13 +86086,13 @@ "decorators": [], "properties": [ { - "$id": "6665", + "$id": "6667", "kind": "property", "name": "type", "serializedName": "type", "doc": "The content type (currently only `\"text\"`)", "type": { - "$id": "6666", + "$id": "6668", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86086,13 +86112,13 @@ "isHttpMetadata": false }, { - "$id": "6667", + "$id": "6669", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content", "type": { - "$id": "6668", + "$id": "6670", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86130,13 +86156,13 @@ "isHttpMetadata": false }, { - "$id": "6669", + "$id": "6671", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more content pages to fetch.", "type": { - "$id": "6670", + "$id": "6672", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86156,16 +86182,16 @@ "isHttpMetadata": false }, { - "$id": "6671", + "$id": "6673", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6672", + "$id": "6674", "kind": "nullable", "type": { - "$id": "6673", + "$id": "6675", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86189,10 +86215,10 @@ ] }, { - "$ref": "6664" + "$ref": "6666" }, { - "$id": "6674", + "$id": "6676", "kind": "model", "name": "VectorStoreSearchRequestRankingOptions", "namespace": "OpenAI", @@ -86201,7 +86227,7 @@ "decorators": [], "properties": [ { - "$id": "6675", + "$id": "6677", "kind": "property", "name": "ranker", "serializedName": "ranker", @@ -86222,12 +86248,12 @@ "isHttpMetadata": false }, { - "$id": "6676", + "$id": "6678", "kind": "property", "name": "score_threshold", "serializedName": "score_threshold", "type": { - "$id": "6677", + "$id": "6679", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -86249,7 +86275,7 @@ ] }, { - "$id": "6678", + "$id": "6680", "kind": "model", "name": "VectorStoreSearchRequest", "namespace": "OpenAI", @@ -86258,18 +86284,18 @@ "decorators": [], "properties": [ { - "$id": "6679", + "$id": "6681", "kind": "property", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$id": "6680", + "$id": "6682", "kind": "union", "name": "VectorStoreSearchRequestQuery", "variantTypes": [ { - "$id": "6681", + "$id": "6683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86296,13 +86322,13 @@ "isHttpMetadata": false }, { - "$id": "6682", + "$id": "6684", "kind": "property", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "6683", + "$id": "6685", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86322,13 +86348,13 @@ "isHttpMetadata": false }, { - "$id": "6684", + "$id": "6686", "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": "6685", + "$id": "6687", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86348,21 +86374,21 @@ "isHttpMetadata": false }, { - "$id": "6686", + "$id": "6688", "kind": "property", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$id": "6687", + "$id": "6689", "kind": "union", "name": "VectorStoreSearchRequestFilters", "variantTypes": [ { - "$ref": "4318" + "$ref": "4320" }, { - "$ref": "4353" + "$ref": "4355" } ], "namespace": "OpenAI", @@ -86382,13 +86408,13 @@ "isHttpMetadata": false }, { - "$id": "6688", + "$id": "6690", "kind": "property", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6674" + "$ref": "6676" }, "optional": true, "readOnly": false, @@ -86406,7 +86432,7 @@ ] }, { - "$id": "6689", + "$id": "6691", "kind": "model", "name": "VectorStoreSearchResultsPage", "namespace": "OpenAI", @@ -86415,7 +86441,7 @@ "decorators": [], "properties": [ { - "$id": "6690", + "$id": "6692", "kind": "property", "name": "object", "serializedName": "object", @@ -86437,7 +86463,7 @@ "isHttpMetadata": false }, { - "$id": "6691", + "$id": "6693", "kind": "property", "name": "search_query", "serializedName": "search_query", @@ -86458,17 +86484,17 @@ "isHttpMetadata": false }, { - "$id": "6692", + "$id": "6694", "kind": "property", "name": "data", "serializedName": "data", "doc": "The list of search result items.", "type": { - "$id": "6693", + "$id": "6695", "kind": "array", "name": "ArrayVectorStoreSearchResultItem", "valueType": { - "$id": "6694", + "$id": "6696", "kind": "model", "name": "VectorStoreSearchResultItem", "namespace": "OpenAI", @@ -86477,13 +86503,13 @@ "decorators": [], "properties": [ { - "$id": "6695", + "$id": "6697", "kind": "property", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the vector store file.", "type": { - "$id": "6696", + "$id": "6698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86503,13 +86529,13 @@ "isHttpMetadata": false }, { - "$id": "6697", + "$id": "6699", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the vector store file.", "type": { - "$id": "6698", + "$id": "6700", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86529,13 +86555,13 @@ "isHttpMetadata": false }, { - "$id": "6699", + "$id": "6701", "kind": "property", "name": "score", "serializedName": "score", "doc": "The similarity score for the result.", "type": { - "$id": "6700", + "$id": "6702", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -86555,15 +86581,15 @@ "isHttpMetadata": false }, { - "$id": "6701", + "$id": "6703", "kind": "property", "name": "attributes", "serializedName": "attributes", "type": { - "$id": "6702", + "$id": "6704", "kind": "nullable", "type": { - "$ref": "3877" + "$ref": "3879" }, "namespace": "OpenAI" }, @@ -86581,17 +86607,17 @@ "isHttpMetadata": false }, { - "$id": "6703", + "$id": "6705", "kind": "property", "name": "content", "serializedName": "content", "doc": "Content chunks from the file.", "type": { - "$id": "6704", + "$id": "6706", "kind": "array", "name": "ArrayVectorStoreSearchResultContentObject", "valueType": { - "$id": "6705", + "$id": "6707", "kind": "model", "name": "VectorStoreSearchResultContentObject", "namespace": "OpenAI", @@ -86600,7 +86626,7 @@ "decorators": [], "properties": [ { - "$id": "6706", + "$id": "6708", "kind": "property", "name": "type", "serializedName": "type", @@ -86622,13 +86648,13 @@ "isHttpMetadata": false }, { - "$id": "6707", + "$id": "6709", "kind": "property", "name": "text", "serializedName": "text", "doc": "The text content returned from search.", "type": { - "$id": "6708", + "$id": "6710", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86684,13 +86710,13 @@ "isHttpMetadata": false }, { - "$id": "6709", + "$id": "6711", "kind": "property", "name": "has_more", "serializedName": "has_more", "doc": "Indicates if there are more results to fetch.", "type": { - "$id": "6710", + "$id": "6712", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86710,16 +86736,16 @@ "isHttpMetadata": false }, { - "$id": "6711", + "$id": "6713", "kind": "property", "name": "next_page", "serializedName": "next_page", "doc": "The token for the next page, if any.", "type": { - "$id": "6712", + "$id": "6714", "kind": "nullable", "type": { - "$id": "6713", + "$id": "6715", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86743,13 +86769,13 @@ ] }, { - "$ref": "6694" + "$ref": "6696" }, { - "$ref": "6705" + "$ref": "6707" }, { - "$id": "6714", + "$id": "6716", "kind": "model", "name": "CreateCompletionRequest", "namespace": "OpenAI", @@ -86758,7 +86784,7 @@ "decorators": [], "properties": [ { - "$id": "6715", + "$id": "6717", "kind": "property", "name": "model", "serializedName": "model", @@ -86780,21 +86806,21 @@ "isHttpMetadata": false }, { - "$id": "6716", + "$id": "6718", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays.\n\nNote that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document.", "type": { - "$id": "6717", + "$id": "6719", "kind": "nullable", "type": { - "$id": "6718", + "$id": "6720", "kind": "union", "name": "CreateCompletionRequestPrompt", "variantTypes": [ { - "$id": "6719", + "$id": "6721", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -86807,7 +86833,7 @@ "$ref": "2604" }, { - "$ref": "3345" + "$ref": "3347" } ], "namespace": "OpenAI", @@ -86829,16 +86855,16 @@ "isHttpMetadata": false }, { - "$id": "6720", + "$id": "6722", "kind": "property", "name": "best_of", "serializedName": "best_of", "doc": "Generates `best_of` completions server-side and returns the \"best\" (the one with the highest log probability per token). Results cannot be streamed.\n\nWhen used with `n`, `best_of` controls the number of candidate completions and `n` specifies how many to return – `best_of` must be greater than `n`.\n\n**Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`.", "type": { - "$id": "6721", + "$id": "6723", "kind": "nullable", "type": { - "$id": "6722", + "$id": "6724", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86860,16 +86886,16 @@ "isHttpMetadata": false }, { - "$id": "6723", + "$id": "6725", "kind": "property", "name": "echo", "serializedName": "echo", "doc": "Echo back the prompt in addition to the completion", "type": { - "$id": "6724", + "$id": "6726", "kind": "nullable", "type": { - "$id": "6725", + "$id": "6727", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -86891,16 +86917,16 @@ "isHttpMetadata": false }, { - "$id": "6726", + "$id": "6728", "kind": "property", "name": "frequency_penalty", "serializedName": "frequency_penalty", "doc": "Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far, decreasing the model's likelihood to repeat the same line verbatim.\n\n[See more information about frequency and presence penalties.](/docs/guides/text-generation)", "type": { - "$id": "6727", + "$id": "6729", "kind": "nullable", "type": { - "$id": "6728", + "$id": "6730", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -86922,13 +86948,13 @@ "isHttpMetadata": false }, { - "$id": "6729", + "$id": "6731", "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 GPT tokenizer) to an associated bias value from -100 to 100. You can use this [tokenizer tool](/tokenizer?view=bpe) to convert text to token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling. The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection; values like -100 or 100 should result in a ban or exclusive selection of the relevant token.\n\nAs an example, you can pass `{\"50256\": -100}` to prevent the <|endoftext|> token from being generated.", "type": { - "$id": "6730", + "$id": "6732", "kind": "nullable", "type": { "$ref": "3100" @@ -86949,16 +86975,16 @@ "isHttpMetadata": false }, { - "$id": "6731", + "$id": "6733", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "Include the log probabilities on the `logprobs` most likely output tokens, as well the chosen tokens. For example, if `logprobs` is 5, the API will return a list of the 5 most likely tokens. The API will always return the `logprob` of the sampled token, so there may be up to `logprobs+1` elements in the response.\n\nThe maximum value for `logprobs` is 5.", "type": { - "$id": "6732", + "$id": "6734", "kind": "nullable", "type": { - "$id": "6733", + "$id": "6735", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -86980,16 +87006,16 @@ "isHttpMetadata": false }, { - "$id": "6734", + "$id": "6736", "kind": "property", "name": "max_tokens", "serializedName": "max_tokens", "doc": "The maximum number of [tokens](/tokenizer) that can be generated in the completion.\n\nThe token count of your prompt plus `max_tokens` cannot exceed the model's context length. [Example Python code](https://cookbook.openai.com/examples/how_to_count_tokens_with_tiktoken) for counting tokens.", "type": { - "$id": "6735", + "$id": "6737", "kind": "nullable", "type": { - "$id": "6736", + "$id": "6738", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87011,16 +87037,16 @@ "isHttpMetadata": false }, { - "$id": "6737", + "$id": "6739", "kind": "property", "name": "n", "serializedName": "n", "doc": "How many completions to generate for each prompt.\n\n**Note:** Because this parameter generates many completions, it can quickly consume your token quota. Use carefully and ensure that you have reasonable settings for `max_tokens` and `stop`.", "type": { - "$id": "6738", + "$id": "6740", "kind": "nullable", "type": { - "$id": "6739", + "$id": "6741", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87042,16 +87068,16 @@ "isHttpMetadata": false }, { - "$id": "6740", + "$id": "6742", "kind": "property", "name": "presence_penalty", "serializedName": "presence_penalty", "doc": "Number between -2.0 and 2.0. Positive values penalize new tokens based on whether they appear in the text so far, increasing the model's likelihood to talk about new topics.\n\n[See more information about frequency and presence penalties.](/docs/guides/text-generation)", "type": { - "$id": "6741", + "$id": "6743", "kind": "nullable", "type": { - "$id": "6742", + "$id": "6744", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87073,16 +87099,16 @@ "isHttpMetadata": false }, { - "$id": "6743", + "$id": "6745", "kind": "property", "name": "seed", "serializedName": "seed", "doc": "If 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.\n\nDeterminism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend.", "type": { - "$id": "6744", + "$id": "6746", "kind": "nullable", "type": { - "$id": "6745", + "$id": "6747", "kind": "int64", "name": "int64", "crossLanguageDefinitionId": "TypeSpec.int64", @@ -87104,12 +87130,12 @@ "isHttpMetadata": false }, { - "$id": "6746", + "$id": "6748", "kind": "property", "name": "stop", "serializedName": "stop", "type": { - "$id": "6747", + "$id": "6749", "kind": "nullable", "type": { "$ref": "3096" @@ -87130,16 +87156,16 @@ "isHttpMetadata": false }, { - "$id": "6748", + "$id": "6750", "kind": "property", "name": "stream", "serializedName": "stream", "doc": "Whether to stream back partial progress. If set, tokens will be sent as data-only [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events/Using_server-sent_events#Event_stream_format) as they become available, with the stream terminated by a `data: [DONE]` message. [Example Python code](https://cookbook.openai.com/examples/how_to_stream_completions).", "type": { - "$id": "6749", + "$id": "6751", "kind": "nullable", "type": { - "$id": "6750", + "$id": "6752", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87161,12 +87187,12 @@ "isHttpMetadata": false }, { - "$id": "6751", + "$id": "6753", "kind": "property", "name": "stream_options", "serializedName": "stream_options", "type": { - "$id": "6752", + "$id": "6754", "kind": "nullable", "type": { "$ref": "3130" @@ -87187,16 +87213,16 @@ "isHttpMetadata": false }, { - "$id": "6753", + "$id": "6755", "kind": "property", "name": "suffix", "serializedName": "suffix", "doc": "The suffix that comes after a completion of inserted text.\n\nThis parameter is only supported for `gpt-3.5-turbo-instruct`.", "type": { - "$id": "6754", + "$id": "6756", "kind": "nullable", "type": { - "$id": "6755", + "$id": "6757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87218,16 +87244,16 @@ "isHttpMetadata": false }, { - "$id": "6756", + "$id": "6758", "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.\n\nWe generally recommend altering this or `top_p` but not both.", "type": { - "$id": "6757", + "$id": "6759", "kind": "nullable", "type": { - "$id": "6758", + "$id": "6760", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87249,16 +87275,16 @@ "isHttpMetadata": false }, { - "$id": "6759", + "$id": "6761", "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": "6760", + "$id": "6762", "kind": "nullable", "type": { - "$id": "6761", + "$id": "6763", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87280,13 +87306,13 @@ "isHttpMetadata": false }, { - "$id": "6762", + "$id": "6764", "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": "6763", + "$id": "6765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87308,7 +87334,7 @@ ] }, { - "$id": "6764", + "$id": "6766", "kind": "model", "name": "CreateCompletionResponse", "namespace": "OpenAI", @@ -87318,13 +87344,13 @@ "decorators": [], "properties": [ { - "$id": "6765", + "$id": "6767", "kind": "property", "name": "id", "serializedName": "id", "doc": "A unique identifier for the completion.", "type": { - "$id": "6766", + "$id": "6768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87344,17 +87370,17 @@ "isHttpMetadata": false }, { - "$id": "6767", + "$id": "6769", "kind": "property", "name": "choices", "serializedName": "choices", "doc": "The list of completion choices the model generated for the input prompt.", "type": { - "$id": "6768", + "$id": "6770", "kind": "array", "name": "Array41", "valueType": { - "$id": "6769", + "$id": "6771", "kind": "model", "name": "CreateCompletionResponseChoice", "namespace": "OpenAI", @@ -87363,7 +87389,7 @@ "decorators": [], "properties": [ { - "$id": "6770", + "$id": "6772", "kind": "property", "name": "finish_reason", "serializedName": "finish_reason", @@ -87385,12 +87411,12 @@ "isHttpMetadata": false }, { - "$id": "6771", + "$id": "6773", "kind": "property", "name": "index", "serializedName": "index", "type": { - "$id": "6772", + "$id": "6774", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87410,15 +87436,15 @@ "isHttpMetadata": false }, { - "$id": "6773", + "$id": "6775", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "type": { - "$id": "6774", + "$id": "6776", "kind": "nullable", "type": { - "$id": "6775", + "$id": "6777", "kind": "model", "name": "CreateCompletionResponseChoiceLogprobs1", "namespace": "OpenAI", @@ -87427,7 +87453,7 @@ "decorators": [], "properties": [ { - "$id": "6776", + "$id": "6778", "kind": "property", "name": "text_offset", "serializedName": "text_offset", @@ -87448,7 +87474,7 @@ "isHttpMetadata": false }, { - "$id": "6777", + "$id": "6779", "kind": "property", "name": "token_logprobs", "serializedName": "token_logprobs", @@ -87469,7 +87495,7 @@ "isHttpMetadata": false }, { - "$id": "6778", + "$id": "6780", "kind": "property", "name": "tokens", "serializedName": "tokens", @@ -87490,26 +87516,26 @@ "isHttpMetadata": false }, { - "$id": "6779", + "$id": "6781", "kind": "property", "name": "top_logprobs", "serializedName": "top_logprobs", "type": { - "$id": "6780", + "$id": "6782", "kind": "array", "name": "ArrayRecord1", "valueType": { - "$id": "6781", + "$id": "6783", "kind": "dict", "keyType": { - "$id": "6782", + "$id": "6784", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", "decorators": [] }, "valueType": { - "$id": "6783", + "$id": "6785", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -87551,12 +87577,12 @@ "isHttpMetadata": false }, { - "$id": "6784", + "$id": "6786", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6785", + "$id": "6787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87594,18 +87620,18 @@ "isHttpMetadata": false }, { - "$id": "6786", + "$id": "6788", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) of when the completion was created.", "type": { - "$id": "6787", + "$id": "6789", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6788", + "$id": "6790", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87628,13 +87654,13 @@ "isHttpMetadata": false }, { - "$id": "6789", + "$id": "6791", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model used for completion.", "type": { - "$id": "6790", + "$id": "6792", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87654,13 +87680,13 @@ "isHttpMetadata": false }, { - "$id": "6791", + "$id": "6793", "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": "6792", + "$id": "6794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87680,7 +87706,7 @@ "isHttpMetadata": false }, { - "$id": "6793", + "$id": "6795", "kind": "property", "name": "object", "serializedName": "object", @@ -87702,7 +87728,7 @@ "isHttpMetadata": false }, { - "$id": "6794", + "$id": "6796", "kind": "property", "name": "usage", "serializedName": "usage", @@ -87725,13 +87751,13 @@ ] }, { - "$ref": "6769" + "$ref": "6771" }, { - "$ref": "6775" + "$ref": "6777" }, { - "$id": "6795", + "$id": "6797", "kind": "model", "name": "ListModelsResponse", "namespace": "OpenAI", @@ -87740,7 +87766,7 @@ "decorators": [], "properties": [ { - "$id": "6796", + "$id": "6798", "kind": "property", "name": "object", "serializedName": "object", @@ -87761,16 +87787,16 @@ "isHttpMetadata": false }, { - "$id": "6797", + "$id": "6799", "kind": "property", "name": "data", "serializedName": "data", "type": { - "$id": "6798", + "$id": "6800", "kind": "array", "name": "ArrayModel", "valueType": { - "$id": "6799", + "$id": "6801", "kind": "model", "name": "Model", "namespace": "OpenAI", @@ -87780,13 +87806,13 @@ "decorators": [], "properties": [ { - "$id": "6800", + "$id": "6802", "kind": "property", "name": "id", "serializedName": "id", "doc": "The model identifier, which can be referenced in the API endpoints.", "type": { - "$id": "6801", + "$id": "6803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87806,18 +87832,18 @@ "isHttpMetadata": false }, { - "$id": "6802", + "$id": "6804", "kind": "property", "name": "created", "serializedName": "created", "doc": "The Unix timestamp (in seconds) when the model was created.", "type": { - "$id": "6803", + "$id": "6805", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "6804", + "$id": "6806", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -87840,7 +87866,7 @@ "isHttpMetadata": false }, { - "$id": "6805", + "$id": "6807", "kind": "property", "name": "object", "serializedName": "object", @@ -87862,13 +87888,13 @@ "isHttpMetadata": false }, { - "$id": "6806", + "$id": "6808", "kind": "property", "name": "owned_by", "serializedName": "owned_by", "doc": "The organization that owns the model.", "type": { - "$id": "6807", + "$id": "6809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87908,10 +87934,10 @@ ] }, { - "$ref": "6799" + "$ref": "6801" }, { - "$id": "6808", + "$id": "6810", "kind": "model", "name": "DeleteModelResponse", "namespace": "OpenAI", @@ -87920,12 +87946,12 @@ "decorators": [], "properties": [ { - "$id": "6809", + "$id": "6811", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6810", + "$id": "6812", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -87945,12 +87971,12 @@ "isHttpMetadata": false }, { - "$id": "6811", + "$id": "6813", "kind": "property", "name": "deleted", "serializedName": "deleted", "type": { - "$id": "6812", + "$id": "6814", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -87970,7 +87996,7 @@ "isHttpMetadata": false }, { - "$id": "6813", + "$id": "6815", "kind": "property", "name": "object", "serializedName": "object", @@ -87993,7 +88019,7 @@ ] }, { - "$id": "6814", + "$id": "6816", "kind": "model", "name": "RealtimeClientEvent", "namespace": "OpenAI", @@ -88002,7 +88028,7 @@ "doc": "A realtime client event.", "decorators": [], "discriminatorProperty": { - "$id": "6815", + "$id": "6817", "kind": "property", "name": "type", "serializedName": "type", @@ -88025,15 +88051,15 @@ }, "properties": [ { - "$ref": "6815" + "$ref": "6817" }, { - "$id": "6816", + "$id": "6818", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "6817", + "$id": "6819", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88055,7 +88081,7 @@ ], "discriminatedSubtypes": { "session.update": { - "$id": "6818", + "$id": "6820", "kind": "model", "name": "RealtimeClientEventSessionUpdate", "namespace": "OpenAI", @@ -88065,17 +88091,17 @@ "discriminatorValue": "session.update", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "6819", + "$id": "6821", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.update`.", "type": { - "$id": "6820", + "$id": "6822", "kind": "enumvalue", "name": "session_update", "value": "session.update", @@ -88083,14 +88109,14 @@ "$ref": "1096" }, "enumType": { - "$id": "6821", + "$id": "6823", "kind": "enum", "decorators": [], "name": "RealtimeClientEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6822", + "$id": "6824", "kind": "string", "decorators": [], "name": "string", @@ -88099,159 +88125,159 @@ }, "values": [ { - "$id": "6823", + "$id": "6825", "kind": "enumvalue", "decorators": [], "name": "session_update", "value": "session.update", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6824", + "$id": "6826", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6825", + "$id": "6827", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6826", + "$id": "6828", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6827", + "$id": "6829", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6828", + "$id": "6830", "kind": "enumvalue", "decorators": [], "name": "conversation_item_create", "value": "conversation.item.create", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6829", + "$id": "6831", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6830", + "$id": "6832", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncate", "value": "conversation.item.truncate", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6831", + "$id": "6833", "kind": "enumvalue", "decorators": [], "name": "conversation_item_delete", "value": "conversation.item.delete", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6832", + "$id": "6834", "kind": "enumvalue", "decorators": [], "name": "response_create", "value": "response.create", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6833", + "$id": "6835", "kind": "enumvalue", "decorators": [], "name": "response_cancel", "value": "response.cancel", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } }, { - "$id": "6834", + "$id": "6836", "kind": "enumvalue", "decorators": [], "name": "transcription_session_update", "value": "transcription_session.update", "valueType": { - "$ref": "6822" + "$ref": "6824" }, "enumType": { - "$ref": "6821" + "$ref": "6823" } } ], @@ -88280,12 +88306,12 @@ "isHttpMetadata": false }, { - "$id": "6835", + "$id": "6837", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "6836", + "$id": "6838", "kind": "model", "name": "RealtimeRequestSession", "namespace": "OpenAI", @@ -88294,12 +88320,12 @@ "decorators": [], "properties": [ { - "$id": "6837", + "$id": "6839", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$id": "6838", + "$id": "6840", "kind": "array", "name": "ArrayRealtimeModality", "valueType": { @@ -88322,12 +88348,12 @@ "isHttpMetadata": false }, { - "$id": "6839", + "$id": "6841", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "6840", + "$id": "6842", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88347,7 +88373,7 @@ "isHttpMetadata": false }, { - "$id": "6841", + "$id": "6843", "kind": "property", "name": "model", "serializedName": "model", @@ -88368,7 +88394,7 @@ "isHttpMetadata": false }, { - "$id": "6842", + "$id": "6844", "kind": "property", "name": "voice", "serializedName": "voice", @@ -88389,7 +88415,7 @@ "isHttpMetadata": false }, { - "$id": "6843", + "$id": "6845", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -88410,7 +88436,7 @@ "isHttpMetadata": false }, { - "$id": "6844", + "$id": "6846", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -88431,15 +88457,15 @@ "isHttpMetadata": false }, { - "$id": "6845", + "$id": "6847", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "6846", + "$id": "6848", "kind": "nullable", "type": { - "$id": "6847", + "$id": "6849", "kind": "model", "name": "RealtimeAudioInputTranscriptionSettings", "namespace": "OpenAI", @@ -88448,7 +88474,7 @@ "decorators": [], "properties": [ { - "$id": "6848", + "$id": "6850", "kind": "property", "name": "model", "serializedName": "model", @@ -88469,12 +88495,12 @@ "isHttpMetadata": false }, { - "$id": "6849", + "$id": "6851", "kind": "property", "name": "language", "serializedName": "language", "type": { - "$id": "6850", + "$id": "6852", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88494,12 +88520,12 @@ "isHttpMetadata": false }, { - "$id": "6851", + "$id": "6853", "kind": "property", "name": "prompt", "serializedName": "prompt", "type": { - "$id": "6852", + "$id": "6854", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88536,15 +88562,15 @@ "isHttpMetadata": false }, { - "$id": "6853", + "$id": "6855", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$id": "6854", + "$id": "6856", "kind": "nullable", "type": { - "$id": "6855", + "$id": "6857", "kind": "model", "name": "RealtimeTurnDetection", "namespace": "OpenAI", @@ -88552,7 +88578,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6856", + "$id": "6858", "kind": "property", "name": "type", "serializedName": "type", @@ -88574,16 +88600,16 @@ }, "properties": [ { - "$ref": "6856" + "$ref": "6858" }, { - "$id": "6857", + "$id": "6859", "kind": "property", "name": "create_response", "serializedName": "create_response", "doc": "Whether or not to automatically generate a response when VAD is enabled. true by default.", "type": { - "$id": "6858", + "$id": "6860", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88603,13 +88629,13 @@ "isHttpMetadata": false }, { - "$id": "6859", + "$id": "6861", "kind": "property", "name": "interrupt_response", "serializedName": "interrupt_response", "doc": "Whether or not to automatically interrupt any ongoing response with output to the default conversation (i.e. `conversation` of `auto`) when a VAD start event occurs.", "type": { - "$id": "6860", + "$id": "6862", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -88631,7 +88657,7 @@ ], "discriminatedSubtypes": { "server_vad": { - "$id": "6861", + "$id": "6863", "kind": "model", "name": "RealtimeServerVadTurnDetection", "namespace": "OpenAI", @@ -88640,16 +88666,16 @@ "discriminatorValue": "server_vad", "decorators": [], "baseModel": { - "$ref": "6855" + "$ref": "6857" }, "properties": [ { - "$id": "6862", + "$id": "6864", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6863", + "$id": "6865", "kind": "enumvalue", "name": "server_vad", "value": "server_vad", @@ -88657,14 +88683,14 @@ "$ref": "1129" }, "enumType": { - "$id": "6864", + "$id": "6866", "kind": "enum", "decorators": [], "name": "RealtimeTurnDetectionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6865", + "$id": "6867", "kind": "string", "decorators": [], "name": "string", @@ -88673,30 +88699,30 @@ }, "values": [ { - "$id": "6866", + "$id": "6868", "kind": "enumvalue", "decorators": [], "name": "server_vad", "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.", "value": "server_vad", "valueType": { - "$ref": "6865" + "$ref": "6867" }, "enumType": { - "$ref": "6864" + "$ref": "6866" } }, { - "$id": "6867", + "$id": "6869", "kind": "enumvalue", "decorators": [], "name": "semantic_vad", "value": "semantic_vad", "valueType": { - "$ref": "6865" + "$ref": "6867" }, "enumType": { - "$ref": "6864" + "$ref": "6866" } } ], @@ -88726,13 +88752,13 @@ "isHttpMetadata": false }, { - "$id": "6868", + "$id": "6870", "kind": "property", "name": "threshold", "serializedName": "threshold", "doc": "Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A higher threshold will require louder audio to activate the model, and thus might perform better in noisy environments.", "type": { - "$id": "6869", + "$id": "6871", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -88752,18 +88778,18 @@ "isHttpMetadata": false }, { - "$id": "6870", + "$id": "6872", "kind": "property", "name": "prefix_padding_ms", "serializedName": "prefix_padding_ms", "doc": "Amount of audio to include before the VAD detected speech (in milliseconds). Defaults to 300ms.", "type": { - "$id": "6871", + "$id": "6873", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6872", + "$id": "6874", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88786,18 +88812,18 @@ "isHttpMetadata": false }, { - "$id": "6873", + "$id": "6875", "kind": "property", "name": "silence_duration_ms", "serializedName": "silence_duration_ms", "doc": "Duration of silence to detect speech stop (in milliseconds). Defaults to 500ms. With shorter values the model will respond more quickly, but may jump in on short pauses from the user.", "type": { - "$id": "6874", + "$id": "6876", "kind": "duration", "name": "duration", "encode": "ISO8601", "wireType": { - "$id": "6875", + "$id": "6877", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -88822,7 +88848,7 @@ ] }, "semantic_vad": { - "$id": "6876", + "$id": "6878", "kind": "model", "name": "RealtimeSemanticVadTurnDetection", "namespace": "OpenAI", @@ -88831,16 +88857,16 @@ "discriminatorValue": "semantic_vad", "decorators": [], "baseModel": { - "$ref": "6855" + "$ref": "6857" }, "properties": [ { - "$id": "6877", + "$id": "6879", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6878", + "$id": "6880", "kind": "enumvalue", "name": "semantic_vad", "value": "semantic_vad", @@ -88848,7 +88874,7 @@ "$ref": "1129" }, "enumType": { - "$ref": "6864" + "$ref": "6866" }, "decorators": [] }, @@ -88866,7 +88892,7 @@ "isHttpMetadata": false }, { - "$id": "6879", + "$id": "6881", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -88907,12 +88933,12 @@ "isHttpMetadata": false }, { - "$id": "6880", + "$id": "6882", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$id": "6881", + "$id": "6883", "kind": "model", "name": "RealtimeAudioNoiseReduction", "namespace": "OpenAI", @@ -88920,7 +88946,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6882", + "$id": "6884", "kind": "property", "name": "type", "serializedName": "type", @@ -88942,12 +88968,12 @@ }, "properties": [ { - "$ref": "6882" + "$ref": "6884" } ], "discriminatedSubtypes": { "near_field": { - "$id": "6883", + "$id": "6885", "kind": "model", "name": "RealtimeAudioNearFieldNoiseReduction", "namespace": "OpenAI", @@ -88956,16 +88982,16 @@ "discriminatorValue": "near_field", "decorators": [], "baseModel": { - "$ref": "6881" + "$ref": "6883" }, "properties": [ { - "$id": "6884", + "$id": "6886", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6885", + "$id": "6887", "kind": "enumvalue", "name": "near_field", "value": "near_field", @@ -88973,14 +88999,14 @@ "$ref": "1139" }, "enumType": { - "$id": "6886", + "$id": "6888", "kind": "enum", "decorators": [], "name": "RealtimeAudioNoiseReductionType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6887", + "$id": "6889", "kind": "string", "decorators": [], "name": "string", @@ -88989,29 +89015,29 @@ }, "values": [ { - "$id": "6888", + "$id": "6890", "kind": "enumvalue", "decorators": [], "name": "near_field", "value": "near_field", "valueType": { - "$ref": "6887" + "$ref": "6889" }, "enumType": { - "$ref": "6886" + "$ref": "6888" } }, { - "$id": "6889", + "$id": "6891", "kind": "enumvalue", "decorators": [], "name": "far_field", "value": "far_field", "valueType": { - "$ref": "6887" + "$ref": "6889" }, "enumType": { - "$ref": "6886" + "$ref": "6888" } } ], @@ -89042,7 +89068,7 @@ ] }, "far_field": { - "$id": "6890", + "$id": "6892", "kind": "model", "name": "RealtimeAudioFarFieldNoiseReduction", "namespace": "OpenAI", @@ -89051,16 +89077,16 @@ "discriminatorValue": "far_field", "decorators": [], "baseModel": { - "$ref": "6881" + "$ref": "6883" }, "properties": [ { - "$id": "6891", + "$id": "6893", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6892", + "$id": "6894", "kind": "enumvalue", "name": "far_field", "value": "far_field", @@ -89068,7 +89094,7 @@ "$ref": "1139" }, "enumType": { - "$ref": "6886" + "$ref": "6888" }, "decorators": [] }, @@ -89103,16 +89129,16 @@ "isHttpMetadata": false }, { - "$id": "6893", + "$id": "6895", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$id": "6894", + "$id": "6896", "kind": "array", "name": "ArrayRealtimeTool", "valueType": { - "$id": "6895", + "$id": "6897", "kind": "model", "name": "RealtimeTool", "namespace": "OpenAI", @@ -89121,7 +89147,7 @@ "doc": "The base representation of a realtime tool definition.", "decorators": [], "discriminatorProperty": { - "$id": "6896", + "$id": "6898", "kind": "property", "name": "type", "serializedName": "type", @@ -89143,12 +89169,12 @@ }, "properties": [ { - "$ref": "6896" + "$ref": "6898" } ], "discriminatedSubtypes": { "function": { - "$id": "6897", + "$id": "6899", "kind": "model", "name": "RealtimeFunctionTool", "namespace": "OpenAI", @@ -89158,16 +89184,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6895" + "$ref": "6897" }, "properties": [ { - "$id": "6898", + "$id": "6900", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6899", + "$id": "6901", "kind": "enumvalue", "name": "function", "value": "function", @@ -89175,7 +89201,7 @@ "$ref": "1143" }, "enumType": { - "$id": "6900", + "$id": "6902", "kind": "enum", "decorators": [], "name": "RealtimeToolType", @@ -89183,7 +89209,7 @@ "namespace": "OpenAI", "doc": "The supported tool type discriminators for realtime tools.\nCurrently, only 'function' tools are supported.", "valueType": { - "$id": "6901", + "$id": "6903", "kind": "string", "decorators": [], "name": "string", @@ -89192,16 +89218,16 @@ }, "values": [ { - "$id": "6902", + "$id": "6904", "kind": "enumvalue", "decorators": [], "name": "function", "value": "function", "valueType": { - "$ref": "6901" + "$ref": "6903" }, "enumType": { - "$ref": "6900" + "$ref": "6902" } } ], @@ -89230,12 +89256,12 @@ "isHttpMetadata": false }, { - "$id": "6903", + "$id": "6905", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "6904", + "$id": "6906", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89255,12 +89281,12 @@ "isHttpMetadata": false }, { - "$id": "6905", + "$id": "6907", "kind": "property", "name": "description", "serializedName": "description", "type": { - "$id": "6906", + "$id": "6908", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89280,12 +89306,12 @@ "isHttpMetadata": false }, { - "$id": "6907", + "$id": "6909", "kind": "property", "name": "parameters", "serializedName": "parameters", "type": { - "$id": "6908", + "$id": "6910", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -89325,12 +89351,12 @@ "isHttpMetadata": false }, { - "$id": "6909", + "$id": "6911", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$id": "6910", + "$id": "6912", "kind": "union", "name": "RealtimeToolChoice", "variantTypes": [ @@ -89338,7 +89364,7 @@ "$ref": "1145" }, { - "$id": "6911", + "$id": "6913", "kind": "model", "name": "RealtimeToolChoiceObject", "namespace": "OpenAI", @@ -89347,7 +89373,7 @@ "doc": "A base representation for a realtime tool_choice selecting a named tool.", "decorators": [], "discriminatorProperty": { - "$id": "6912", + "$id": "6914", "kind": "property", "name": "type", "serializedName": "type", @@ -89369,12 +89395,12 @@ }, "properties": [ { - "$ref": "6912" + "$ref": "6914" } ], "discriminatedSubtypes": { "function": { - "$id": "6913", + "$id": "6915", "kind": "model", "name": "RealtimeToolChoiceFunctionObject", "namespace": "OpenAI", @@ -89384,16 +89410,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "6911" + "$ref": "6913" }, "properties": [ { - "$id": "6914", + "$id": "6916", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "6899" + "$ref": "6901" }, "optional": false, "readOnly": false, @@ -89409,12 +89435,12 @@ "isHttpMetadata": false }, { - "$id": "6915", + "$id": "6917", "kind": "property", "name": "function", "serializedName": "function", "type": { - "$id": "6916", + "$id": "6918", "kind": "model", "name": "RealtimeToolChoiceFunctionObjectFunction", "namespace": "OpenAI", @@ -89423,12 +89449,12 @@ "decorators": [], "properties": [ { - "$id": "6917", + "$id": "6919", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "6918", + "$id": "6920", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89484,12 +89510,12 @@ "isHttpMetadata": false }, { - "$id": "6919", + "$id": "6921", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "6920", + "$id": "6922", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -89509,17 +89535,17 @@ "isHttpMetadata": false }, { - "$id": "6921", + "$id": "6923", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "6922", + "$id": "6924", "kind": "union", "name": "RealtimeRequestSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "6923", + "$id": "6925", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -89563,7 +89589,7 @@ ] }, "input_audio_buffer.append": { - "$id": "6924", + "$id": "6926", "kind": "model", "name": "RealtimeClientEventInputAudioBufferAppend", "namespace": "OpenAI", @@ -89573,17 +89599,17 @@ "discriminatorValue": "input_audio_buffer.append", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "6925", + "$id": "6927", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.append`.", "type": { - "$id": "6926", + "$id": "6928", "kind": "enumvalue", "name": "input_audio_buffer_append", "value": "input_audio_buffer.append", @@ -89591,7 +89617,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -89609,13 +89635,13 @@ "isHttpMetadata": false }, { - "$id": "6927", + "$id": "6929", "kind": "property", "name": "audio", "serializedName": "audio", "doc": "Base64-encoded audio bytes. This must be in the format specified by the\n`input_audio_format` field in the session configuration.", "type": { - "$id": "6928", + "$id": "6930", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -89638,7 +89664,7 @@ ] }, "input_audio_buffer.commit": { - "$id": "6929", + "$id": "6931", "kind": "model", "name": "RealtimeClientEventInputAudioBufferCommit", "namespace": "OpenAI", @@ -89648,17 +89674,17 @@ "discriminatorValue": "input_audio_buffer.commit", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "6930", + "$id": "6932", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.commit`.", "type": { - "$id": "6931", + "$id": "6933", "kind": "enumvalue", "name": "input_audio_buffer_commit", "value": "input_audio_buffer.commit", @@ -89666,7 +89692,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -89686,7 +89712,7 @@ ] }, "input_audio_buffer.clear": { - "$id": "6932", + "$id": "6934", "kind": "model", "name": "RealtimeClientEventInputAudioBufferClear", "namespace": "OpenAI", @@ -89696,17 +89722,17 @@ "discriminatorValue": "input_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "6933", + "$id": "6935", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.clear`.", "type": { - "$id": "6934", + "$id": "6936", "kind": "enumvalue", "name": "input_audio_buffer_clear", "value": "input_audio_buffer.clear", @@ -89714,7 +89740,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -89734,7 +89760,7 @@ ] }, "output_audio_buffer.clear": { - "$id": "6935", + "$id": "6937", "kind": "model", "name": "RealtimeClientEventOutputAudioBufferClear", "namespace": "OpenAI", @@ -89744,17 +89770,17 @@ "discriminatorValue": "output_audio_buffer.clear", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "6936", + "$id": "6938", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.clear`.", "type": { - "$id": "6937", + "$id": "6939", "kind": "enumvalue", "name": "output_audio_buffer_clear", "value": "output_audio_buffer.clear", @@ -89762,7 +89788,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -89782,7 +89808,7 @@ ] }, "conversation.item.create": { - "$id": "6938", + "$id": "6940", "kind": "model", "name": "RealtimeClientEventConversationItemCreate", "namespace": "OpenAI", @@ -89792,17 +89818,17 @@ "discriminatorValue": "conversation.item.create", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "6939", + "$id": "6941", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.create`.", "type": { - "$id": "6940", + "$id": "6942", "kind": "enumvalue", "name": "conversation_item_create", "value": "conversation.item.create", @@ -89810,7 +89836,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -89828,13 +89854,13 @@ "isHttpMetadata": false }, { - "$id": "6941", + "$id": "6943", "kind": "property", "name": "previous_item_id", "serializedName": "previous_item_id", "doc": "The ID of the preceding item after which the new item will be inserted.\nIf not set, the new item will be appended to the end of the conversation.\nIf set to `root`, the new item will be added to the beginning of the conversation.\nIf set to an existing ID, it allows an item to be inserted mid-conversation. If the\nID cannot be found, an error will be returned and the item will not be added.", "type": { - "$id": "6942", + "$id": "6944", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89854,12 +89880,12 @@ "isHttpMetadata": false }, { - "$id": "6943", + "$id": "6945", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "6944", + "$id": "6946", "kind": "model", "name": "RealtimeConversationRequestItem", "namespace": "OpenAI", @@ -89867,7 +89893,7 @@ "usage": "Input,Json", "decorators": [], "discriminatorProperty": { - "$id": "6945", + "$id": "6947", "kind": "property", "name": "type", "serializedName": "type", @@ -89889,15 +89915,15 @@ }, "properties": [ { - "$ref": "6945" + "$ref": "6947" }, { - "$id": "6946", + "$id": "6948", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "6947", + "$id": "6949", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -89919,7 +89945,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "6948", + "$id": "6950", "kind": "model", "name": "RealtimeRequestMessageItem", "namespace": "OpenAI", @@ -89928,7 +89954,7 @@ "discriminatorValue": "message", "decorators": [], "discriminatorProperty": { - "$id": "6949", + "$id": "6951", "kind": "property", "name": "role", "serializedName": "role", @@ -89949,16 +89975,16 @@ "isHttpMetadata": false }, "baseModel": { - "$ref": "6944" + "$ref": "6946" }, "properties": [ { - "$id": "6950", + "$id": "6952", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6951", + "$id": "6953", "kind": "enumvalue", "name": "message", "value": "message", @@ -89966,14 +89992,14 @@ "$ref": "1151" }, "enumType": { - "$id": "6952", + "$id": "6954", "kind": "enum", "decorators": [], "name": "RealtimeItemType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6953", + "$id": "6955", "kind": "string", "decorators": [], "name": "string", @@ -89982,42 +90008,42 @@ }, "values": [ { - "$id": "6954", + "$id": "6956", "kind": "enumvalue", "decorators": [], "name": "message", "value": "message", "valueType": { - "$ref": "6953" + "$ref": "6955" }, "enumType": { - "$ref": "6952" + "$ref": "6954" } }, { - "$id": "6955", + "$id": "6957", "kind": "enumvalue", "decorators": [], "name": "function_call", "value": "function_call", "valueType": { - "$ref": "6953" + "$ref": "6955" }, "enumType": { - "$ref": "6952" + "$ref": "6954" } }, { - "$id": "6956", + "$id": "6958", "kind": "enumvalue", "decorators": [], "name": "function_call_output", "value": "function_call_output", "valueType": { - "$ref": "6953" + "$ref": "6955" }, "enumType": { - "$ref": "6952" + "$ref": "6954" } } ], @@ -90046,10 +90072,10 @@ "isHttpMetadata": false }, { - "$ref": "6949" + "$ref": "6951" }, { - "$id": "6957", + "$id": "6959", "kind": "property", "name": "status", "serializedName": "status", @@ -90072,7 +90098,7 @@ ], "discriminatedSubtypes": { "system": { - "$id": "6958", + "$id": "6960", "kind": "model", "name": "RealtimeRequestSystemMessageItem", "namespace": "OpenAI", @@ -90081,16 +90107,16 @@ "discriminatorValue": "system", "decorators": [], "baseModel": { - "$ref": "6948" + "$ref": "6950" }, "properties": [ { - "$id": "6959", + "$id": "6961", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "6960", + "$id": "6962", "kind": "enumvalue", "name": "system", "value": "system", @@ -90098,14 +90124,14 @@ "$ref": "1156" }, "enumType": { - "$id": "6961", + "$id": "6963", "kind": "enum", "decorators": [], "name": "RealtimeMessageRole", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6962", + "$id": "6964", "kind": "string", "decorators": [], "name": "string", @@ -90114,42 +90140,42 @@ }, "values": [ { - "$id": "6963", + "$id": "6965", "kind": "enumvalue", "decorators": [], "name": "system", "value": "system", "valueType": { - "$ref": "6962" + "$ref": "6964" }, "enumType": { - "$ref": "6961" + "$ref": "6963" } }, { - "$id": "6964", + "$id": "6966", "kind": "enumvalue", "decorators": [], "name": "user", "value": "user", "valueType": { - "$ref": "6962" + "$ref": "6964" }, "enumType": { - "$ref": "6961" + "$ref": "6963" } }, { - "$id": "6965", + "$id": "6967", "kind": "enumvalue", "decorators": [], "name": "assistant", "value": "assistant", "valueType": { - "$ref": "6962" + "$ref": "6964" }, "enumType": { - "$ref": "6961" + "$ref": "6963" } } ], @@ -90178,16 +90204,16 @@ "isHttpMetadata": false }, { - "$id": "6966", + "$id": "6968", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "6967", + "$id": "6969", "kind": "array", "name": "ArrayRealtimeRequestTextContentPart", "valueType": { - "$id": "6968", + "$id": "6970", "kind": "model", "name": "RealtimeRequestTextContentPart", "namespace": "OpenAI", @@ -90196,7 +90222,7 @@ "discriminatorValue": "input_text", "decorators": [], "baseModel": { - "$id": "6969", + "$id": "6971", "kind": "model", "name": "RealtimeContentPart", "namespace": "OpenAI", @@ -90204,7 +90230,7 @@ "usage": "Input,Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "6970", + "$id": "6972", "kind": "property", "name": "type", "serializedName": "type", @@ -90226,15 +90252,15 @@ }, "properties": [ { - "$ref": "6970" + "$ref": "6972" } ], "discriminatedSubtypes": { "input_text": { - "$ref": "6968" + "$ref": "6970" }, "input_audio": { - "$id": "6971", + "$id": "6973", "kind": "model", "name": "RealtimeRequestAudioContentPart", "namespace": "OpenAI", @@ -90243,16 +90269,16 @@ "discriminatorValue": "input_audio", "decorators": [], "baseModel": { - "$ref": "6969" + "$ref": "6971" }, "properties": [ { - "$id": "6972", + "$id": "6974", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6973", + "$id": "6975", "kind": "enumvalue", "name": "input_audio", "value": "input_audio", @@ -90260,14 +90286,14 @@ "$ref": "1166" }, "enumType": { - "$id": "6974", + "$id": "6976", "kind": "enum", "decorators": [], "name": "RealtimeContentPartType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "6975", + "$id": "6977", "kind": "string", "decorators": [], "name": "string", @@ -90276,55 +90302,55 @@ }, "values": [ { - "$id": "6976", + "$id": "6978", "kind": "enumvalue", "decorators": [], "name": "input_text", "value": "input_text", "valueType": { - "$ref": "6975" + "$ref": "6977" }, "enumType": { - "$ref": "6974" + "$ref": "6976" } }, { - "$id": "6977", + "$id": "6979", "kind": "enumvalue", "decorators": [], "name": "input_audio", "value": "input_audio", "valueType": { - "$ref": "6975" + "$ref": "6977" }, "enumType": { - "$ref": "6974" + "$ref": "6976" } }, { - "$id": "6978", + "$id": "6980", "kind": "enumvalue", "decorators": [], "name": "text", "value": "text", "valueType": { - "$ref": "6975" + "$ref": "6977" }, "enumType": { - "$ref": "6974" + "$ref": "6976" } }, { - "$id": "6979", + "$id": "6981", "kind": "enumvalue", "decorators": [], "name": "audio", "value": "audio", "valueType": { - "$ref": "6975" + "$ref": "6977" }, "enumType": { - "$ref": "6974" + "$ref": "6976" } } ], @@ -90353,12 +90379,12 @@ "isHttpMetadata": false }, { - "$id": "6980", + "$id": "6982", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "6981", + "$id": "6983", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90380,7 +90406,7 @@ ] }, "text": { - "$id": "6982", + "$id": "6984", "kind": "model", "name": "RealtimeResponseTextContentPart", "namespace": "OpenAI", @@ -90389,16 +90415,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "6969" + "$ref": "6971" }, "properties": [ { - "$id": "6983", + "$id": "6985", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6984", + "$id": "6986", "kind": "enumvalue", "name": "text", "value": "text", @@ -90406,7 +90432,7 @@ "$ref": "1166" }, "enumType": { - "$ref": "6974" + "$ref": "6976" }, "decorators": [] }, @@ -90424,12 +90450,12 @@ "isHttpMetadata": false }, { - "$id": "6985", + "$id": "6987", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6986", + "$id": "6988", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90451,7 +90477,7 @@ ] }, "audio": { - "$id": "6987", + "$id": "6989", "kind": "model", "name": "RealtimeResponseAudioContentPart", "namespace": "OpenAI", @@ -90460,16 +90486,16 @@ "discriminatorValue": "audio", "decorators": [], "baseModel": { - "$ref": "6969" + "$ref": "6971" }, "properties": [ { - "$id": "6988", + "$id": "6990", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6989", + "$id": "6991", "kind": "enumvalue", "name": "audio", "value": "audio", @@ -90477,7 +90503,7 @@ "$ref": "1166" }, "enumType": { - "$ref": "6974" + "$ref": "6976" }, "decorators": [] }, @@ -90495,15 +90521,15 @@ "isHttpMetadata": false }, { - "$id": "6990", + "$id": "6992", "kind": "property", "name": "transcript", "serializedName": "transcript", "type": { - "$id": "6991", + "$id": "6993", "kind": "nullable", "type": { - "$id": "6992", + "$id": "6994", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90530,12 +90556,12 @@ }, "properties": [ { - "$id": "6993", + "$id": "6995", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "6994", + "$id": "6996", "kind": "enumvalue", "name": "input_text", "value": "input_text", @@ -90543,7 +90569,7 @@ "$ref": "1166" }, "enumType": { - "$ref": "6974" + "$ref": "6976" }, "decorators": [] }, @@ -90561,12 +90587,12 @@ "isHttpMetadata": false }, { - "$id": "6995", + "$id": "6997", "kind": "property", "name": "text", "serializedName": "text", "type": { - "$id": "6996", + "$id": "6998", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90606,7 +90632,7 @@ ] }, "user": { - "$id": "6997", + "$id": "6999", "kind": "model", "name": "RealtimeRequestUserMessageItem", "namespace": "OpenAI", @@ -90615,16 +90641,16 @@ "discriminatorValue": "user", "decorators": [], "baseModel": { - "$ref": "6948" + "$ref": "6950" }, "properties": [ { - "$id": "6998", + "$id": "7000", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "6999", + "$id": "7001", "kind": "enumvalue", "name": "user", "value": "user", @@ -90632,7 +90658,7 @@ "$ref": "1156" }, "enumType": { - "$ref": "6961" + "$ref": "6963" }, "decorators": [] }, @@ -90650,24 +90676,24 @@ "isHttpMetadata": false }, { - "$id": "7000", + "$id": "7002", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7001", + "$id": "7003", "kind": "array", "name": "Array42", "valueType": { - "$id": "7002", + "$id": "7004", "kind": "union", "name": "RealtimeRequestUserMessageItemContent", "variantTypes": [ { - "$ref": "6968" + "$ref": "6970" }, { - "$ref": "6971" + "$ref": "6973" } ], "namespace": "OpenAI", @@ -90692,7 +90718,7 @@ ] }, "assistant": { - "$id": "7003", + "$id": "7005", "kind": "model", "name": "RealtimeRequestAssistantMessageItem", "namespace": "OpenAI", @@ -90701,16 +90727,16 @@ "discriminatorValue": "assistant", "decorators": [], "baseModel": { - "$ref": "6948" + "$ref": "6950" }, "properties": [ { - "$id": "7004", + "$id": "7006", "kind": "property", "name": "role", "serializedName": "role", "type": { - "$id": "7005", + "$id": "7007", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -90718,7 +90744,7 @@ "$ref": "1156" }, "enumType": { - "$ref": "6961" + "$ref": "6963" }, "decorators": [] }, @@ -90736,12 +90762,12 @@ "isHttpMetadata": false }, { - "$id": "7006", + "$id": "7008", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$ref": "6967" + "$ref": "6969" }, "optional": false, "readOnly": false, @@ -90761,7 +90787,7 @@ } }, "function_call": { - "$id": "7007", + "$id": "7009", "kind": "model", "name": "RealtimeRequestFunctionCallItem", "namespace": "OpenAI", @@ -90770,16 +90796,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "6944" + "$ref": "6946" }, "properties": [ { - "$id": "7008", + "$id": "7010", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7009", + "$id": "7011", "kind": "enumvalue", "name": "function_call", "value": "function_call", @@ -90787,7 +90813,7 @@ "$ref": "1151" }, "enumType": { - "$ref": "6952" + "$ref": "6954" }, "decorators": [] }, @@ -90805,12 +90831,12 @@ "isHttpMetadata": false }, { - "$id": "7010", + "$id": "7012", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7011", + "$id": "7013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90830,12 +90856,12 @@ "isHttpMetadata": false }, { - "$id": "7012", + "$id": "7014", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7013", + "$id": "7015", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90855,12 +90881,12 @@ "isHttpMetadata": false }, { - "$id": "7014", + "$id": "7016", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7015", + "$id": "7017", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90880,7 +90906,7 @@ "isHttpMetadata": false }, { - "$id": "7016", + "$id": "7018", "kind": "property", "name": "status", "serializedName": "status", @@ -90903,7 +90929,7 @@ ] }, "function_call_output": { - "$id": "7017", + "$id": "7019", "kind": "model", "name": "RealtimeRequestFunctionCallOutputItem", "namespace": "OpenAI", @@ -90912,16 +90938,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "6944" + "$ref": "6946" }, "properties": [ { - "$id": "7018", + "$id": "7020", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$id": "7019", + "$id": "7021", "kind": "enumvalue", "name": "function_call_output", "value": "function_call_output", @@ -90929,7 +90955,7 @@ "$ref": "1151" }, "enumType": { - "$ref": "6952" + "$ref": "6954" }, "decorators": [] }, @@ -90947,12 +90973,12 @@ "isHttpMetadata": false }, { - "$id": "7020", + "$id": "7022", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7021", + "$id": "7023", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -90972,12 +90998,12 @@ "isHttpMetadata": false }, { - "$id": "7022", + "$id": "7024", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7023", + "$id": "7025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91016,7 +91042,7 @@ ] }, "conversation.item.truncate": { - "$id": "7024", + "$id": "7026", "kind": "model", "name": "RealtimeClientEventConversationItemTruncate", "namespace": "OpenAI", @@ -91026,17 +91052,17 @@ "discriminatorValue": "conversation.item.truncate", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "7025", + "$id": "7027", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncate`.", "type": { - "$id": "7026", + "$id": "7028", "kind": "enumvalue", "name": "conversation_item_truncate", "value": "conversation.item.truncate", @@ -91044,7 +91070,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -91062,13 +91088,13 @@ "isHttpMetadata": false }, { - "$id": "7027", + "$id": "7029", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the assistant message item to truncate. Only assistant message\nitems can be truncated.", "type": { - "$id": "7028", + "$id": "7030", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91088,13 +91114,13 @@ "isHttpMetadata": false }, { - "$id": "7029", + "$id": "7031", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part to truncate. Set this to 0.", "type": { - "$id": "7030", + "$id": "7032", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91114,13 +91140,13 @@ "isHttpMetadata": false }, { - "$id": "7031", + "$id": "7033", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "Inclusive duration up to which audio is truncated, in milliseconds. If\nthe audio_end_ms is greater than the actual audio duration, the server\nwill respond with an error.", "type": { - "$id": "7032", + "$id": "7034", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91142,7 +91168,7 @@ ] }, "conversation.item.delete": { - "$id": "7033", + "$id": "7035", "kind": "model", "name": "RealtimeClientEventConversationItemDelete", "namespace": "OpenAI", @@ -91152,17 +91178,17 @@ "discriminatorValue": "conversation.item.delete", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "7034", + "$id": "7036", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.delete`.", "type": { - "$id": "7035", + "$id": "7037", "kind": "enumvalue", "name": "conversation_item_delete", "value": "conversation.item.delete", @@ -91170,7 +91196,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -91188,13 +91214,13 @@ "isHttpMetadata": false }, { - "$id": "7036", + "$id": "7038", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to delete.", "type": { - "$id": "7037", + "$id": "7039", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91216,7 +91242,7 @@ ] }, "response.create": { - "$id": "7038", + "$id": "7040", "kind": "model", "name": "RealtimeClientEventResponseCreate", "namespace": "OpenAI", @@ -91226,17 +91252,17 @@ "discriminatorValue": "response.create", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "7039", + "$id": "7041", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.create`.", "type": { - "$id": "7040", + "$id": "7042", "kind": "enumvalue", "name": "response_create", "value": "response.create", @@ -91244,7 +91270,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -91262,12 +91288,12 @@ "isHttpMetadata": false }, { - "$id": "7041", + "$id": "7043", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7042", + "$id": "7044", "kind": "model", "name": "RealtimeResponseCreateParams", "namespace": "OpenAI", @@ -91277,13 +91303,13 @@ "decorators": [], "properties": [ { - "$id": "7043", + "$id": "7045", "kind": "property", "name": "modalities", "serializedName": "modalities", "doc": "The set of modalities the model can respond with. To disable audio,\nset this to [\"text\"].", "type": { - "$ref": "6838" + "$ref": "6840" }, "optional": true, "readOnly": false, @@ -91299,13 +91325,13 @@ "isHttpMetadata": false }, { - "$id": "7044", + "$id": "7046", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The default system instructions (i.e. system message) prepended to model\ncalls. This field allows the client to guide the model on desired\nresponses. The model can be instructed on response content and format,\n(e.g. \"be extremely succinct\", \"act friendly\", \"here are examples of good\nresponses\") and on audio behavior (e.g. \"talk quickly\", \"inject emotion\ninto your voice\", \"laugh frequently\"). The instructions are not guaranteed\nto be followed by the model, but they provide guidance to the model on the\ndesired behavior.\n\nNote that the server sets default instructions which will be used if this\nfield is not set and are visible in the `session.created` event at the\nstart of the session.", "type": { - "$id": "7045", + "$id": "7047", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91325,7 +91351,7 @@ "isHttpMetadata": false }, { - "$id": "7046", + "$id": "7048", "kind": "property", "name": "voice", "serializedName": "voice", @@ -91347,7 +91373,7 @@ "isHttpMetadata": false }, { - "$id": "7047", + "$id": "7049", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -91369,13 +91395,13 @@ "isHttpMetadata": false }, { - "$id": "7048", + "$id": "7050", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6894" + "$ref": "6896" }, "optional": true, "readOnly": false, @@ -91391,13 +91417,13 @@ "isHttpMetadata": false }, { - "$id": "7049", + "$id": "7051", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "doc": "How the model chooses tools. Options are `auto`, `none`, `required`, or\nspecify a function, like `{\"type\": \"function\", \"function\": {\"name\": \"my_function\"}}`.", "type": { - "$id": "7050", + "$id": "7052", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91417,13 +91443,13 @@ "isHttpMetadata": false }, { - "$id": "7051", + "$id": "7053", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7052", + "$id": "7054", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -91443,18 +91469,18 @@ "isHttpMetadata": false }, { - "$id": "7053", + "$id": "7055", "kind": "property", "name": "max_output_tokens", "serializedName": "max_output_tokens", "doc": "Maximum number of output tokens for a single assistant response,\ninclusive of tool calls. Provide an integer between 1 and 4096 to\nlimit output tokens, or `inf` for the maximum available tokens for a\ngiven model. Defaults to `inf`.", "type": { - "$id": "7054", + "$id": "7056", "kind": "union", "name": "RealtimeResponseCreateParamsMaxOutputTokens", "variantTypes": [ { - "$id": "7055", + "$id": "7057", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -91481,7 +91507,7 @@ "isHttpMetadata": false }, { - "$id": "7056", + "$id": "7058", "kind": "property", "name": "conversation", "serializedName": "conversation", @@ -91503,7 +91529,7 @@ "isHttpMetadata": false }, { - "$id": "7057", + "$id": "7059", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -91525,17 +91551,17 @@ "isHttpMetadata": false }, { - "$id": "7058", + "$id": "7060", "kind": "property", "name": "input", "serializedName": "input", "doc": "Input items to include in the prompt for the model. Using this field\ncreates a new context for this Response instead of using the default\nconversation. An empty array `[]` will clear the context for this Response.\nNote that this can include references to items from the default conversation.", "type": { - "$id": "7059", + "$id": "7061", "kind": "array", "name": "ArrayRealtimeConversationRequestItem", "valueType": { - "$ref": "6944" + "$ref": "6946" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -91571,7 +91597,7 @@ ] }, "response.cancel": { - "$id": "7060", + "$id": "7062", "kind": "model", "name": "RealtimeClientEventResponseCancel", "namespace": "OpenAI", @@ -91581,17 +91607,17 @@ "discriminatorValue": "response.cancel", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "7061", + "$id": "7063", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.cancel`.", "type": { - "$id": "7062", + "$id": "7064", "kind": "enumvalue", "name": "response_cancel", "value": "response.cancel", @@ -91599,7 +91625,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -91617,13 +91643,13 @@ "isHttpMetadata": false }, { - "$id": "7063", + "$id": "7065", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "A specific response ID to cancel - if not provided, will cancel an\nin-progress response in the default conversation.", "type": { - "$id": "7064", + "$id": "7066", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91645,7 +91671,7 @@ ] }, "conversation.item.retrieve": { - "$id": "7065", + "$id": "7067", "kind": "model", "name": "RealtimeClientEventConversationItemRetrieve", "namespace": "OpenAI", @@ -91655,17 +91681,17 @@ "discriminatorValue": "conversation.item.retrieve", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "7066", + "$id": "7068", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieve`.", "type": { - "$id": "7067", + "$id": "7069", "kind": "enumvalue", "name": "conversation_item_retrieve", "value": "conversation.item.retrieve", @@ -91673,7 +91699,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -91691,13 +91717,13 @@ "isHttpMetadata": false }, { - "$id": "7068", + "$id": "7070", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to retrieve.", "type": { - "$id": "7069", + "$id": "7071", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91719,7 +91745,7 @@ ] }, "transcription_session.update": { - "$id": "7070", + "$id": "7072", "kind": "model", "name": "RealtimeClientEventTranscriptionSessionUpdate", "namespace": "OpenAI", @@ -91729,17 +91755,17 @@ "discriminatorValue": "transcription_session.update", "decorators": [], "baseModel": { - "$ref": "6814" + "$ref": "6816" }, "properties": [ { - "$id": "7071", + "$id": "7073", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.update`.", "type": { - "$id": "7072", + "$id": "7074", "kind": "enumvalue", "name": "transcription_session_update", "value": "transcription_session.update", @@ -91747,7 +91773,7 @@ "$ref": "1096" }, "enumType": { - "$ref": "6821" + "$ref": "6823" }, "decorators": [] }, @@ -91765,12 +91791,12 @@ "isHttpMetadata": false }, { - "$id": "7073", + "$id": "7075", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7074", + "$id": "7076", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequest", "namespace": "OpenAI", @@ -91780,13 +91806,13 @@ "decorators": [], "properties": [ { - "$id": "7075", + "$id": "7077", "kind": "property", "name": "modalities", "serializedName": "modalities", "doc": "The set of modalities the model can respond with. To disable audio,\nset this to [\"text\"].", "type": { - "$id": "7076", + "$id": "7078", "kind": "array", "name": "Array43", "valueType": { @@ -91809,7 +91835,7 @@ "isHttpMetadata": false }, { - "$id": "7077", + "$id": "7079", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -91831,13 +91857,13 @@ "isHttpMetadata": false }, { - "$id": "7078", + "$id": "7080", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration for input audio transcription. The client can optionally set the language and prompt for transcription, these offer additional guidance to the transcription service.", "type": { - "$id": "7079", + "$id": "7081", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -91846,7 +91872,7 @@ "decorators": [], "properties": [ { - "$id": "7080", + "$id": "7082", "kind": "property", "name": "model", "serializedName": "model", @@ -91868,13 +91894,13 @@ "isHttpMetadata": false }, { - "$id": "7081", + "$id": "7083", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio. Supplying the input language in\n[ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format\nwill improve accuracy and latency.", "type": { - "$id": "7082", + "$id": "7084", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91894,13 +91920,13 @@ "isHttpMetadata": false }, { - "$id": "7083", + "$id": "7085", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "An optional text to guide the model's style or continue a previous audio\nsegment.\nFor `whisper-1`, the [prompt is a list of keywords](/docs/guides/speech-to-text#prompting).\nFor `gpt-4o-transcribe` models, the prompt is a free text string, for example \"expect words related to technology\".", "type": { - "$id": "7084", + "$id": "7086", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -91935,13 +91961,13 @@ "isHttpMetadata": false }, { - "$id": "7085", + "$id": "7087", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "doc": "Configuration for turn detection, ether Server VAD or Semantic VAD. This can be set to `null` to turn off, in which case the client must manually trigger model response.\nServer VAD means that the model will detect the start and end of speech based on audio volume and respond at the end of user speech.\nSemantic VAD is more advanced and uses a turn detection model (in conjuction with VAD) to semantically estimate whether the user has finished speaking, then dynamically sets a timeout based on this probability. For example, if user audio trails off with \"uhhm\", the model will score a low probability of turn end and wait longer for the user to continue speaking. This can be useful for more natural conversations, but may have a higher latency.", "type": { - "$id": "7086", + "$id": "7088", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -91950,7 +91976,7 @@ "decorators": [], "properties": [ { - "$id": "7087", + "$id": "7089", "kind": "property", "name": "type", "serializedName": "type", @@ -91972,7 +91998,7 @@ "isHttpMetadata": false }, { - "$id": "7088", + "$id": "7090", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -91994,13 +92020,13 @@ "isHttpMetadata": false }, { - "$id": "7089", + "$id": "7091", "kind": "property", "name": "threshold", "serializedName": "threshold", "doc": "Used only for `server_vad` mode. Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A\nhigher threshold will require louder audio to activate the model, and\nthus might perform better in noisy environments.", "type": { - "$id": "7090", + "$id": "7092", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -92020,13 +92046,13 @@ "isHttpMetadata": false }, { - "$id": "7091", + "$id": "7093", "kind": "property", "name": "prefix_padding_ms", "serializedName": "prefix_padding_ms", "doc": "Used only for `server_vad` mode. Amount of audio to include before the VAD detected speech (in\nmilliseconds). Defaults to 300ms.", "type": { - "$id": "7092", + "$id": "7094", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92046,13 +92072,13 @@ "isHttpMetadata": false }, { - "$id": "7093", + "$id": "7095", "kind": "property", "name": "silence_duration_ms", "serializedName": "silence_duration_ms", "doc": "Used only for `server_vad` mode. Duration of silence to detect speech stop (in milliseconds). Defaults\nto 500ms. With shorter values the model will respond more quickly,\nbut may jump in on short pauses from the user.", "type": { - "$id": "7094", + "$id": "7096", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92072,13 +92098,13 @@ "isHttpMetadata": false }, { - "$id": "7095", + "$id": "7097", "kind": "property", "name": "create_response", "serializedName": "create_response", "doc": "Whether or not to automatically generate a response when a VAD stop event occurs. Not available for transcription sessions.", "type": { - "$id": "7096", + "$id": "7098", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -92098,13 +92124,13 @@ "isHttpMetadata": false }, { - "$id": "7097", + "$id": "7099", "kind": "property", "name": "interrupt_response", "serializedName": "interrupt_response", "doc": "Whether or not to automatically interrupt any ongoing response with output to the default\nconversation (i.e. `conversation` of `auto`) when a VAD start event occurs. Not available for transcription sessions.", "type": { - "$id": "7098", + "$id": "7100", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -92139,16 +92165,16 @@ "isHttpMetadata": false }, { - "$id": "7099", + "$id": "7101", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "doc": "Configuration for input audio noise reduction. This can be set to `null` to turn off.\nNoise reduction filters audio added to the input audio buffer before it is sent to VAD and the model.\nFiltering the audio can improve VAD and turn detection accuracy (reducing false positives) and model performance by improving perception of the input audio.", "type": { - "$id": "7100", + "$id": "7102", "kind": "nullable", "type": { - "$id": "7101", + "$id": "7103", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -92157,7 +92183,7 @@ "decorators": [], "properties": [ { - "$id": "7102", + "$id": "7104", "kind": "property", "name": "type", "serializedName": "type", @@ -92196,7 +92222,7 @@ "isHttpMetadata": false }, { - "$id": "7103", + "$id": "7105", "kind": "property", "name": "include", "serializedName": "include", @@ -92218,13 +92244,13 @@ "isHttpMetadata": false }, { - "$id": "7104", + "$id": "7106", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7105", + "$id": "7107", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -92233,13 +92259,13 @@ "decorators": [], "properties": [ { - "$id": "7106", + "$id": "7108", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7107", + "$id": "7109", "kind": "model", "name": "RealtimeTranscriptionSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -92248,7 +92274,7 @@ "decorators": [], "properties": [ { - "$id": "7108", + "$id": "7110", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -92270,13 +92296,13 @@ "isHttpMetadata": false }, { - "$id": "7109", + "$id": "7111", "kind": "property", "name": "seconds", "serializedName": "seconds", "doc": "The number of seconds from the anchor point to the expiration. Select a value between `10` and `7200`.", "type": { - "$id": "7110", + "$id": "7112", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -92345,139 +92371,139 @@ } }, { - "$ref": "6818" + "$ref": "6820" }, { - "$ref": "6836" + "$ref": "6838" }, { - "$ref": "6847" + "$ref": "6849" }, { - "$ref": "6855" + "$ref": "6857" }, { - "$ref": "6861" + "$ref": "6863" }, { - "$ref": "6876" - }, - { - "$ref": "6881" + "$ref": "6878" }, { "$ref": "6883" }, { - "$ref": "6890" + "$ref": "6885" }, { - "$ref": "6895" + "$ref": "6892" }, { "$ref": "6897" }, { - "$ref": "6911" + "$ref": "6899" }, { "$ref": "6913" }, { - "$ref": "6916" + "$ref": "6915" }, { - "$ref": "6924" + "$ref": "6918" }, { - "$ref": "6929" + "$ref": "6926" }, { - "$ref": "6932" + "$ref": "6931" }, { - "$ref": "6935" + "$ref": "6934" }, { - "$ref": "6938" + "$ref": "6937" }, { - "$ref": "6944" + "$ref": "6940" }, { - "$ref": "6948" + "$ref": "6946" }, { - "$ref": "6958" + "$ref": "6950" }, { - "$ref": "6968" + "$ref": "6960" }, { - "$ref": "6969" + "$ref": "6970" }, { "$ref": "6971" }, { - "$ref": "6982" + "$ref": "6973" }, { - "$ref": "6987" + "$ref": "6984" }, { - "$ref": "6997" + "$ref": "6989" }, { - "$ref": "7003" + "$ref": "6999" }, { - "$ref": "7007" + "$ref": "7005" }, { - "$ref": "7017" + "$ref": "7009" }, { - "$ref": "7024" + "$ref": "7019" }, { - "$ref": "7033" + "$ref": "7026" }, { - "$ref": "7038" + "$ref": "7035" }, { - "$ref": "7042" + "$ref": "7040" }, { - "$ref": "7060" + "$ref": "7044" }, { - "$ref": "7065" + "$ref": "7062" }, { - "$ref": "7070" + "$ref": "7067" }, { - "$ref": "7074" + "$ref": "7072" }, { - "$ref": "7079" + "$ref": "7076" }, { - "$ref": "7086" + "$ref": "7081" }, { - "$ref": "7101" + "$ref": "7088" }, { - "$ref": "7105" + "$ref": "7103" }, { "$ref": "7107" }, { - "$id": "7111", + "$ref": "7109" + }, + { + "$id": "7113", "kind": "model", "name": "RealtimeServerEvent", "namespace": "OpenAI", @@ -92486,7 +92512,7 @@ "doc": "A realtime server event.", "decorators": [], "discriminatorProperty": { - "$id": "7112", + "$id": "7114", "kind": "property", "name": "type", "serializedName": "type", @@ -92509,15 +92535,15 @@ }, "properties": [ { - "$ref": "7112" + "$ref": "7114" }, { - "$id": "7113", + "$id": "7115", "kind": "property", "name": "event_id", "serializedName": "event_id", "type": { - "$id": "7114", + "$id": "7116", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -92539,7 +92565,7 @@ ], "discriminatedSubtypes": { "error": { - "$id": "7115", + "$id": "7117", "kind": "model", "name": "RealtimeServerEventError", "namespace": "OpenAI", @@ -92549,17 +92575,17 @@ "discriminatorValue": "error", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7116", + "$id": "7118", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `error`.", "type": { - "$id": "7117", + "$id": "7119", "kind": "enumvalue", "name": "error", "value": "error", @@ -92567,14 +92593,14 @@ "$ref": "1208" }, "enumType": { - "$id": "7118", + "$id": "7120", "kind": "enum", "decorators": [], "name": "RealtimeServerEventType", "isGeneratedName": false, "namespace": "OpenAI", "valueType": { - "$id": "7119", + "$id": "7121", "kind": "string", "decorators": [], "name": "string", @@ -92583,445 +92609,445 @@ }, "values": [ { - "$id": "7120", + "$id": "7122", "kind": "enumvalue", "decorators": [], "name": "error", "value": "error", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7121", + "$id": "7123", "kind": "enumvalue", "decorators": [], "name": "session_created", "value": "session.created", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7122", + "$id": "7124", "kind": "enumvalue", "decorators": [], "name": "session_updated", "value": "session.updated", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7123", + "$id": "7125", "kind": "enumvalue", "decorators": [], "name": "conversation_created", "value": "conversation.created", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7124", + "$id": "7126", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7125", + "$id": "7127", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7126", + "$id": "7128", "kind": "enumvalue", "decorators": [], "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7127", + "$id": "7129", "kind": "enumvalue", "decorators": [], "name": "conversation_item_created", "value": "conversation.item.created", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7128", + "$id": "7130", "kind": "enumvalue", "decorators": [], "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7129", + "$id": "7131", "kind": "enumvalue", "decorators": [], "name": "conversation_item_truncated", "value": "conversation.item.truncated", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7130", + "$id": "7132", "kind": "enumvalue", "decorators": [], "name": "conversation_item_deleted", "value": "conversation.item.deleted", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7131", + "$id": "7133", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7132", + "$id": "7134", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7133", + "$id": "7135", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7134", + "$id": "7136", "kind": "enumvalue", "decorators": [], "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7135", + "$id": "7137", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7136", + "$id": "7138", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7137", + "$id": "7139", "kind": "enumvalue", "decorators": [], "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7138", + "$id": "7140", "kind": "enumvalue", "decorators": [], "name": "response_created", "value": "response.created", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7139", + "$id": "7141", "kind": "enumvalue", "decorators": [], "name": "response_done", "value": "response.done", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7140", + "$id": "7142", "kind": "enumvalue", "decorators": [], "name": "response_output_item_added", "value": "response.output_item.added", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7141", + "$id": "7143", "kind": "enumvalue", "decorators": [], "name": "response_output_item_done", "value": "response.output_item.done", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7142", + "$id": "7144", "kind": "enumvalue", "decorators": [], "name": "response_content_part_added", "value": "response.content_part.added", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7143", + "$id": "7145", "kind": "enumvalue", "decorators": [], "name": "response_content_part_done", "value": "response.content_part.done", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7144", + "$id": "7146", "kind": "enumvalue", "decorators": [], "name": "response_text_delta", "value": "response.text.delta", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7145", + "$id": "7147", "kind": "enumvalue", "decorators": [], "name": "response_text_done", "value": "response.text.done", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7146", + "$id": "7148", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7147", + "$id": "7149", "kind": "enumvalue", "decorators": [], "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7148", + "$id": "7150", "kind": "enumvalue", "decorators": [], "name": "response_audio_delta", "value": "response.audio.delta", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7149", + "$id": "7151", "kind": "enumvalue", "decorators": [], "name": "response_audio_done", "value": "response.audio.done", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7150", + "$id": "7152", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7151", + "$id": "7153", "kind": "enumvalue", "decorators": [], "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7152", + "$id": "7154", "kind": "enumvalue", "decorators": [], "name": "transcription_session_updated", "value": "transcription_session.updated", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } }, { - "$id": "7153", + "$id": "7155", "kind": "enumvalue", "decorators": [], "name": "rate_limits_updated", "value": "rate_limits.updated", "valueType": { - "$ref": "7119" + "$ref": "7121" }, "enumType": { - "$ref": "7118" + "$ref": "7120" } } ], @@ -93050,13 +93076,13 @@ "isHttpMetadata": false }, { - "$id": "7154", + "$id": "7156", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the error.", "type": { - "$id": "7155", + "$id": "7157", "kind": "model", "name": "RealtimeServerEventErrorError", "namespace": "OpenAI", @@ -93065,13 +93091,13 @@ "decorators": [], "properties": [ { - "$id": "7156", + "$id": "7158", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error (e.g., \"invalid_request_error\", \"server_error\").", "type": { - "$id": "7157", + "$id": "7159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93091,16 +93117,16 @@ "isHttpMetadata": false }, { - "$id": "7158", + "$id": "7160", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7159", + "$id": "7161", "kind": "nullable", "type": { - "$id": "7160", + "$id": "7162", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93122,13 +93148,13 @@ "isHttpMetadata": false }, { - "$id": "7161", + "$id": "7163", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7162", + "$id": "7164", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93148,16 +93174,16 @@ "isHttpMetadata": false }, { - "$id": "7163", + "$id": "7165", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7164", + "$id": "7166", "kind": "nullable", "type": { - "$id": "7165", + "$id": "7167", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93179,16 +93205,16 @@ "isHttpMetadata": false }, { - "$id": "7166", + "$id": "7168", "kind": "property", "name": "event_id", "serializedName": "event_id", "doc": "The event_id of the client event that caused the error, if applicable.", "type": { - "$id": "7167", + "$id": "7169", "kind": "nullable", "type": { - "$id": "7168", + "$id": "7170", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93227,7 +93253,7 @@ ] }, "session.created": { - "$id": "7169", + "$id": "7171", "kind": "model", "name": "RealtimeServerEventSessionCreated", "namespace": "OpenAI", @@ -93237,17 +93263,17 @@ "discriminatorValue": "session.created", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7170", + "$id": "7172", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.created`.", "type": { - "$id": "7171", + "$id": "7173", "kind": "enumvalue", "name": "session_created", "value": "session.created", @@ -93255,7 +93281,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -93273,12 +93299,12 @@ "isHttpMetadata": false }, { - "$id": "7172", + "$id": "7174", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7173", + "$id": "7175", "kind": "model", "name": "RealtimeResponseSession", "namespace": "OpenAI", @@ -93287,7 +93313,7 @@ "decorators": [], "properties": [ { - "$id": "7174", + "$id": "7176", "kind": "property", "name": "object", "serializedName": "object", @@ -93308,12 +93334,12 @@ "isHttpMetadata": false }, { - "$id": "7175", + "$id": "7177", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7176", + "$id": "7178", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93333,12 +93359,12 @@ "isHttpMetadata": false }, { - "$id": "7177", + "$id": "7179", "kind": "property", "name": "model", "serializedName": "model", "type": { - "$id": "7178", + "$id": "7180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93358,12 +93384,12 @@ "isHttpMetadata": false }, { - "$id": "7179", + "$id": "7181", "kind": "property", "name": "modalities", "serializedName": "modalities", "type": { - "$ref": "6838" + "$ref": "6840" }, "optional": false, "readOnly": false, @@ -93379,12 +93405,12 @@ "isHttpMetadata": false }, { - "$id": "7180", + "$id": "7182", "kind": "property", "name": "instructions", "serializedName": "instructions", "type": { - "$id": "7181", + "$id": "7183", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93404,7 +93430,7 @@ "isHttpMetadata": false }, { - "$id": "7182", + "$id": "7184", "kind": "property", "name": "voice", "serializedName": "voice", @@ -93425,7 +93451,7 @@ "isHttpMetadata": false }, { - "$id": "7183", + "$id": "7185", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -93446,7 +93472,7 @@ "isHttpMetadata": false }, { - "$id": "7184", + "$id": "7186", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -93467,15 +93493,15 @@ "isHttpMetadata": false }, { - "$id": "7185", + "$id": "7187", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "type": { - "$id": "7186", + "$id": "7188", "kind": "nullable", "type": { - "$ref": "6847" + "$ref": "6849" }, "namespace": "OpenAI" }, @@ -93493,12 +93519,12 @@ "isHttpMetadata": false }, { - "$id": "7187", + "$id": "7189", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "type": { - "$ref": "6855" + "$ref": "6857" }, "optional": false, "readOnly": false, @@ -93514,12 +93540,12 @@ "isHttpMetadata": false }, { - "$id": "7188", + "$id": "7190", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "type": { - "$ref": "6881" + "$ref": "6883" }, "optional": false, "readOnly": false, @@ -93535,12 +93561,12 @@ "isHttpMetadata": false }, { - "$id": "7189", + "$id": "7191", "kind": "property", "name": "tools", "serializedName": "tools", "type": { - "$ref": "6894" + "$ref": "6896" }, "optional": false, "readOnly": false, @@ -93556,12 +93582,12 @@ "isHttpMetadata": false }, { - "$id": "7190", + "$id": "7192", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "type": { - "$ref": "6910" + "$ref": "6912" }, "optional": false, "readOnly": false, @@ -93577,12 +93603,12 @@ "isHttpMetadata": false }, { - "$id": "7191", + "$id": "7193", "kind": "property", "name": "temperature", "serializedName": "temperature", "type": { - "$id": "7192", + "$id": "7194", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -93602,20 +93628,20 @@ "isHttpMetadata": false }, { - "$id": "7193", + "$id": "7195", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "type": { - "$id": "7194", + "$id": "7196", "kind": "nullable", "type": { - "$id": "7195", + "$id": "7197", "kind": "union", "name": "RealtimeResponseSessionMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7196", + "$id": "7198", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -93661,7 +93687,7 @@ ] }, "session.updated": { - "$id": "7197", + "$id": "7199", "kind": "model", "name": "RealtimeServerEventSessionUpdated", "namespace": "OpenAI", @@ -93671,17 +93697,17 @@ "discriminatorValue": "session.updated", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7198", + "$id": "7200", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `session.updated`.", "type": { - "$id": "7199", + "$id": "7201", "kind": "enumvalue", "name": "session_updated", "value": "session.updated", @@ -93689,7 +93715,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -93707,12 +93733,12 @@ "isHttpMetadata": false }, { - "$id": "7200", + "$id": "7202", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$ref": "7173" + "$ref": "7175" }, "optional": false, "readOnly": false, @@ -93730,7 +93756,7 @@ ] }, "conversation.created": { - "$id": "7201", + "$id": "7203", "kind": "model", "name": "RealtimeServerEventConversationCreated", "namespace": "OpenAI", @@ -93740,17 +93766,17 @@ "discriminatorValue": "conversation.created", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7202", + "$id": "7204", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.created`.", "type": { - "$id": "7203", + "$id": "7205", "kind": "enumvalue", "name": "conversation_created", "value": "conversation.created", @@ -93758,7 +93784,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -93776,13 +93802,13 @@ "isHttpMetadata": false }, { - "$id": "7204", + "$id": "7206", "kind": "property", "name": "conversation", "serializedName": "conversation", "doc": "The conversation resource.", "type": { - "$id": "7205", + "$id": "7207", "kind": "model", "name": "RealtimeServerEventConversationCreatedConversation", "namespace": "OpenAI", @@ -93791,13 +93817,13 @@ "decorators": [], "properties": [ { - "$id": "7206", + "$id": "7208", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the conversation.", "type": { - "$id": "7207", + "$id": "7209", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93817,13 +93843,13 @@ "isHttpMetadata": false }, { - "$id": "7208", + "$id": "7210", "kind": "property", "name": "object", "serializedName": "object", "doc": "The object type, must be `realtime.conversation`.", "type": { - "$id": "7209", + "$id": "7211", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93860,7 +93886,7 @@ ] }, "input_audio_buffer.committed": { - "$id": "7210", + "$id": "7212", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCommitted", "namespace": "OpenAI", @@ -93870,17 +93896,17 @@ "discriminatorValue": "input_audio_buffer.committed", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7211", + "$id": "7213", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.committed`.", "type": { - "$id": "7212", + "$id": "7214", "kind": "enumvalue", "name": "input_audio_buffer_committed", "value": "input_audio_buffer.committed", @@ -93888,7 +93914,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -93906,13 +93932,13 @@ "isHttpMetadata": false }, { - "$id": "7213", + "$id": "7215", "kind": "property", "name": "previous_item_id", "serializedName": "previous_item_id", "doc": "The ID of the preceding item after which the new item will be inserted.", "type": { - "$id": "7214", + "$id": "7216", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93932,13 +93958,13 @@ "isHttpMetadata": false }, { - "$id": "7215", + "$id": "7217", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7216", + "$id": "7218", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -93960,7 +93986,7 @@ ] }, "input_audio_buffer.cleared": { - "$id": "7217", + "$id": "7219", "kind": "model", "name": "RealtimeServerEventInputAudioBufferCleared", "namespace": "OpenAI", @@ -93970,17 +93996,17 @@ "discriminatorValue": "input_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7218", + "$id": "7220", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.cleared`.", "type": { - "$id": "7219", + "$id": "7221", "kind": "enumvalue", "name": "input_audio_buffer_cleared", "value": "input_audio_buffer.cleared", @@ -93988,7 +94014,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94008,7 +94034,7 @@ ] }, "input_audio_buffer.speech_started": { - "$id": "7220", + "$id": "7222", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStarted", "namespace": "OpenAI", @@ -94018,17 +94044,17 @@ "discriminatorValue": "input_audio_buffer.speech_started", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7221", + "$id": "7223", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_started`.", "type": { - "$id": "7222", + "$id": "7224", "kind": "enumvalue", "name": "input_audio_buffer_speech_started", "value": "input_audio_buffer.speech_started", @@ -94036,7 +94062,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94054,13 +94080,13 @@ "isHttpMetadata": false }, { - "$id": "7223", + "$id": "7225", "kind": "property", "name": "audio_start_ms", "serializedName": "audio_start_ms", "doc": "Milliseconds from the start of all audio written to the buffer during the\nsession when speech was first detected. This will correspond to the\nbeginning of audio sent to the model, and thus includes the\n`prefix_padding_ms` configured in the Session.", "type": { - "$id": "7224", + "$id": "7226", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94080,13 +94106,13 @@ "isHttpMetadata": false }, { - "$id": "7225", + "$id": "7227", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created when speech stops.", "type": { - "$id": "7226", + "$id": "7228", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94108,7 +94134,7 @@ ] }, "input_audio_buffer.speech_stopped": { - "$id": "7227", + "$id": "7229", "kind": "model", "name": "RealtimeServerEventInputAudioBufferSpeechStopped", "namespace": "OpenAI", @@ -94118,17 +94144,17 @@ "discriminatorValue": "input_audio_buffer.speech_stopped", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7228", + "$id": "7230", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `input_audio_buffer.speech_stopped`.", "type": { - "$id": "7229", + "$id": "7231", "kind": "enumvalue", "name": "input_audio_buffer_speech_stopped", "value": "input_audio_buffer.speech_stopped", @@ -94136,7 +94162,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94154,13 +94180,13 @@ "isHttpMetadata": false }, { - "$id": "7230", + "$id": "7232", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "Milliseconds since the session started when speech stopped. This will\ncorrespond to the end of audio sent to the model, and thus includes the\n`min_silence_duration_ms` configured in the Session.", "type": { - "$id": "7231", + "$id": "7233", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -94180,13 +94206,13 @@ "isHttpMetadata": false }, { - "$id": "7232", + "$id": "7234", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item that will be created.", "type": { - "$id": "7233", + "$id": "7235", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94208,7 +94234,7 @@ ] }, "output_audio_buffer.cleared": { - "$id": "7234", + "$id": "7236", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferCleared", "namespace": "OpenAI", @@ -94218,17 +94244,17 @@ "discriminatorValue": "output_audio_buffer.cleared", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7235", + "$id": "7237", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.cleared`.", "type": { - "$id": "7236", + "$id": "7238", "kind": "enumvalue", "name": "output_audio_buffer_cleared", "value": "output_audio_buffer.cleared", @@ -94236,7 +94262,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94254,13 +94280,13 @@ "isHttpMetadata": false }, { - "$id": "7237", + "$id": "7239", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7238", + "$id": "7240", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94282,7 +94308,7 @@ ] }, "output_audio_buffer.started": { - "$id": "7239", + "$id": "7241", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStarted", "namespace": "OpenAI", @@ -94292,17 +94318,17 @@ "discriminatorValue": "output_audio_buffer.started", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7240", + "$id": "7242", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.started`.", "type": { - "$id": "7241", + "$id": "7243", "kind": "enumvalue", "name": "output_audio_buffer_started", "value": "output_audio_buffer.started", @@ -94310,7 +94336,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94328,13 +94354,13 @@ "isHttpMetadata": false }, { - "$id": "7242", + "$id": "7244", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7243", + "$id": "7245", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94356,7 +94382,7 @@ ] }, "output_audio_buffer.stopped": { - "$id": "7244", + "$id": "7246", "kind": "model", "name": "RealtimeServerEventOutputAudioBufferStopped", "namespace": "OpenAI", @@ -94366,17 +94392,17 @@ "discriminatorValue": "output_audio_buffer.stopped", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7245", + "$id": "7247", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `output_audio_buffer.stopped`.", "type": { - "$id": "7246", + "$id": "7248", "kind": "enumvalue", "name": "output_audio_buffer_stopped", "value": "output_audio_buffer.stopped", @@ -94384,7 +94410,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94402,13 +94428,13 @@ "isHttpMetadata": false }, { - "$id": "7247", + "$id": "7249", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The unique ID of the response that produced the audio.", "type": { - "$id": "7248", + "$id": "7250", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94430,7 +94456,7 @@ ] }, "conversation.item.created": { - "$id": "7249", + "$id": "7251", "kind": "model", "name": "RealtimeServerEventConversationItemCreated", "namespace": "OpenAI", @@ -94440,17 +94466,17 @@ "discriminatorValue": "conversation.item.created", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7250", + "$id": "7252", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.created`.", "type": { - "$id": "7251", + "$id": "7253", "kind": "enumvalue", "name": "conversation_item_created", "value": "conversation.item.created", @@ -94458,7 +94484,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94476,13 +94502,13 @@ "isHttpMetadata": false }, { - "$id": "7252", + "$id": "7254", "kind": "property", "name": "previous_item_id", "serializedName": "previous_item_id", "doc": "The ID of the preceding item in the Conversation context, allows the\nclient to understand the order of the conversation.", "type": { - "$id": "7253", + "$id": "7255", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94502,12 +94528,12 @@ "isHttpMetadata": false }, { - "$id": "7254", + "$id": "7256", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$id": "7255", + "$id": "7257", "kind": "model", "name": "RealtimeConversationResponseItem", "namespace": "OpenAI", @@ -94515,7 +94541,7 @@ "usage": "Output,Json", "decorators": [], "discriminatorProperty": { - "$id": "7256", + "$id": "7258", "kind": "property", "name": "type", "serializedName": "type", @@ -94537,7 +94563,7 @@ }, "properties": [ { - "$id": "7257", + "$id": "7259", "kind": "property", "name": "object", "serializedName": "object", @@ -94558,18 +94584,18 @@ "isHttpMetadata": false }, { - "$ref": "7256" + "$ref": "7258" }, { - "$id": "7258", + "$id": "7260", "kind": "property", "name": "id", "serializedName": "id", "type": { - "$id": "7259", + "$id": "7261", "kind": "nullable", "type": { - "$id": "7260", + "$id": "7262", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94593,7 +94619,7 @@ ], "discriminatedSubtypes": { "message": { - "$id": "7261", + "$id": "7263", "kind": "model", "name": "RealtimeResponseMessageItem", "namespace": "OpenAI", @@ -94602,16 +94628,16 @@ "discriminatorValue": "message", "decorators": [], "baseModel": { - "$ref": "7255" + "$ref": "7257" }, "properties": [ { - "$id": "7262", + "$id": "7264", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "6951" + "$ref": "6953" }, "optional": false, "readOnly": false, @@ -94627,7 +94653,7 @@ "isHttpMetadata": false }, { - "$id": "7263", + "$id": "7265", "kind": "property", "name": "role", "serializedName": "role", @@ -94648,16 +94674,16 @@ "isHttpMetadata": false }, { - "$id": "7264", + "$id": "7266", "kind": "property", "name": "content", "serializedName": "content", "type": { - "$id": "7265", + "$id": "7267", "kind": "array", "name": "ArrayRealtimeContentPart", "valueType": { - "$ref": "6969" + "$ref": "6971" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -94676,7 +94702,7 @@ "isHttpMetadata": false }, { - "$id": "7266", + "$id": "7268", "kind": "property", "name": "status", "serializedName": "status", @@ -94699,7 +94725,7 @@ ] }, "function_call": { - "$id": "7267", + "$id": "7269", "kind": "model", "name": "RealtimeResponseFunctionCallItem", "namespace": "OpenAI", @@ -94708,16 +94734,16 @@ "discriminatorValue": "function_call", "decorators": [], "baseModel": { - "$ref": "7255" + "$ref": "7257" }, "properties": [ { - "$id": "7268", + "$id": "7270", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7009" + "$ref": "7011" }, "optional": false, "readOnly": false, @@ -94733,12 +94759,12 @@ "isHttpMetadata": false }, { - "$id": "7269", + "$id": "7271", "kind": "property", "name": "name", "serializedName": "name", "type": { - "$id": "7270", + "$id": "7272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94758,12 +94784,12 @@ "isHttpMetadata": false }, { - "$id": "7271", + "$id": "7273", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7272", + "$id": "7274", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94783,12 +94809,12 @@ "isHttpMetadata": false }, { - "$id": "7273", + "$id": "7275", "kind": "property", "name": "arguments", "serializedName": "arguments", "type": { - "$id": "7274", + "$id": "7276", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94808,7 +94834,7 @@ "isHttpMetadata": false }, { - "$id": "7275", + "$id": "7277", "kind": "property", "name": "status", "serializedName": "status", @@ -94831,7 +94857,7 @@ ] }, "function_call_output": { - "$id": "7276", + "$id": "7278", "kind": "model", "name": "RealtimeResponseFunctionCallOutputItem", "namespace": "OpenAI", @@ -94840,16 +94866,16 @@ "discriminatorValue": "function_call_output", "decorators": [], "baseModel": { - "$ref": "7255" + "$ref": "7257" }, "properties": [ { - "$id": "7277", + "$id": "7279", "kind": "property", "name": "type", "serializedName": "type", "type": { - "$ref": "7019" + "$ref": "7021" }, "optional": false, "readOnly": false, @@ -94865,12 +94891,12 @@ "isHttpMetadata": false }, { - "$id": "7278", + "$id": "7280", "kind": "property", "name": "call_id", "serializedName": "call_id", "type": { - "$id": "7279", + "$id": "7281", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94890,12 +94916,12 @@ "isHttpMetadata": false }, { - "$id": "7280", + "$id": "7282", "kind": "property", "name": "output", "serializedName": "output", "type": { - "$id": "7281", + "$id": "7283", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -94934,7 +94960,7 @@ ] }, "conversation.item.input_audio_transcription.completed": { - "$id": "7282", + "$id": "7284", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionCompleted", "namespace": "OpenAI", @@ -94944,17 +94970,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.completed", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7283", + "$id": "7285", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.completed`.", "type": { - "$id": "7284", + "$id": "7286", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_completed", "value": "conversation.item.input_audio_transcription.completed", @@ -94962,7 +94988,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -94980,13 +95006,13 @@ "isHttpMetadata": false }, { - "$id": "7285", + "$id": "7287", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item containing the audio.", "type": { - "$id": "7286", + "$id": "7288", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95006,13 +95032,13 @@ "isHttpMetadata": false }, { - "$id": "7287", + "$id": "7289", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7288", + "$id": "7290", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95032,13 +95058,13 @@ "isHttpMetadata": false }, { - "$id": "7289", + "$id": "7291", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The transcribed text.", "type": { - "$id": "7290", + "$id": "7292", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95058,20 +95084,20 @@ "isHttpMetadata": false }, { - "$id": "7291", + "$id": "7293", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7292", + "$id": "7294", "kind": "nullable", "type": { - "$id": "7293", + "$id": "7295", "kind": "array", "name": "ArrayLogProbProperties", "valueType": { - "$id": "7294", + "$id": "7296", "kind": "model", "name": "LogProbProperties", "namespace": "OpenAI", @@ -95081,13 +95107,13 @@ "decorators": [], "properties": [ { - "$id": "7295", + "$id": "7297", "kind": "property", "name": "token", "serializedName": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "7296", + "$id": "7298", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95107,13 +95133,13 @@ "isHttpMetadata": false }, { - "$id": "7297", + "$id": "7299", "kind": "property", "name": "logprob", "serializedName": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "7298", + "$id": "7300", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -95133,7 +95159,7 @@ "isHttpMetadata": false }, { - "$id": "7299", + "$id": "7301", "kind": "property", "name": "bytes", "serializedName": "bytes", @@ -95177,7 +95203,7 @@ ] }, "conversation.item.input_audio_transcription.failed": { - "$id": "7300", + "$id": "7302", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailed", "namespace": "OpenAI", @@ -95187,17 +95213,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.failed", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7301", + "$id": "7303", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be\n`conversation.item.input_audio_transcription.failed`.", "type": { - "$id": "7302", + "$id": "7304", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_failed", "value": "conversation.item.input_audio_transcription.failed", @@ -95205,7 +95231,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -95223,13 +95249,13 @@ "isHttpMetadata": false }, { - "$id": "7303", + "$id": "7305", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the user message item.", "type": { - "$id": "7304", + "$id": "7306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95249,13 +95275,13 @@ "isHttpMetadata": false }, { - "$id": "7305", + "$id": "7307", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part containing the audio.", "type": { - "$id": "7306", + "$id": "7308", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95275,13 +95301,13 @@ "isHttpMetadata": false }, { - "$id": "7307", + "$id": "7309", "kind": "property", "name": "error", "serializedName": "error", "doc": "Details of the transcription error.", "type": { - "$id": "7308", + "$id": "7310", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionFailedError", "namespace": "OpenAI", @@ -95290,13 +95316,13 @@ "decorators": [], "properties": [ { - "$id": "7309", + "$id": "7311", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7310", + "$id": "7312", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95316,13 +95342,13 @@ "isHttpMetadata": false }, { - "$id": "7311", + "$id": "7313", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7312", + "$id": "7314", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95342,13 +95368,13 @@ "isHttpMetadata": false }, { - "$id": "7313", + "$id": "7315", "kind": "property", "name": "message", "serializedName": "message", "doc": "A human-readable error message.", "type": { - "$id": "7314", + "$id": "7316", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95368,13 +95394,13 @@ "isHttpMetadata": false }, { - "$id": "7315", + "$id": "7317", "kind": "property", "name": "param", "serializedName": "param", "doc": "Parameter related to the error, if any.", "type": { - "$id": "7316", + "$id": "7318", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95411,7 +95437,7 @@ ] }, "conversation.item.truncated": { - "$id": "7317", + "$id": "7319", "kind": "model", "name": "RealtimeServerEventConversationItemTruncated", "namespace": "OpenAI", @@ -95421,17 +95447,17 @@ "discriminatorValue": "conversation.item.truncated", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7318", + "$id": "7320", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.truncated`.", "type": { - "$id": "7319", + "$id": "7321", "kind": "enumvalue", "name": "conversation_item_truncated", "value": "conversation.item.truncated", @@ -95439,7 +95465,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -95457,13 +95483,13 @@ "isHttpMetadata": false }, { - "$id": "7320", + "$id": "7322", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the assistant message item that was truncated.", "type": { - "$id": "7321", + "$id": "7323", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95483,13 +95509,13 @@ "isHttpMetadata": false }, { - "$id": "7322", + "$id": "7324", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part that was truncated.", "type": { - "$id": "7323", + "$id": "7325", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95509,13 +95535,13 @@ "isHttpMetadata": false }, { - "$id": "7324", + "$id": "7326", "kind": "property", "name": "audio_end_ms", "serializedName": "audio_end_ms", "doc": "The duration up to which the audio was truncated, in milliseconds.", "type": { - "$id": "7325", + "$id": "7327", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95537,7 +95563,7 @@ ] }, "conversation.item.deleted": { - "$id": "7326", + "$id": "7328", "kind": "model", "name": "RealtimeServerEventConversationItemDeleted", "namespace": "OpenAI", @@ -95547,17 +95573,17 @@ "discriminatorValue": "conversation.item.deleted", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7327", + "$id": "7329", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.deleted`.", "type": { - "$id": "7328", + "$id": "7330", "kind": "enumvalue", "name": "conversation_item_deleted", "value": "conversation.item.deleted", @@ -95565,7 +95591,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -95583,13 +95609,13 @@ "isHttpMetadata": false }, { - "$id": "7329", + "$id": "7331", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item that was deleted.", "type": { - "$id": "7330", + "$id": "7332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95611,7 +95637,7 @@ ] }, "response.created": { - "$id": "7331", + "$id": "7333", "kind": "model", "name": "RealtimeServerEventResponseCreated", "namespace": "OpenAI", @@ -95621,17 +95647,17 @@ "discriminatorValue": "response.created", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7332", + "$id": "7334", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.created`.", "type": { - "$id": "7333", + "$id": "7335", "kind": "enumvalue", "name": "response_created", "value": "response.created", @@ -95639,7 +95665,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -95657,12 +95683,12 @@ "isHttpMetadata": false }, { - "$id": "7334", + "$id": "7336", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$id": "7335", + "$id": "7337", "kind": "model", "name": "RealtimeResponse", "namespace": "OpenAI", @@ -95672,13 +95698,13 @@ "decorators": [], "properties": [ { - "$id": "7336", + "$id": "7338", "kind": "property", "name": "id", "serializedName": "id", "doc": "The unique ID of the response.", "type": { - "$id": "7337", + "$id": "7339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95698,7 +95724,7 @@ "isHttpMetadata": false }, { - "$id": "7338", + "$id": "7340", "kind": "property", "name": "object", "serializedName": "object", @@ -95720,7 +95746,7 @@ "isHttpMetadata": false }, { - "$id": "7339", + "$id": "7341", "kind": "property", "name": "status", "serializedName": "status", @@ -95742,13 +95768,13 @@ "isHttpMetadata": false }, { - "$id": "7340", + "$id": "7342", "kind": "property", "name": "status_details", "serializedName": "status_details", "doc": "Additional details about the status.", "type": { - "$id": "7341", + "$id": "7343", "kind": "model", "name": "RealtimeResponseStatusDetails", "namespace": "OpenAI", @@ -95757,7 +95783,7 @@ "decorators": [], "properties": [ { - "$id": "7342", + "$id": "7344", "kind": "property", "name": "type", "serializedName": "type", @@ -95779,7 +95805,7 @@ "isHttpMetadata": false }, { - "$id": "7343", + "$id": "7345", "kind": "property", "name": "reason", "serializedName": "reason", @@ -95801,13 +95827,13 @@ "isHttpMetadata": false }, { - "$id": "7344", + "$id": "7346", "kind": "property", "name": "error", "serializedName": "error", "doc": "A description of the error that caused the response to fail,\npopulated when the `status` is `failed`.", "type": { - "$id": "7345", + "$id": "7347", "kind": "model", "name": "RealtimeResponseStatusDetailsError", "namespace": "OpenAI", @@ -95816,13 +95842,13 @@ "decorators": [], "properties": [ { - "$id": "7346", + "$id": "7348", "kind": "property", "name": "type", "serializedName": "type", "doc": "The type of error.", "type": { - "$id": "7347", + "$id": "7349", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95842,13 +95868,13 @@ "isHttpMetadata": false }, { - "$id": "7348", + "$id": "7350", "kind": "property", "name": "code", "serializedName": "code", "doc": "Error code, if any.", "type": { - "$id": "7349", + "$id": "7351", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -95898,17 +95924,17 @@ "isHttpMetadata": false }, { - "$id": "7350", + "$id": "7352", "kind": "property", "name": "output", "serializedName": "output", "doc": "The list of output items generated by the response.", "type": { - "$id": "7351", + "$id": "7353", "kind": "array", "name": "ArrayRealtimeConversationResponseItem", "valueType": { - "$ref": "7255" + "$ref": "7257" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -95927,7 +95953,7 @@ "isHttpMetadata": false }, { - "$id": "7352", + "$id": "7354", "kind": "property", "name": "metadata", "serializedName": "metadata", @@ -95949,13 +95975,13 @@ "isHttpMetadata": false }, { - "$id": "7353", + "$id": "7355", "kind": "property", "name": "usage", "serializedName": "usage", "doc": "Usage statistics for the Response, this will correspond to billing. A\nRealtime API session will maintain a conversation context and append new\nItems to the Conversation, thus output from previous turns (text and\naudio tokens) will become the input for later turns.", "type": { - "$id": "7354", + "$id": "7356", "kind": "model", "name": "RealtimeResponseUsage", "namespace": "OpenAI", @@ -95964,13 +95990,13 @@ "decorators": [], "properties": [ { - "$id": "7355", + "$id": "7357", "kind": "property", "name": "total_tokens", "serializedName": "total_tokens", "doc": "The total number of tokens in the Response including input and output\ntext and audio tokens.", "type": { - "$id": "7356", + "$id": "7358", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -95990,13 +96016,13 @@ "isHttpMetadata": false }, { - "$id": "7357", + "$id": "7359", "kind": "property", "name": "input_tokens", "serializedName": "input_tokens", "doc": "The number of input tokens used in the Response, including text and\naudio tokens.", "type": { - "$id": "7358", + "$id": "7360", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96016,13 +96042,13 @@ "isHttpMetadata": false }, { - "$id": "7359", + "$id": "7361", "kind": "property", "name": "output_tokens", "serializedName": "output_tokens", "doc": "The number of output tokens sent in the Response, including text and\naudio tokens.", "type": { - "$id": "7360", + "$id": "7362", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96042,13 +96068,13 @@ "isHttpMetadata": false }, { - "$id": "7361", + "$id": "7363", "kind": "property", "name": "input_token_details", "serializedName": "input_token_details", "doc": "Details about the input tokens used in the Response.", "type": { - "$id": "7362", + "$id": "7364", "kind": "model", "name": "RealtimeResponseUsageInputTokenDetails", "namespace": "OpenAI", @@ -96057,13 +96083,13 @@ "decorators": [], "properties": [ { - "$id": "7363", + "$id": "7365", "kind": "property", "name": "cached_tokens", "serializedName": "cached_tokens", "doc": "The number of cached tokens used in the Response.", "type": { - "$id": "7364", + "$id": "7366", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96083,13 +96109,13 @@ "isHttpMetadata": false }, { - "$id": "7365", + "$id": "7367", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7366", + "$id": "7368", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96109,13 +96135,13 @@ "isHttpMetadata": false }, { - "$id": "7367", + "$id": "7369", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7368", + "$id": "7370", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96150,13 +96176,13 @@ "isHttpMetadata": false }, { - "$id": "7369", + "$id": "7371", "kind": "property", "name": "output_token_details", "serializedName": "output_token_details", "doc": "Details about the output tokens used in the Response.", "type": { - "$id": "7370", + "$id": "7372", "kind": "model", "name": "RealtimeResponseUsageOutputTokenDetails", "namespace": "OpenAI", @@ -96165,13 +96191,13 @@ "decorators": [], "properties": [ { - "$id": "7371", + "$id": "7373", "kind": "property", "name": "text_tokens", "serializedName": "text_tokens", "doc": "The number of text tokens used in the Response.", "type": { - "$id": "7372", + "$id": "7374", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96191,13 +96217,13 @@ "isHttpMetadata": false }, { - "$id": "7373", + "$id": "7375", "kind": "property", "name": "audio_tokens", "serializedName": "audio_tokens", "doc": "The number of audio tokens used in the Response.", "type": { - "$id": "7374", + "$id": "7376", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96247,13 +96273,13 @@ "isHttpMetadata": false }, { - "$id": "7375", + "$id": "7377", "kind": "property", "name": "conversation_id", "serializedName": "conversation_id", "doc": "Which conversation the response is added to, determined by the `conversation`\nfield in the `response.create` event. If `auto`, the response will be added to\nthe default conversation and the value of `conversation_id` will be an id like\n`conv_1234`. If `none`, the response will not be added to any conversation and\nthe value of `conversation_id` will be `null`. If responses are being triggered\nby server VAD, the response will be added to the default conversation, thus\nthe `conversation_id` will be an id like `conv_1234`.", "type": { - "$id": "7376", + "$id": "7378", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96273,7 +96299,7 @@ "isHttpMetadata": false }, { - "$id": "7377", + "$id": "7379", "kind": "property", "name": "voice", "serializedName": "voice", @@ -96295,13 +96321,13 @@ "isHttpMetadata": false }, { - "$id": "7378", + "$id": "7380", "kind": "property", "name": "modalities", "serializedName": "modalities", "doc": "The set of modalities the model used to respond. If there are multiple modalities,\nthe model will pick one, for example if `modalities` is `[\"text\", \"audio\"]`, the model\ncould be responding in either text or audio.", "type": { - "$id": "7379", + "$id": "7381", "kind": "array", "name": "Array44", "valueType": { @@ -96324,7 +96350,7 @@ "isHttpMetadata": false }, { - "$id": "7380", + "$id": "7382", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -96346,13 +96372,13 @@ "isHttpMetadata": false }, { - "$id": "7381", + "$id": "7383", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7382", + "$id": "7384", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -96372,18 +96398,18 @@ "isHttpMetadata": false }, { - "$id": "7383", + "$id": "7385", "kind": "property", "name": "max_output_tokens", "serializedName": "max_output_tokens", "doc": "Maximum number of output tokens for a single assistant response,\ninclusive of tool calls, that was used in this response.", "type": { - "$id": "7384", + "$id": "7386", "kind": "union", "name": "RealtimeResponseMaxOutputTokens", "variantTypes": [ { - "$id": "7385", + "$id": "7387", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96427,7 +96453,7 @@ ] }, "response.done": { - "$id": "7386", + "$id": "7388", "kind": "model", "name": "RealtimeServerEventResponseDone", "namespace": "OpenAI", @@ -96437,17 +96463,17 @@ "discriminatorValue": "response.done", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7387", + "$id": "7389", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.done`.", "type": { - "$id": "7388", + "$id": "7390", "kind": "enumvalue", "name": "response_done", "value": "response.done", @@ -96455,7 +96481,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -96473,12 +96499,12 @@ "isHttpMetadata": false }, { - "$id": "7389", + "$id": "7391", "kind": "property", "name": "response", "serializedName": "response", "type": { - "$ref": "7335" + "$ref": "7337" }, "optional": false, "readOnly": false, @@ -96496,7 +96522,7 @@ ] }, "response.output_item.added": { - "$id": "7390", + "$id": "7392", "kind": "model", "name": "RealtimeServerEventResponseOutputItemAdded", "namespace": "OpenAI", @@ -96506,17 +96532,17 @@ "discriminatorValue": "response.output_item.added", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7391", + "$id": "7393", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.added`.", "type": { - "$id": "7392", + "$id": "7394", "kind": "enumvalue", "name": "response_output_item_added", "value": "response.output_item.added", @@ -96524,7 +96550,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -96542,13 +96568,13 @@ "isHttpMetadata": false }, { - "$id": "7393", + "$id": "7395", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7394", + "$id": "7396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96568,13 +96594,13 @@ "isHttpMetadata": false }, { - "$id": "7395", + "$id": "7397", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7396", + "$id": "7398", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96594,12 +96620,12 @@ "isHttpMetadata": false }, { - "$id": "7397", + "$id": "7399", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7255" + "$ref": "7257" }, "optional": false, "readOnly": false, @@ -96617,7 +96643,7 @@ ] }, "response.output_item.done": { - "$id": "7398", + "$id": "7400", "kind": "model", "name": "RealtimeServerEventResponseOutputItemDone", "namespace": "OpenAI", @@ -96627,17 +96653,17 @@ "discriminatorValue": "response.output_item.done", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7399", + "$id": "7401", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.output_item.done`.", "type": { - "$id": "7400", + "$id": "7402", "kind": "enumvalue", "name": "response_output_item_done", "value": "response.output_item.done", @@ -96645,7 +96671,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -96663,13 +96689,13 @@ "isHttpMetadata": false }, { - "$id": "7401", + "$id": "7403", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the Response to which the item belongs.", "type": { - "$id": "7402", + "$id": "7404", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96689,13 +96715,13 @@ "isHttpMetadata": false }, { - "$id": "7403", + "$id": "7405", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the Response.", "type": { - "$id": "7404", + "$id": "7406", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96715,12 +96741,12 @@ "isHttpMetadata": false }, { - "$id": "7405", + "$id": "7407", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7255" + "$ref": "7257" }, "optional": false, "readOnly": false, @@ -96738,7 +96764,7 @@ ] }, "response.content_part.added": { - "$id": "7406", + "$id": "7408", "kind": "model", "name": "RealtimeServerEventResponseContentPartAdded", "namespace": "OpenAI", @@ -96748,17 +96774,17 @@ "discriminatorValue": "response.content_part.added", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7407", + "$id": "7409", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.added`.", "type": { - "$id": "7408", + "$id": "7410", "kind": "enumvalue", "name": "response_content_part_added", "value": "response.content_part.added", @@ -96766,7 +96792,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -96784,13 +96810,13 @@ "isHttpMetadata": false }, { - "$id": "7409", + "$id": "7411", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7410", + "$id": "7412", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96810,13 +96836,13 @@ "isHttpMetadata": false }, { - "$id": "7411", + "$id": "7413", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item to which the content part was added.", "type": { - "$id": "7412", + "$id": "7414", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96836,13 +96862,13 @@ "isHttpMetadata": false }, { - "$id": "7413", + "$id": "7415", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7414", + "$id": "7416", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96862,13 +96888,13 @@ "isHttpMetadata": false }, { - "$id": "7415", + "$id": "7417", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7416", + "$id": "7418", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -96888,13 +96914,13 @@ "isHttpMetadata": false }, { - "$id": "7417", + "$id": "7419", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that was added.", "type": { - "$ref": "6969" + "$ref": "6971" }, "optional": false, "readOnly": false, @@ -96912,7 +96938,7 @@ ] }, "response.content_part.done": { - "$id": "7418", + "$id": "7420", "kind": "model", "name": "RealtimeServerEventResponseContentPartDone", "namespace": "OpenAI", @@ -96922,17 +96948,17 @@ "discriminatorValue": "response.content_part.done", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7419", + "$id": "7421", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.content_part.done`.", "type": { - "$id": "7420", + "$id": "7422", "kind": "enumvalue", "name": "response_content_part_done", "value": "response.content_part.done", @@ -96940,7 +96966,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -96958,13 +96984,13 @@ "isHttpMetadata": false }, { - "$id": "7421", + "$id": "7423", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7422", + "$id": "7424", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -96984,13 +97010,13 @@ "isHttpMetadata": false }, { - "$id": "7423", + "$id": "7425", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7424", + "$id": "7426", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97010,13 +97036,13 @@ "isHttpMetadata": false }, { - "$id": "7425", + "$id": "7427", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7426", + "$id": "7428", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97036,13 +97062,13 @@ "isHttpMetadata": false }, { - "$id": "7427", + "$id": "7429", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7428", + "$id": "7430", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97062,13 +97088,13 @@ "isHttpMetadata": false }, { - "$id": "7429", + "$id": "7431", "kind": "property", "name": "part", "serializedName": "part", "doc": "The content part that is done.", "type": { - "$ref": "6969" + "$ref": "6971" }, "optional": false, "readOnly": false, @@ -97086,7 +97112,7 @@ ] }, "response.text.delta": { - "$id": "7430", + "$id": "7432", "kind": "model", "name": "RealtimeServerEventResponseTextDelta", "namespace": "OpenAI", @@ -97096,17 +97122,17 @@ "discriminatorValue": "response.text.delta", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7431", + "$id": "7433", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.delta`.", "type": { - "$id": "7432", + "$id": "7434", "kind": "enumvalue", "name": "response_text_delta", "value": "response.text.delta", @@ -97114,7 +97140,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -97132,13 +97158,13 @@ "isHttpMetadata": false }, { - "$id": "7433", + "$id": "7435", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7434", + "$id": "7436", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97158,13 +97184,13 @@ "isHttpMetadata": false }, { - "$id": "7435", + "$id": "7437", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7436", + "$id": "7438", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97184,13 +97210,13 @@ "isHttpMetadata": false }, { - "$id": "7437", + "$id": "7439", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7438", + "$id": "7440", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97210,13 +97236,13 @@ "isHttpMetadata": false }, { - "$id": "7439", + "$id": "7441", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7440", + "$id": "7442", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97236,13 +97262,13 @@ "isHttpMetadata": false }, { - "$id": "7441", + "$id": "7443", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7442", + "$id": "7444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97264,7 +97290,7 @@ ] }, "response.text.done": { - "$id": "7443", + "$id": "7445", "kind": "model", "name": "RealtimeServerEventResponseTextDone", "namespace": "OpenAI", @@ -97274,17 +97300,17 @@ "discriminatorValue": "response.text.done", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7444", + "$id": "7446", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.text.done`.", "type": { - "$id": "7445", + "$id": "7447", "kind": "enumvalue", "name": "response_text_done", "value": "response.text.done", @@ -97292,7 +97318,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -97310,13 +97336,13 @@ "isHttpMetadata": false }, { - "$id": "7446", + "$id": "7448", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7447", + "$id": "7449", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97336,13 +97362,13 @@ "isHttpMetadata": false }, { - "$id": "7448", + "$id": "7450", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7449", + "$id": "7451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97362,13 +97388,13 @@ "isHttpMetadata": false }, { - "$id": "7450", + "$id": "7452", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7451", + "$id": "7453", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97388,13 +97414,13 @@ "isHttpMetadata": false }, { - "$id": "7452", + "$id": "7454", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7453", + "$id": "7455", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97414,13 +97440,13 @@ "isHttpMetadata": false }, { - "$id": "7454", + "$id": "7456", "kind": "property", "name": "text", "serializedName": "text", "doc": "The final text content.", "type": { - "$id": "7455", + "$id": "7457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97442,7 +97468,7 @@ ] }, "response.audio_transcript.delta": { - "$id": "7456", + "$id": "7458", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDelta", "namespace": "OpenAI", @@ -97452,17 +97478,17 @@ "discriminatorValue": "response.audio_transcript.delta", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7457", + "$id": "7459", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.delta`.", "type": { - "$id": "7458", + "$id": "7460", "kind": "enumvalue", "name": "response_audio_transcript_delta", "value": "response.audio_transcript.delta", @@ -97470,7 +97496,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -97488,13 +97514,13 @@ "isHttpMetadata": false }, { - "$id": "7459", + "$id": "7461", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7460", + "$id": "7462", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97514,13 +97540,13 @@ "isHttpMetadata": false }, { - "$id": "7461", + "$id": "7463", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7462", + "$id": "7464", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97540,13 +97566,13 @@ "isHttpMetadata": false }, { - "$id": "7463", + "$id": "7465", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7464", + "$id": "7466", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97566,13 +97592,13 @@ "isHttpMetadata": false }, { - "$id": "7465", + "$id": "7467", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7466", + "$id": "7468", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97592,13 +97618,13 @@ "isHttpMetadata": false }, { - "$id": "7467", + "$id": "7469", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The transcript delta.", "type": { - "$id": "7468", + "$id": "7470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97620,7 +97646,7 @@ ] }, "response.audio_transcript.done": { - "$id": "7469", + "$id": "7471", "kind": "model", "name": "RealtimeServerEventResponseAudioTranscriptDone", "namespace": "OpenAI", @@ -97630,17 +97656,17 @@ "discriminatorValue": "response.audio_transcript.done", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7470", + "$id": "7472", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio_transcript.done`.", "type": { - "$id": "7471", + "$id": "7473", "kind": "enumvalue", "name": "response_audio_transcript_done", "value": "response.audio_transcript.done", @@ -97648,7 +97674,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -97666,13 +97692,13 @@ "isHttpMetadata": false }, { - "$id": "7472", + "$id": "7474", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7473", + "$id": "7475", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97692,13 +97718,13 @@ "isHttpMetadata": false }, { - "$id": "7474", + "$id": "7476", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7475", + "$id": "7477", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97718,13 +97744,13 @@ "isHttpMetadata": false }, { - "$id": "7476", + "$id": "7478", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7477", + "$id": "7479", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97744,13 +97770,13 @@ "isHttpMetadata": false }, { - "$id": "7478", + "$id": "7480", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7479", + "$id": "7481", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97770,13 +97796,13 @@ "isHttpMetadata": false }, { - "$id": "7480", + "$id": "7482", "kind": "property", "name": "transcript", "serializedName": "transcript", "doc": "The final transcript of the audio.", "type": { - "$id": "7481", + "$id": "7483", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97798,7 +97824,7 @@ ] }, "response.audio.delta": { - "$id": "7482", + "$id": "7484", "kind": "model", "name": "RealtimeServerEventResponseAudioDelta", "namespace": "OpenAI", @@ -97808,17 +97834,17 @@ "discriminatorValue": "response.audio.delta", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7483", + "$id": "7485", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.delta`.", "type": { - "$id": "7484", + "$id": "7486", "kind": "enumvalue", "name": "response_audio_delta", "value": "response.audio.delta", @@ -97826,7 +97852,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -97844,13 +97870,13 @@ "isHttpMetadata": false }, { - "$id": "7485", + "$id": "7487", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7486", + "$id": "7488", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97870,13 +97896,13 @@ "isHttpMetadata": false }, { - "$id": "7487", + "$id": "7489", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7488", + "$id": "7490", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -97896,13 +97922,13 @@ "isHttpMetadata": false }, { - "$id": "7489", + "$id": "7491", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7490", + "$id": "7492", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97922,13 +97948,13 @@ "isHttpMetadata": false }, { - "$id": "7491", + "$id": "7493", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7492", + "$id": "7494", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -97948,13 +97974,13 @@ "isHttpMetadata": false }, { - "$id": "7493", + "$id": "7495", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "Base64-encoded audio data delta.", "type": { - "$id": "7494", + "$id": "7496", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -97977,7 +98003,7 @@ ] }, "response.audio.done": { - "$id": "7495", + "$id": "7497", "kind": "model", "name": "RealtimeServerEventResponseAudioDone", "namespace": "OpenAI", @@ -97987,17 +98013,17 @@ "discriminatorValue": "response.audio.done", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7496", + "$id": "7498", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.audio.done`.", "type": { - "$id": "7497", + "$id": "7499", "kind": "enumvalue", "name": "response_audio_done", "value": "response.audio.done", @@ -98005,7 +98031,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -98023,13 +98049,13 @@ "isHttpMetadata": false }, { - "$id": "7498", + "$id": "7500", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7499", + "$id": "7501", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98049,13 +98075,13 @@ "isHttpMetadata": false }, { - "$id": "7500", + "$id": "7502", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7501", + "$id": "7503", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98075,13 +98101,13 @@ "isHttpMetadata": false }, { - "$id": "7502", + "$id": "7504", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7503", + "$id": "7505", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98101,13 +98127,13 @@ "isHttpMetadata": false }, { - "$id": "7504", + "$id": "7506", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7505", + "$id": "7507", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98129,7 +98155,7 @@ ] }, "response.function_call_arguments.delta": { - "$id": "7506", + "$id": "7508", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDelta", "namespace": "OpenAI", @@ -98139,17 +98165,17 @@ "discriminatorValue": "response.function_call_arguments.delta", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7507", + "$id": "7509", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.delta`.", "type": { - "$id": "7508", + "$id": "7510", "kind": "enumvalue", "name": "response_function_call_arguments_delta", "value": "response.function_call_arguments.delta", @@ -98157,7 +98183,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -98175,13 +98201,13 @@ "isHttpMetadata": false }, { - "$id": "7509", + "$id": "7511", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7510", + "$id": "7512", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98201,13 +98227,13 @@ "isHttpMetadata": false }, { - "$id": "7511", + "$id": "7513", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7512", + "$id": "7514", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98227,13 +98253,13 @@ "isHttpMetadata": false }, { - "$id": "7513", + "$id": "7515", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7514", + "$id": "7516", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98253,13 +98279,13 @@ "isHttpMetadata": false }, { - "$id": "7515", + "$id": "7517", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7516", + "$id": "7518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98279,13 +98305,13 @@ "isHttpMetadata": false }, { - "$id": "7517", + "$id": "7519", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The arguments delta as a JSON string.", "type": { - "$id": "7518", + "$id": "7520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98307,7 +98333,7 @@ ] }, "response.function_call_arguments.done": { - "$id": "7519", + "$id": "7521", "kind": "model", "name": "RealtimeServerEventResponseFunctionCallArgumentsDone", "namespace": "OpenAI", @@ -98317,17 +98343,17 @@ "discriminatorValue": "response.function_call_arguments.done", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7520", + "$id": "7522", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `response.function_call_arguments.done`.", "type": { - "$id": "7521", + "$id": "7523", "kind": "enumvalue", "name": "response_function_call_arguments_done", "value": "response.function_call_arguments.done", @@ -98335,7 +98361,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -98353,13 +98379,13 @@ "isHttpMetadata": false }, { - "$id": "7522", + "$id": "7524", "kind": "property", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response.", "type": { - "$id": "7523", + "$id": "7525", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98379,13 +98405,13 @@ "isHttpMetadata": false }, { - "$id": "7524", + "$id": "7526", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the function call item.", "type": { - "$id": "7525", + "$id": "7527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98405,13 +98431,13 @@ "isHttpMetadata": false }, { - "$id": "7526", + "$id": "7528", "kind": "property", "name": "output_index", "serializedName": "output_index", "doc": "The index of the output item in the response.", "type": { - "$id": "7527", + "$id": "7529", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98431,13 +98457,13 @@ "isHttpMetadata": false }, { - "$id": "7528", + "$id": "7530", "kind": "property", "name": "call_id", "serializedName": "call_id", "doc": "The ID of the function call.", "type": { - "$id": "7529", + "$id": "7531", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98457,13 +98483,13 @@ "isHttpMetadata": false }, { - "$id": "7530", + "$id": "7532", "kind": "property", "name": "arguments", "serializedName": "arguments", "doc": "The final arguments as a JSON string.", "type": { - "$id": "7531", + "$id": "7533", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98485,7 +98511,7 @@ ] }, "rate_limits.updated": { - "$id": "7532", + "$id": "7534", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdated", "namespace": "OpenAI", @@ -98495,17 +98521,17 @@ "discriminatorValue": "rate_limits.updated", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7533", + "$id": "7535", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `rate_limits.updated`.", "type": { - "$id": "7534", + "$id": "7536", "kind": "enumvalue", "name": "rate_limits_updated", "value": "rate_limits.updated", @@ -98513,7 +98539,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -98531,17 +98557,17 @@ "isHttpMetadata": false }, { - "$id": "7535", + "$id": "7537", "kind": "property", "name": "rate_limits", "serializedName": "rate_limits", "doc": "List of rate limit information.", "type": { - "$id": "7536", + "$id": "7538", "kind": "array", "name": "ArrayRealtimeServerEventRateLimitsUpdatedRateLimitsItem", "valueType": { - "$id": "7537", + "$id": "7539", "kind": "model", "name": "RealtimeServerEventRateLimitsUpdatedRateLimitsItem", "namespace": "OpenAI", @@ -98550,13 +98576,13 @@ "decorators": [], "properties": [ { - "$id": "7538", + "$id": "7540", "kind": "property", "name": "name", "serializedName": "name", "doc": "The rate limit property name that this item includes information about.", "type": { - "$id": "7539", + "$id": "7541", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98576,13 +98602,13 @@ "isHttpMetadata": false }, { - "$id": "7540", + "$id": "7542", "kind": "property", "name": "limit", "serializedName": "limit", "doc": "The maximum configured limit for this rate limit property.", "type": { - "$id": "7541", + "$id": "7543", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98602,13 +98628,13 @@ "isHttpMetadata": false }, { - "$id": "7542", + "$id": "7544", "kind": "property", "name": "remaining", "serializedName": "remaining", "doc": "The remaining quota available against the configured limit for this rate limit property.", "type": { - "$id": "7543", + "$id": "7545", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98628,18 +98654,18 @@ "isHttpMetadata": false }, { - "$id": "7544", + "$id": "7546", "kind": "property", "name": "reset_seconds", "serializedName": "reset_seconds", "doc": "The remaining time, in seconds, until this rate limit property is reset.", "type": { - "$id": "7545", + "$id": "7547", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "7546", + "$id": "7548", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -98682,7 +98708,7 @@ ] }, "conversation.item.input_audio_transcription.delta": { - "$id": "7547", + "$id": "7549", "kind": "model", "name": "RealtimeServerEventConversationItemInputAudioTranscriptionDelta", "namespace": "OpenAI", @@ -98692,17 +98718,17 @@ "discriminatorValue": "conversation.item.input_audio_transcription.delta", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7548", + "$id": "7550", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.input_audio_transcription.delta`.", "type": { - "$id": "7549", + "$id": "7551", "kind": "enumvalue", "name": "conversation_item_input_audio_transcription_delta", "value": "conversation.item.input_audio_transcription.delta", @@ -98710,7 +98736,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -98728,13 +98754,13 @@ "isHttpMetadata": false }, { - "$id": "7550", + "$id": "7552", "kind": "property", "name": "item_id", "serializedName": "item_id", "doc": "The ID of the item.", "type": { - "$id": "7551", + "$id": "7553", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98754,13 +98780,13 @@ "isHttpMetadata": false }, { - "$id": "7552", + "$id": "7554", "kind": "property", "name": "content_index", "serializedName": "content_index", "doc": "The index of the content part in the item's content array.", "type": { - "$id": "7553", + "$id": "7555", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -98780,13 +98806,13 @@ "isHttpMetadata": false }, { - "$id": "7554", + "$id": "7556", "kind": "property", "name": "delta", "serializedName": "delta", "doc": "The text delta.", "type": { - "$id": "7555", + "$id": "7557", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -98806,16 +98832,16 @@ "isHttpMetadata": false }, { - "$id": "7556", + "$id": "7558", "kind": "property", "name": "logprobs", "serializedName": "logprobs", "doc": "The log probabilities of the transcription.", "type": { - "$id": "7557", + "$id": "7559", "kind": "nullable", "type": { - "$ref": "7293" + "$ref": "7295" }, "namespace": "OpenAI" }, @@ -98835,7 +98861,7 @@ ] }, "conversation.item.retrieved": { - "$id": "7558", + "$id": "7560", "kind": "model", "name": "RealtimeServerEventConversationItemRetrieved", "namespace": "OpenAI", @@ -98845,17 +98871,17 @@ "discriminatorValue": "conversation.item.retrieved", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7559", + "$id": "7561", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `conversation.item.retrieved`.", "type": { - "$id": "7560", + "$id": "7562", "kind": "enumvalue", "name": "conversation_item_retrieved", "value": "conversation.item.retrieved", @@ -98863,7 +98889,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -98881,12 +98907,12 @@ "isHttpMetadata": false }, { - "$id": "7561", + "$id": "7563", "kind": "property", "name": "item", "serializedName": "item", "type": { - "$ref": "7255" + "$ref": "7257" }, "optional": false, "readOnly": false, @@ -98904,7 +98930,7 @@ ] }, "transcription_session.updated": { - "$id": "7562", + "$id": "7564", "kind": "model", "name": "RealtimeServerEventTranscriptionSessionUpdated", "namespace": "OpenAI", @@ -98914,17 +98940,17 @@ "discriminatorValue": "transcription_session.updated", "decorators": [], "baseModel": { - "$ref": "7111" + "$ref": "7113" }, "properties": [ { - "$id": "7563", + "$id": "7565", "kind": "property", "name": "type", "serializedName": "type", "doc": "The event type, must be `transcription_session.updated`.", "type": { - "$id": "7564", + "$id": "7566", "kind": "enumvalue", "name": "transcription_session_updated", "value": "transcription_session.updated", @@ -98932,7 +98958,7 @@ "$ref": "1208" }, "enumType": { - "$ref": "7118" + "$ref": "7120" }, "decorators": [] }, @@ -98950,12 +98976,12 @@ "isHttpMetadata": false }, { - "$id": "7565", + "$id": "7567", "kind": "property", "name": "session", "serializedName": "session", "type": { - "$id": "7566", + "$id": "7568", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponse", "namespace": "OpenAI", @@ -98965,13 +98991,13 @@ "decorators": [], "properties": [ { - "$id": "7567", + "$id": "7569", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Ephemeral key returned by the API. Only present when the session is\ncreated on the server via REST API.", "type": { - "$id": "7568", + "$id": "7570", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -98980,13 +99006,13 @@ "decorators": [], "properties": [ { - "$id": "7569", + "$id": "7571", "kind": "property", "name": "value", "serializedName": "value", "doc": "Ephemeral key usable in client environments to authenticate connections\nto the Realtime API. Use this in client-side environments rather than\na standard API token, which should only be used server-side.", "type": { - "$id": "7570", + "$id": "7572", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99006,18 +99032,18 @@ "isHttpMetadata": false }, { - "$id": "7571", + "$id": "7573", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7572", + "$id": "7574", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7573", + "$id": "7575", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99055,13 +99081,13 @@ "isHttpMetadata": false }, { - "$id": "7574", + "$id": "7576", "kind": "property", "name": "modalities", "serializedName": "modalities", "doc": "The set of modalities the model can respond with. To disable audio,\nset this to [\"text\"].", "type": { - "$id": "7575", + "$id": "7577", "kind": "array", "name": "Array45", "valueType": { @@ -99084,13 +99110,13 @@ "isHttpMetadata": false }, { - "$id": "7576", + "$id": "7578", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", "doc": "The format of input audio. Options are `pcm16`, `g711_ulaw`, or `g711_alaw`.", "type": { - "$id": "7577", + "$id": "7579", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99110,13 +99136,13 @@ "isHttpMetadata": false }, { - "$id": "7578", + "$id": "7580", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration of the transcription model.", "type": { - "$id": "7579", + "$id": "7581", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -99125,7 +99151,7 @@ "decorators": [], "properties": [ { - "$id": "7580", + "$id": "7582", "kind": "property", "name": "model", "serializedName": "model", @@ -99147,13 +99173,13 @@ "isHttpMetadata": false }, { - "$id": "7581", + "$id": "7583", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio. Supplying the input language in\n[ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format\nwill improve accuracy and latency.", "type": { - "$id": "7582", + "$id": "7584", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99173,13 +99199,13 @@ "isHttpMetadata": false }, { - "$id": "7583", + "$id": "7585", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "An optional text to guide the model's style or continue a previous audio\nsegment. The [prompt](/docs/guides/speech-to-text#prompting) should match\nthe audio language.", "type": { - "$id": "7584", + "$id": "7586", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99214,13 +99240,13 @@ "isHttpMetadata": false }, { - "$id": "7585", + "$id": "7587", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "doc": "Configuration for turn detection. Can be set to `null` to turn off. Server\nVAD means that the model will detect the start and end of speech based on\naudio volume and respond at the end of user speech.", "type": { - "$id": "7586", + "$id": "7588", "kind": "model", "name": "RealtimeTranscriptionSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -99229,13 +99255,13 @@ "decorators": [], "properties": [ { - "$id": "7587", + "$id": "7589", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7588", + "$id": "7590", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99255,13 +99281,13 @@ "isHttpMetadata": false }, { - "$id": "7589", + "$id": "7591", "kind": "property", "name": "threshold", "serializedName": "threshold", "doc": "Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A\nhigher threshold will require louder audio to activate the model, and\nthus might perform better in noisy environments.", "type": { - "$id": "7590", + "$id": "7592", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -99281,13 +99307,13 @@ "isHttpMetadata": false }, { - "$id": "7591", + "$id": "7593", "kind": "property", "name": "prefix_padding_ms", "serializedName": "prefix_padding_ms", "doc": "Amount of audio to include before the VAD detected speech (in\nmilliseconds). Defaults to 300ms.", "type": { - "$id": "7592", + "$id": "7594", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99307,13 +99333,13 @@ "isHttpMetadata": false }, { - "$id": "7593", + "$id": "7595", "kind": "property", "name": "silence_duration_ms", "serializedName": "silence_duration_ms", "doc": "Duration of silence to detect speech stop (in milliseconds). Defaults\nto 500ms. With shorter values the model will respond more quickly,\nbut may jump in on short pauses from the user.", "type": { - "$id": "7594", + "$id": "7596", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99367,169 +99393,169 @@ } }, { - "$ref": "7115" + "$ref": "7117" }, { - "$ref": "7155" + "$ref": "7157" }, { - "$ref": "7169" + "$ref": "7171" }, { - "$ref": "7173" + "$ref": "7175" }, { - "$ref": "7197" + "$ref": "7199" }, { - "$ref": "7201" + "$ref": "7203" }, { - "$ref": "7205" + "$ref": "7207" }, { - "$ref": "7210" + "$ref": "7212" }, { - "$ref": "7217" + "$ref": "7219" }, { - "$ref": "7220" + "$ref": "7222" }, { - "$ref": "7227" + "$ref": "7229" }, { - "$ref": "7234" + "$ref": "7236" }, { - "$ref": "7239" + "$ref": "7241" }, { - "$ref": "7244" + "$ref": "7246" }, { - "$ref": "7249" + "$ref": "7251" }, { - "$ref": "7255" + "$ref": "7257" }, { - "$ref": "7261" + "$ref": "7263" }, { - "$ref": "7267" + "$ref": "7269" }, { - "$ref": "7276" + "$ref": "7278" }, { - "$ref": "7282" + "$ref": "7284" }, { - "$ref": "7294" + "$ref": "7296" }, { - "$ref": "7300" + "$ref": "7302" }, { - "$ref": "7308" + "$ref": "7310" }, { - "$ref": "7317" + "$ref": "7319" }, { - "$ref": "7326" + "$ref": "7328" }, { - "$ref": "7331" + "$ref": "7333" }, { - "$ref": "7335" + "$ref": "7337" }, { - "$ref": "7341" + "$ref": "7343" }, { - "$ref": "7345" + "$ref": "7347" }, { - "$ref": "7354" + "$ref": "7356" }, { - "$ref": "7362" + "$ref": "7364" }, { - "$ref": "7370" + "$ref": "7372" }, { - "$ref": "7386" + "$ref": "7388" }, { - "$ref": "7390" + "$ref": "7392" }, { - "$ref": "7398" + "$ref": "7400" }, { - "$ref": "7406" + "$ref": "7408" }, { - "$ref": "7418" + "$ref": "7420" }, { - "$ref": "7430" + "$ref": "7432" }, { - "$ref": "7443" + "$ref": "7445" }, { - "$ref": "7456" + "$ref": "7458" }, { - "$ref": "7469" + "$ref": "7471" }, { - "$ref": "7482" + "$ref": "7484" }, { - "$ref": "7495" + "$ref": "7497" }, { - "$ref": "7506" + "$ref": "7508" }, { - "$ref": "7519" + "$ref": "7521" }, { - "$ref": "7532" + "$ref": "7534" }, { - "$ref": "7537" + "$ref": "7539" }, { - "$ref": "7547" + "$ref": "7549" }, { - "$ref": "7558" + "$ref": "7560" }, { - "$ref": "7562" + "$ref": "7564" }, { - "$ref": "7566" + "$ref": "7568" }, { - "$ref": "7568" + "$ref": "7570" }, { - "$ref": "7579" + "$ref": "7581" }, { - "$ref": "7586" + "$ref": "7588" }, { - "$id": "7595", + "$id": "7597", "kind": "model", "name": "RealtimeSessionCreateRequest", "namespace": "OpenAI", @@ -99539,13 +99565,13 @@ "decorators": [], "properties": [ { - "$id": "7596", + "$id": "7598", "kind": "property", "name": "modalities", "serializedName": "modalities", "doc": "The set of modalities the model can respond with. To disable audio,\nset this to [\"text\"].", "type": { - "$ref": "6838" + "$ref": "6840" }, "optional": true, "readOnly": false, @@ -99561,7 +99587,7 @@ "isHttpMetadata": false }, { - "$id": "7597", + "$id": "7599", "kind": "property", "name": "model", "serializedName": "model", @@ -99583,13 +99609,13 @@ "isHttpMetadata": false }, { - "$id": "7598", + "$id": "7600", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The default system instructions (i.e. system message) prepended to model calls. This field allows the client to guide the model on desired responses. The model can be instructed on response content and format, (e.g. \"be extremely succinct\", \"act friendly\", \"here are examples of good responses\") and on audio behavior (e.g. \"talk quickly\", \"inject emotion into your voice\", \"laugh frequently\"). The instructions are not guaranteed to be followed by the model, but they provide guidance to the model on the desired behavior.\n\nNote that the server sets default instructions which will be used if this field is not set and are visible in the `session.created` event at the start of the session.", "type": { - "$id": "7599", + "$id": "7601", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99609,7 +99635,7 @@ "isHttpMetadata": false }, { - "$id": "7600", + "$id": "7602", "kind": "property", "name": "voice", "serializedName": "voice", @@ -99631,7 +99657,7 @@ "isHttpMetadata": false }, { - "$id": "7601", + "$id": "7603", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -99653,7 +99679,7 @@ "isHttpMetadata": false }, { - "$id": "7602", + "$id": "7604", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -99675,13 +99701,13 @@ "isHttpMetadata": false }, { - "$id": "7603", + "$id": "7605", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration for input audio transcription, defaults to off and can be set to `null` to turn off once on. Input audio transcription is not native to the model, since the model consumes audio directly. Transcription runs asynchronously through [the /audio/transcriptions endpoint](https://platform.openai.com/docs/api-reference/audio/createTranscription) and should be treated as guidance of input audio content rather than precisely what the model heard. The client can optionally set the language and prompt for transcription, these offer additional guidance to the transcription service.", "type": { - "$id": "7604", + "$id": "7606", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioTranscription", "namespace": "OpenAI", @@ -99690,13 +99716,13 @@ "decorators": [], "properties": [ { - "$id": "7605", + "$id": "7607", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription, current options are `gpt-4o-transcribe`, `gpt-4o-mini-transcribe`, and `whisper-1`.", "type": { - "$id": "7606", + "$id": "7608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99716,13 +99742,13 @@ "isHttpMetadata": false }, { - "$id": "7607", + "$id": "7609", "kind": "property", "name": "language", "serializedName": "language", "doc": "The language of the input audio. Supplying the input language in\n[ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) (e.g. `en`) format\nwill improve accuracy and latency.", "type": { - "$id": "7608", + "$id": "7610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99742,13 +99768,13 @@ "isHttpMetadata": false }, { - "$id": "7609", + "$id": "7611", "kind": "property", "name": "prompt", "serializedName": "prompt", "doc": "An optional text to guide the model's style or continue a previous audio\nsegment.\nFor `whisper-1`, the [prompt is a list of keywords](/docs/guides/speech-to-text#prompting).\nFor `gpt-4o-transcribe` models, the prompt is a free text string, for example \"expect words related to technology\".", "type": { - "$id": "7610", + "$id": "7612", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -99783,13 +99809,13 @@ "isHttpMetadata": false }, { - "$id": "7611", + "$id": "7613", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "doc": "Configuration for turn detection, ether Server VAD or Semantic VAD. This can be set to `null` to turn off, in which case the client must manually trigger model response.\nServer VAD means that the model will detect the start and end of speech based on audio volume and respond at the end of user speech.\nSemantic VAD is more advanced and uses a turn detection model (in conjuction with VAD) to semantically estimate whether the user has finished speaking, then dynamically sets a timeout based on this probability. For example, if user audio trails off with \"uhhm\", the model will score a low probability of turn end and wait longer for the user to continue speaking. This can be useful for more natural conversations, but may have a higher latency.", "type": { - "$id": "7612", + "$id": "7614", "kind": "model", "name": "RealtimeSessionCreateRequestTurnDetection", "namespace": "OpenAI", @@ -99798,7 +99824,7 @@ "decorators": [], "properties": [ { - "$id": "7613", + "$id": "7615", "kind": "property", "name": "type", "serializedName": "type", @@ -99820,7 +99846,7 @@ "isHttpMetadata": false }, { - "$id": "7614", + "$id": "7616", "kind": "property", "name": "eagerness", "serializedName": "eagerness", @@ -99842,13 +99868,13 @@ "isHttpMetadata": false }, { - "$id": "7615", + "$id": "7617", "kind": "property", "name": "threshold", "serializedName": "threshold", "doc": "Used only for `server_vad` mode. Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A\nhigher threshold will require louder audio to activate the model, and\nthus might perform better in noisy environments.", "type": { - "$id": "7616", + "$id": "7618", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -99868,13 +99894,13 @@ "isHttpMetadata": false }, { - "$id": "7617", + "$id": "7619", "kind": "property", "name": "prefix_padding_ms", "serializedName": "prefix_padding_ms", "doc": "Used only for `server_vad` mode. Amount of audio to include before the VAD detected speech (in\nmilliseconds). Defaults to 300ms.", "type": { - "$id": "7618", + "$id": "7620", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99894,13 +99920,13 @@ "isHttpMetadata": false }, { - "$id": "7619", + "$id": "7621", "kind": "property", "name": "silence_duration_ms", "serializedName": "silence_duration_ms", "doc": "Used only for `server_vad` mode. Duration of silence to detect speech stop (in milliseconds). Defaults\nto 500ms. With shorter values the model will respond more quickly,\nbut may jump in on short pauses from the user.", "type": { - "$id": "7620", + "$id": "7622", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -99920,13 +99946,13 @@ "isHttpMetadata": false }, { - "$id": "7621", + "$id": "7623", "kind": "property", "name": "create_response", "serializedName": "create_response", "doc": "Whether or not to automatically generate a response when a VAD stop event occurs.", "type": { - "$id": "7622", + "$id": "7624", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -99946,13 +99972,13 @@ "isHttpMetadata": false }, { - "$id": "7623", + "$id": "7625", "kind": "property", "name": "interrupt_response", "serializedName": "interrupt_response", "doc": "Whether or not to automatically interrupt any ongoing response with output to the default\nconversation (i.e. `conversation` of `auto`) when a VAD start event occurs.", "type": { - "$id": "7624", + "$id": "7626", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -99987,16 +100013,16 @@ "isHttpMetadata": false }, { - "$id": "7625", + "$id": "7627", "kind": "property", "name": "input_audio_noise_reduction", "serializedName": "input_audio_noise_reduction", "doc": "Configuration for input audio noise reduction. This can be set to `null` to turn off.\nNoise reduction filters audio added to the input audio buffer before it is sent to VAD and the model.\nFiltering the audio can improve VAD and turn detection accuracy (reducing false positives) and model performance by improving perception of the input audio.", "type": { - "$id": "7626", + "$id": "7628", "kind": "nullable", "type": { - "$id": "7627", + "$id": "7629", "kind": "model", "name": "RealtimeSessionCreateRequestInputAudioNoiseReduction1", "namespace": "OpenAI", @@ -100005,7 +100031,7 @@ "decorators": [], "properties": [ { - "$id": "7628", + "$id": "7630", "kind": "property", "name": "type", "serializedName": "type", @@ -100044,13 +100070,13 @@ "isHttpMetadata": false }, { - "$id": "7629", + "$id": "7631", "kind": "property", "name": "speed", "serializedName": "speed", "doc": "The speed of the model's spoken response. 1.0 is the default speed. 0.25 is\nthe minimum speed. 1.5 is the maximum speed. This value can only be changed\nin between model turns, not while a response is in progress.", "type": { - "$id": "7630", + "$id": "7632", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100070,13 +100096,13 @@ "isHttpMetadata": false }, { - "$id": "7631", + "$id": "7633", "kind": "property", "name": "tracing", "serializedName": "tracing", "doc": "Configuration options for tracing. Set to null to disable tracing. Once\ntracing is enabled for a session, the configuration cannot be modified.\n\n`auto` will create a trace for the session with default values for the\nworkflow name, group id, and metadata.", "type": { - "$id": "7632", + "$id": "7634", "kind": "union", "name": "RealtimeSessionCreateRequestTracing", "variantTypes": [ @@ -100084,7 +100110,7 @@ "$ref": "1735" }, { - "$id": "7633", + "$id": "7635", "kind": "model", "name": "RealtimeSessionCreateRequestTracing1", "namespace": "OpenAI", @@ -100093,13 +100119,13 @@ "decorators": [], "properties": [ { - "$id": "7634", + "$id": "7636", "kind": "property", "name": "workflow_name", "serializedName": "workflow_name", "doc": "The name of the workflow to attach to this trace. This is used to\nname the trace in the traces dashboard.", "type": { - "$id": "7635", + "$id": "7637", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100119,13 +100145,13 @@ "isHttpMetadata": false }, { - "$id": "7636", + "$id": "7638", "kind": "property", "name": "group_id", "serializedName": "group_id", "doc": "The group id to attach to this trace to enable filtering and\ngrouping in the traces dashboard.", "type": { - "$id": "7637", + "$id": "7639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100145,13 +100171,13 @@ "isHttpMetadata": false }, { - "$id": "7638", + "$id": "7640", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7639", + "$id": "7641", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -100190,13 +100216,13 @@ "isHttpMetadata": false }, { - "$id": "7640", + "$id": "7642", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6894" + "$ref": "6896" }, "optional": true, "readOnly": false, @@ -100212,13 +100238,13 @@ "isHttpMetadata": false }, { - "$id": "7641", + "$id": "7643", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "doc": "How the model chooses tools. Options are `auto`, `none`, `required`, or\nspecify a function.", "type": { - "$id": "7642", + "$id": "7644", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100238,13 +100264,13 @@ "isHttpMetadata": false }, { - "$id": "7643", + "$id": "7645", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. For audio models a temperature of 0.8 is highly recommended for best performance.", "type": { - "$id": "7644", + "$id": "7646", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100264,18 +100290,18 @@ "isHttpMetadata": false }, { - "$id": "7645", + "$id": "7647", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "doc": "Maximum number of output tokens for a single assistant response,\ninclusive of tool calls. Provide an integer between 1 and 4096 to\nlimit output tokens, or `inf` for the maximum available tokens for a\ngiven model. Defaults to `inf`.", "type": { - "$id": "7646", + "$id": "7648", "kind": "union", "name": "RealtimeSessionCreateRequestMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7647", + "$id": "7649", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100302,13 +100328,13 @@ "isHttpMetadata": false }, { - "$id": "7648", + "$id": "7650", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Configuration options for the generated client secret.", "type": { - "$id": "7649", + "$id": "7651", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecret", "namespace": "OpenAI", @@ -100317,13 +100343,13 @@ "decorators": [], "properties": [ { - "$id": "7650", + "$id": "7652", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Configuration for the ephemeral token expiration.", "type": { - "$id": "7651", + "$id": "7653", "kind": "model", "name": "RealtimeSessionCreateRequestClientSecretExpiresAt", "namespace": "OpenAI", @@ -100332,7 +100358,7 @@ "decorators": [], "properties": [ { - "$id": "7652", + "$id": "7654", "kind": "property", "name": "anchor", "serializedName": "anchor", @@ -100354,13 +100380,13 @@ "isHttpMetadata": false }, { - "$id": "7653", + "$id": "7655", "kind": "property", "name": "seconds", "serializedName": "seconds", "doc": "The number of seconds from the anchor point to the expiration. Select a value between `10` and `7200`.", "type": { - "$id": "7654", + "$id": "7656", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100412,25 +100438,25 @@ ] }, { - "$ref": "7604" + "$ref": "7606" }, { - "$ref": "7612" + "$ref": "7614" }, { - "$ref": "7627" + "$ref": "7629" }, { - "$ref": "7633" + "$ref": "7635" }, { - "$ref": "7649" + "$ref": "7651" }, { - "$ref": "7651" + "$ref": "7653" }, { - "$id": "7655", + "$id": "7657", "kind": "model", "name": "RealtimeSessionCreateResponse", "namespace": "OpenAI", @@ -100440,13 +100466,13 @@ "decorators": [], "properties": [ { - "$id": "7656", + "$id": "7658", "kind": "property", "name": "client_secret", "serializedName": "client_secret", "doc": "Ephemeral key returned by the API.", "type": { - "$id": "7657", + "$id": "7659", "kind": "model", "name": "RealtimeSessionCreateResponseClientSecret", "namespace": "OpenAI", @@ -100455,13 +100481,13 @@ "decorators": [], "properties": [ { - "$id": "7658", + "$id": "7660", "kind": "property", "name": "value", "serializedName": "value", "doc": "Ephemeral key usable in client environments to authenticate connections\nto the Realtime API. Use this in client-side environments rather than\na standard API token, which should only be used server-side.", "type": { - "$id": "7659", + "$id": "7661", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100481,18 +100507,18 @@ "isHttpMetadata": false }, { - "$id": "7660", + "$id": "7662", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "Timestamp for when the token expires. Currently, all tokens expire\nafter one minute.", "type": { - "$id": "7661", + "$id": "7663", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7662", + "$id": "7664", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100530,13 +100556,13 @@ "isHttpMetadata": false }, { - "$id": "7663", + "$id": "7665", "kind": "property", "name": "modalities", "serializedName": "modalities", "doc": "The set of modalities the model can respond with. To disable audio,\nset this to [\"text\"].", "type": { - "$ref": "6838" + "$ref": "6840" }, "optional": true, "readOnly": false, @@ -100552,13 +100578,13 @@ "isHttpMetadata": false }, { - "$id": "7664", + "$id": "7666", "kind": "property", "name": "instructions", "serializedName": "instructions", "doc": "The default system instructions (i.e. system message) prepended to model\ncalls. This field allows the client to guide the model on desired\nresponses. The model can be instructed on response content and format,\n(e.g. \"be extremely succinct\", \"act friendly\", \"here are examples of good\nresponses\") and on audio behavior (e.g. \"talk quickly\", \"inject emotion\ninto your voice\", \"laugh frequently\"). The instructions are not guaranteed\nto be followed by the model, but they provide guidance to the model on the\ndesired behavior.\n\nNote that the server sets default instructions which will be used if this\nfield is not set and are visible in the `session.created` event at the\nstart of the session.", "type": { - "$id": "7665", + "$id": "7667", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100578,7 +100604,7 @@ "isHttpMetadata": false }, { - "$id": "7666", + "$id": "7668", "kind": "property", "name": "voice", "serializedName": "voice", @@ -100600,7 +100626,7 @@ "isHttpMetadata": false }, { - "$id": "7667", + "$id": "7669", "kind": "property", "name": "input_audio_format", "serializedName": "input_audio_format", @@ -100622,7 +100648,7 @@ "isHttpMetadata": false }, { - "$id": "7668", + "$id": "7670", "kind": "property", "name": "output_audio_format", "serializedName": "output_audio_format", @@ -100644,13 +100670,13 @@ "isHttpMetadata": false }, { - "$id": "7669", + "$id": "7671", "kind": "property", "name": "input_audio_transcription", "serializedName": "input_audio_transcription", "doc": "Configuration for input audio transcription, defaults to off and can be\nset to `null` to turn off once on. Input audio transcription is not native\nto the model, since the model consumes audio directly. Transcription runs\nasynchronously through Whisper and should be treated as rough guidance\nrather than the representation understood by the model.", "type": { - "$id": "7670", + "$id": "7672", "kind": "model", "name": "RealtimeSessionCreateResponseInputAudioTranscription", "namespace": "OpenAI", @@ -100659,13 +100685,13 @@ "decorators": [], "properties": [ { - "$id": "7671", + "$id": "7673", "kind": "property", "name": "model", "serializedName": "model", "doc": "The model to use for transcription, `whisper-1` is the only currently\nsupported model.", "type": { - "$id": "7672", + "$id": "7674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100700,13 +100726,13 @@ "isHttpMetadata": false }, { - "$id": "7673", + "$id": "7675", "kind": "property", "name": "speed", "serializedName": "speed", "doc": "The speed of the model's spoken response. 1.0 is the default speed. 0.25 is\nthe minimum speed. 1.5 is the maximum speed. This value can only be changed\nin between model turns, not while a response is in progress.", "type": { - "$id": "7674", + "$id": "7676", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100726,13 +100752,13 @@ "isHttpMetadata": false }, { - "$id": "7675", + "$id": "7677", "kind": "property", "name": "tracing", "serializedName": "tracing", "doc": "Configuration options for tracing. Set to null to disable tracing. Once\ntracing is enabled for a session, the configuration cannot be modified.\n\n`auto` will create a trace for the session with default values for the\nworkflow name, group id, and metadata.", "type": { - "$id": "7676", + "$id": "7678", "kind": "union", "name": "RealtimeSessionCreateResponseTracing", "variantTypes": [ @@ -100740,7 +100766,7 @@ "$ref": "1739" }, { - "$id": "7677", + "$id": "7679", "kind": "model", "name": "RealtimeSessionCreateResponseTracing1", "namespace": "OpenAI", @@ -100749,13 +100775,13 @@ "decorators": [], "properties": [ { - "$id": "7678", + "$id": "7680", "kind": "property", "name": "workflow_name", "serializedName": "workflow_name", "doc": "The name of the workflow to attach to this trace. This is used to\nname the trace in the traces dashboard.", "type": { - "$id": "7679", + "$id": "7681", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100775,13 +100801,13 @@ "isHttpMetadata": false }, { - "$id": "7680", + "$id": "7682", "kind": "property", "name": "group_id", "serializedName": "group_id", "doc": "The group id to attach to this trace to enable filtering and\ngrouping in the traces dashboard.", "type": { - "$id": "7681", + "$id": "7683", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100801,13 +100827,13 @@ "isHttpMetadata": false }, { - "$id": "7682", + "$id": "7684", "kind": "property", "name": "metadata", "serializedName": "metadata", "doc": "The arbitrary metadata to attach to this trace to enable\nfiltering in the traces dashboard.", "type": { - "$id": "7683", + "$id": "7685", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -100846,13 +100872,13 @@ "isHttpMetadata": false }, { - "$id": "7684", + "$id": "7686", "kind": "property", "name": "turn_detection", "serializedName": "turn_detection", "doc": "Configuration for turn detection. Can be set to `null` to turn off. Server\nVAD means that the model will detect the start and end of speech based on\naudio volume and respond at the end of user speech.", "type": { - "$id": "7685", + "$id": "7687", "kind": "model", "name": "RealtimeSessionCreateResponseTurnDetection", "namespace": "OpenAI", @@ -100861,13 +100887,13 @@ "decorators": [], "properties": [ { - "$id": "7686", + "$id": "7688", "kind": "property", "name": "type", "serializedName": "type", "doc": "Type of turn detection, only `server_vad` is currently supported.", "type": { - "$id": "7687", + "$id": "7689", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -100887,13 +100913,13 @@ "isHttpMetadata": false }, { - "$id": "7688", + "$id": "7690", "kind": "property", "name": "threshold", "serializedName": "threshold", "doc": "Activation threshold for VAD (0.0 to 1.0), this defaults to 0.5. A\nhigher threshold will require louder audio to activate the model, and\nthus might perform better in noisy environments.", "type": { - "$id": "7689", + "$id": "7691", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -100913,13 +100939,13 @@ "isHttpMetadata": false }, { - "$id": "7690", + "$id": "7692", "kind": "property", "name": "prefix_padding_ms", "serializedName": "prefix_padding_ms", "doc": "Amount of audio to include before the VAD detected speech (in\nmilliseconds). Defaults to 300ms.", "type": { - "$id": "7691", + "$id": "7693", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100939,13 +100965,13 @@ "isHttpMetadata": false }, { - "$id": "7692", + "$id": "7694", "kind": "property", "name": "silence_duration_ms", "serializedName": "silence_duration_ms", "doc": "Duration of silence to detect speech stop (in milliseconds). Defaults\nto 500ms. With shorter values the model will respond more quickly,\nbut may jump in on short pauses from the user.", "type": { - "$id": "7693", + "$id": "7695", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -100980,13 +101006,13 @@ "isHttpMetadata": false }, { - "$id": "7694", + "$id": "7696", "kind": "property", "name": "tools", "serializedName": "tools", "doc": "Tools (functions) available to the model.", "type": { - "$ref": "6894" + "$ref": "6896" }, "optional": true, "readOnly": false, @@ -101002,13 +101028,13 @@ "isHttpMetadata": false }, { - "$id": "7695", + "$id": "7697", "kind": "property", "name": "tool_choice", "serializedName": "tool_choice", "doc": "How the model chooses tools. Options are `auto`, `none`, `required`, or\nspecify a function.", "type": { - "$id": "7696", + "$id": "7698", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101028,13 +101054,13 @@ "isHttpMetadata": false }, { - "$id": "7697", + "$id": "7699", "kind": "property", "name": "temperature", "serializedName": "temperature", "doc": "Sampling temperature for the model, limited to [0.6, 1.2]. Defaults to 0.8.", "type": { - "$id": "7698", + "$id": "7700", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -101054,18 +101080,18 @@ "isHttpMetadata": false }, { - "$id": "7699", + "$id": "7701", "kind": "property", "name": "max_response_output_tokens", "serializedName": "max_response_output_tokens", "doc": "Maximum number of output tokens for a single assistant response,\ninclusive of tool calls. Provide an integer between 1 and 4096 to\nlimit output tokens, or `inf` for the maximum available tokens for a\ngiven model. Defaults to `inf`.", "type": { - "$id": "7700", + "$id": "7702", "kind": "union", "name": "RealtimeSessionCreateResponseMaxResponseOutputTokens", "variantTypes": [ { - "$id": "7701", + "$id": "7703", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101094,19 +101120,19 @@ ] }, { - "$ref": "7657" + "$ref": "7659" }, { - "$ref": "7670" + "$ref": "7672" }, { - "$ref": "7677" + "$ref": "7679" }, { - "$ref": "7685" + "$ref": "7687" }, { - "$id": "7702", + "$id": "7704", "kind": "model", "name": "CreateUploadRequest", "namespace": "OpenAI", @@ -101115,13 +101141,13 @@ "decorators": [], "properties": [ { - "$id": "7703", + "$id": "7705", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to upload.", "type": { - "$id": "7704", + "$id": "7706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101141,7 +101167,7 @@ "isHttpMetadata": false }, { - "$id": "7705", + "$id": "7707", "kind": "property", "name": "purpose", "serializedName": "purpose", @@ -101163,13 +101189,13 @@ "isHttpMetadata": false }, { - "$id": "7706", + "$id": "7708", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The number of bytes in the file you are uploading.", "type": { - "$id": "7707", + "$id": "7709", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101189,13 +101215,13 @@ "isHttpMetadata": false }, { - "$id": "7708", + "$id": "7710", "kind": "property", "name": "mime_type", "serializedName": "mime_type", "doc": "The MIME type of the file.\n\nThis must fall within the supported MIME types for your file purpose. See the supported MIME types for assistants and vision.", "type": { - "$id": "7709", + "$id": "7711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101217,7 +101243,7 @@ ] }, { - "$id": "7710", + "$id": "7712", "kind": "model", "name": "Upload", "namespace": "OpenAI", @@ -101227,13 +101253,13 @@ "decorators": [], "properties": [ { - "$id": "7711", + "$id": "7713", "kind": "property", "name": "id", "serializedName": "id", "doc": "The Upload unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7712", + "$id": "7714", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101253,18 +101279,18 @@ "isHttpMetadata": false }, { - "$id": "7713", + "$id": "7715", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Upload was created.", "type": { - "$id": "7714", + "$id": "7716", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7715", + "$id": "7717", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101287,13 +101313,13 @@ "isHttpMetadata": false }, { - "$id": "7716", + "$id": "7718", "kind": "property", "name": "filename", "serializedName": "filename", "doc": "The name of the file to be uploaded.", "type": { - "$id": "7717", + "$id": "7719", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101313,13 +101339,13 @@ "isHttpMetadata": false }, { - "$id": "7718", + "$id": "7720", "kind": "property", "name": "bytes", "serializedName": "bytes", "doc": "The intended number of bytes to be uploaded.", "type": { - "$id": "7719", + "$id": "7721", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101339,13 +101365,13 @@ "isHttpMetadata": false }, { - "$id": "7720", + "$id": "7722", "kind": "property", "name": "purpose", "serializedName": "purpose", "doc": "The intended purpose of the file. [Please refer here](/docs/api-reference/files/object#files/object-purpose) for acceptable values.", "type": { - "$id": "7721", + "$id": "7723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101365,7 +101391,7 @@ "isHttpMetadata": false }, { - "$id": "7722", + "$id": "7724", "kind": "property", "name": "status", "serializedName": "status", @@ -101387,18 +101413,18 @@ "isHttpMetadata": false }, { - "$id": "7723", + "$id": "7725", "kind": "property", "name": "expires_at", "serializedName": "expires_at", "doc": "The Unix timestamp (in seconds) for when the Upload will expire.", "type": { - "$id": "7724", + "$id": "7726", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7725", + "$id": "7727", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101421,7 +101447,7 @@ "isHttpMetadata": false }, { - "$id": "7726", + "$id": "7728", "kind": "property", "name": "object", "serializedName": "object", @@ -101443,15 +101469,15 @@ "isHttpMetadata": false }, { - "$id": "7727", + "$id": "7729", "kind": "property", "name": "file", "serializedName": "file", "type": { - "$id": "7728", + "$id": "7730", "kind": "nullable", "type": { - "$ref": "3377" + "$ref": "3379" }, "namespace": "OpenAI" }, @@ -101471,7 +101497,7 @@ ] }, { - "$id": "7729", + "$id": "7731", "kind": "model", "name": "AddUploadPartRequest", "namespace": "OpenAI", @@ -101480,13 +101506,13 @@ "decorators": [], "properties": [ { - "$id": "7730", + "$id": "7732", "kind": "property", "name": "data", "serializedName": "data", "doc": "The chunk of bytes for this Part.", "type": { - "$id": "7731", + "$id": "7733", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -101515,7 +101541,7 @@ ] }, { - "$id": "7732", + "$id": "7734", "kind": "model", "name": "UploadPart", "namespace": "OpenAI", @@ -101525,13 +101551,13 @@ "decorators": [], "properties": [ { - "$id": "7733", + "$id": "7735", "kind": "property", "name": "id", "serializedName": "id", "doc": "The upload Part unique identifier, which can be referenced in API endpoints.", "type": { - "$id": "7734", + "$id": "7736", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101551,18 +101577,18 @@ "isHttpMetadata": false }, { - "$id": "7735", + "$id": "7737", "kind": "property", "name": "created_at", "serializedName": "created_at", "doc": "The Unix timestamp (in seconds) for when the Part was created.", "type": { - "$id": "7736", + "$id": "7738", "kind": "utcDateTime", "name": "utcDateTime", "encode": "unixTimestamp", "wireType": { - "$id": "7737", + "$id": "7739", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101585,13 +101611,13 @@ "isHttpMetadata": false }, { - "$id": "7738", + "$id": "7740", "kind": "property", "name": "upload_id", "serializedName": "upload_id", "doc": "The ID of the Upload object that this Part was added to.", "type": { - "$id": "7739", + "$id": "7741", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101611,7 +101637,7 @@ "isHttpMetadata": false }, { - "$id": "7740", + "$id": "7742", "kind": "property", "name": "object", "serializedName": "object", @@ -101635,7 +101661,7 @@ ] }, { - "$id": "7741", + "$id": "7743", "kind": "model", "name": "CompleteUploadRequest", "namespace": "OpenAI", @@ -101644,7 +101670,7 @@ "decorators": [], "properties": [ { - "$id": "7742", + "$id": "7744", "kind": "property", "name": "part_ids", "serializedName": "part_ids", @@ -101666,13 +101692,13 @@ "isHttpMetadata": false }, { - "$id": "7743", + "$id": "7745", "kind": "property", "name": "md5", "serializedName": "md5", "doc": "The optional md5 checksum for the file contents to verify if the bytes uploaded matches what you expect.", "type": { - "$id": "7744", + "$id": "7746", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101694,7 +101720,7 @@ ] }, { - "$id": "7745", + "$id": "7747", "kind": "model", "name": "BatchRequestInput", "namespace": "OpenAI", @@ -101705,12 +101731,12 @@ "decorators": [], "properties": [ { - "$id": "7746", + "$id": "7748", "kind": "property", "name": "custom_id", "doc": "A developer-provided per-request id that will be used to match outputs to inputs. Must be unique for each request in a batch.", "type": { - "$id": "7747", + "$id": "7749", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101726,7 +101752,7 @@ "isHttpMetadata": false }, { - "$id": "7748", + "$id": "7750", "kind": "property", "name": "method", "doc": "The HTTP method to be used for the request. Currently only `POST` is supported.", @@ -101743,12 +101769,12 @@ "isHttpMetadata": false }, { - "$id": "7749", + "$id": "7751", "kind": "property", "name": "url", "doc": "The OpenAI API relative URL to be used for the request. Currently `/v1/chat/completions`, `/v1/embeddings`, and `/v1/completions` are supported.", "type": { - "$id": "7750", + "$id": "7752", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -101766,7 +101792,7 @@ ] }, { - "$id": "7751", + "$id": "7753", "kind": "model", "name": "BatchRequestOutput", "namespace": "OpenAI", @@ -101777,11 +101803,11 @@ "decorators": [], "properties": [ { - "$id": "7752", + "$id": "7754", "kind": "property", "name": "id", "type": { - "$id": "7753", + "$id": "7755", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101797,12 +101823,12 @@ "isHttpMetadata": false }, { - "$id": "7754", + "$id": "7756", "kind": "property", "name": "custom_id", "doc": "A developer-provided per-request id that will be used to match outputs to inputs.", "type": { - "$id": "7755", + "$id": "7757", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101818,14 +101844,14 @@ "isHttpMetadata": false }, { - "$id": "7756", + "$id": "7758", "kind": "property", "name": "response", "type": { - "$id": "7757", + "$id": "7759", "kind": "nullable", "type": { - "$id": "7758", + "$id": "7760", "kind": "model", "name": "BatchRequestOutputResponse1", "namespace": "OpenAI", @@ -101834,12 +101860,12 @@ "decorators": [], "properties": [ { - "$id": "7759", + "$id": "7761", "kind": "property", "name": "status_code", "doc": "The HTTP status code of the response", "type": { - "$id": "7760", + "$id": "7762", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -101855,12 +101881,12 @@ "isHttpMetadata": false }, { - "$id": "7761", + "$id": "7763", "kind": "property", "name": "request_id", "doc": "An unique identifier for the OpenAI API request. Please include this request ID when contacting support.", "type": { - "$id": "7762", + "$id": "7764", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101876,12 +101902,12 @@ "isHttpMetadata": false }, { - "$id": "7763", + "$id": "7765", "kind": "property", "name": "body", "doc": "The JSON body of the response", "type": { - "$ref": "3877" + "$ref": "3879" }, "optional": true, "readOnly": false, @@ -101906,15 +101932,15 @@ "isHttpMetadata": false }, { - "$id": "7764", + "$id": "7766", "kind": "property", "name": "error", "doc": "For requests that failed with a non-HTTP error, this will contain more information on the cause of the failure.", "type": { - "$id": "7765", + "$id": "7767", "kind": "nullable", "type": { - "$id": "7766", + "$id": "7768", "kind": "model", "name": "BatchRequestOutputError1", "namespace": "OpenAI", @@ -101923,12 +101949,12 @@ "decorators": [], "properties": [ { - "$id": "7767", + "$id": "7769", "kind": "property", "name": "code", "doc": "A machine-readable error code.", "type": { - "$id": "7768", + "$id": "7770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101944,12 +101970,12 @@ "isHttpMetadata": false }, { - "$id": "7769", + "$id": "7771", "kind": "property", "name": "message", "doc": "A human-readable error message.", "type": { - "$id": "7770", + "$id": "7772", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -101980,13 +102006,13 @@ ] }, { - "$ref": "7758" + "$ref": "7760" }, { - "$ref": "7766" + "$ref": "7768" }, { - "$id": "7771", + "$id": "7773", "kind": "model", "name": "ChatCompletionFunctionChoice", "namespace": "OpenAI", @@ -102002,7 +102028,7 @@ "properties": [] }, { - "$id": "7772", + "$id": "7774", "kind": "model", "name": "ChatCompletionToolChoice", "namespace": "OpenAI", @@ -102018,7 +102044,7 @@ "properties": [] }, { - "$id": "7773", + "$id": "7775", "kind": "model", "name": "FineTuneChatCompletionRequestAssistantMessage", "namespace": "OpenAI", @@ -102027,7 +102053,7 @@ "decorators": [], "properties": [ { - "$id": "7774", + "$id": "7776", "kind": "property", "name": "weight", "doc": "Controls whether the assistant message is trained against (0 or 1)", @@ -102044,7 +102070,7 @@ "isHttpMetadata": false }, { - "$id": "7775", + "$id": "7777", "kind": "property", "name": "content", "doc": "The contents of the assistant message. Required unless `tool_calls` or `function_call` is specified.", @@ -102061,7 +102087,7 @@ "isHttpMetadata": false }, { - "$id": "7776", + "$id": "7778", "kind": "property", "name": "refusal", "doc": "The refusal message by the assistant.", @@ -102078,12 +102104,12 @@ "isHttpMetadata": false }, { - "$id": "7777", + "$id": "7779", "kind": "property", "name": "role", "doc": "The role of the messages author, in this case `assistant`.", "type": { - "$id": "7778", + "$id": "7780", "kind": "enumvalue", "name": "assistant", "value": "assistant", @@ -102105,12 +102131,12 @@ "isHttpMetadata": false }, { - "$id": "7779", + "$id": "7781", "kind": "property", "name": "name", "doc": "An optional name for the participant. Provides the model information to differentiate between participants of the same role.", "type": { - "$id": "7780", + "$id": "7782", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102126,7 +102152,7 @@ "isHttpMetadata": false }, { - "$id": "7781", + "$id": "7783", "kind": "property", "name": "audio", "doc": "Data about a previous audio response from the model.\n[Learn more](/docs/guides/audio).", @@ -102143,7 +102169,7 @@ "isHttpMetadata": false }, { - "$id": "7782", + "$id": "7784", "kind": "property", "name": "tool_calls", "type": { @@ -102159,7 +102185,7 @@ "isHttpMetadata": false }, { - "$id": "7783", + "$id": "7785", "kind": "property", "name": "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.", @@ -102178,7 +102204,7 @@ ] }, { - "$id": "7784", + "$id": "7786", "kind": "model", "name": "FineTuneChatRequestInput", "namespace": "OpenAI", @@ -102189,15 +102215,15 @@ "decorators": [], "properties": [ { - "$id": "7785", + "$id": "7787", "kind": "property", "name": "messages", "type": { - "$id": "7786", + "$id": "7788", "kind": "array", "name": "Array46", "valueType": { - "$id": "7787", + "$id": "7789", "kind": "union", "name": "FineTuneChatRequestInputMessage", "variantTypes": [ @@ -102208,7 +102234,7 @@ "$ref": "2992" }, { - "$ref": "7773" + "$ref": "7775" }, { "$ref": "3029" @@ -102233,7 +102259,7 @@ "isHttpMetadata": false }, { - "$id": "7788", + "$id": "7790", "kind": "property", "name": "tools", "doc": "A list of tools the model may generate JSON inputs for.", @@ -102250,16 +102276,16 @@ "isHttpMetadata": false }, { - "$id": "7789", + "$id": "7791", "kind": "property", "name": "parallel_tool_calls", "type": { - "$id": "7790", + "$id": "7792", "kind": "boolean", "name": "ParallelToolCalls", "crossLanguageDefinitionId": "OpenAI.ParallelToolCalls", "baseType": { - "$id": "7791", + "$id": "7793", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -102277,7 +102303,7 @@ "isHttpMetadata": false }, { - "$id": "7792", + "$id": "7794", "kind": "property", "name": "functions", "doc": "A list of functions the model may generate JSON inputs for.", @@ -102296,7 +102322,7 @@ ] }, { - "$id": "7793", + "$id": "7795", "kind": "model", "name": "FineTuningJobsPageToken", "namespace": "OpenAI", @@ -102306,11 +102332,11 @@ "decorators": [], "properties": [ { - "$id": "7794", + "$id": "7796", "kind": "property", "name": "limit", "type": { - "$id": "7795", + "$id": "7797", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102326,11 +102352,11 @@ "isHttpMetadata": false }, { - "$id": "7796", + "$id": "7798", "kind": "property", "name": "after", "type": { - "$id": "7797", + "$id": "7799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102348,7 +102374,7 @@ ] }, { - "$id": "7798", + "$id": "7800", "kind": "model", "name": "MessageDeltaContent", "namespace": "OpenAI", @@ -102358,7 +102384,7 @@ "doc": "Represents a single piece of incremental content in an Assistants API streaming response.", "decorators": [], "discriminatorProperty": { - "$id": "7799", + "$id": "7801", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -102376,12 +102402,12 @@ }, "properties": [ { - "$ref": "7799" + "$ref": "7801" } ], "discriminatedSubtypes": { "image_file": { - "$id": "7800", + "$id": "7802", "kind": "model", "name": "MessageDeltaContentImageFileObject", "namespace": "OpenAI", @@ -102392,16 +102418,16 @@ "discriminatorValue": "image_file", "decorators": [], "baseModel": { - "$ref": "7798" + "$ref": "7800" }, "properties": [ { - "$id": "7801", + "$id": "7803", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7802", + "$id": "7804", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102417,12 +102443,12 @@ "isHttpMetadata": false }, { - "$id": "7803", + "$id": "7805", "kind": "property", "name": "type", "doc": "Always `image_file`.", "type": { - "$ref": "5834" + "$ref": "5836" }, "optional": false, "readOnly": false, @@ -102434,11 +102460,11 @@ "isHttpMetadata": false }, { - "$id": "7804", + "$id": "7806", "kind": "property", "name": "image_file", "type": { - "$id": "7805", + "$id": "7807", "kind": "model", "name": "MessageDeltaContentImageFileObjectImageFile", "namespace": "OpenAI", @@ -102447,12 +102473,12 @@ "decorators": [], "properties": [ { - "$id": "7806", + "$id": "7808", "kind": "property", "name": "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": "7807", + "$id": "7809", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102468,7 +102494,7 @@ "isHttpMetadata": false }, { - "$id": "7808", + "$id": "7810", "kind": "property", "name": "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`.", @@ -102498,7 +102524,7 @@ ] }, "image_url": { - "$id": "7809", + "$id": "7811", "kind": "model", "name": "MessageDeltaContentImageUrlObject", "namespace": "OpenAI", @@ -102509,16 +102535,16 @@ "discriminatorValue": "image_url", "decorators": [], "baseModel": { - "$ref": "7798" + "$ref": "7800" }, "properties": [ { - "$id": "7810", + "$id": "7812", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7811", + "$id": "7813", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102534,12 +102560,12 @@ "isHttpMetadata": false }, { - "$id": "7812", + "$id": "7814", "kind": "property", "name": "type", "doc": "Always `image_url`.", "type": { - "$ref": "5896" + "$ref": "5898" }, "optional": false, "readOnly": false, @@ -102551,11 +102577,11 @@ "isHttpMetadata": false }, { - "$id": "7813", + "$id": "7815", "kind": "property", "name": "image_url", "type": { - "$id": "7814", + "$id": "7816", "kind": "model", "name": "MessageDeltaContentImageUrlObjectImageUrl", "namespace": "OpenAI", @@ -102564,12 +102590,12 @@ "decorators": [], "properties": [ { - "$id": "7815", + "$id": "7817", "kind": "property", "name": "url", "doc": "The URL of the image, must be a supported image types: jpeg, jpg, png, gif, webp.", "type": { - "$id": "7816", + "$id": "7818", "kind": "url", "name": "url", "crossLanguageDefinitionId": "TypeSpec.url", @@ -102585,7 +102611,7 @@ "isHttpMetadata": false }, { - "$id": "7817", + "$id": "7819", "kind": "property", "name": "detail", "doc": "Specifies the detail level of the image. `low` uses fewer tokens, you can opt in to high resolution using `high`.", @@ -102615,7 +102641,7 @@ ] }, "text": { - "$id": "7818", + "$id": "7820", "kind": "model", "name": "MessageDeltaContentTextObject", "namespace": "OpenAI", @@ -102626,16 +102652,16 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "7798" + "$ref": "7800" }, "properties": [ { - "$id": "7819", + "$id": "7821", "kind": "property", "name": "index", "doc": "The index of the content part in the message.", "type": { - "$id": "7820", + "$id": "7822", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102651,12 +102677,12 @@ "isHttpMetadata": false }, { - "$id": "7821", + "$id": "7823", "kind": "property", "name": "type", "doc": "Always `text`.", "type": { - "$ref": "5848" + "$ref": "5850" }, "optional": false, "readOnly": false, @@ -102668,11 +102694,11 @@ "isHttpMetadata": false }, { - "$id": "7822", + "$id": "7824", "kind": "property", "name": "text", "type": { - "$id": "7823", + "$id": "7825", "kind": "model", "name": "MessageDeltaContentTextObjectText", "namespace": "OpenAI", @@ -102681,12 +102707,12 @@ "decorators": [], "properties": [ { - "$id": "7824", + "$id": "7826", "kind": "property", "name": "value", "doc": "The data that makes up the text.", "type": { - "$id": "7825", + "$id": "7827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102702,15 +102728,15 @@ "isHttpMetadata": false }, { - "$id": "7826", + "$id": "7828", "kind": "property", "name": "annotations", "type": { - "$id": "7827", + "$id": "7829", "kind": "array", "name": "ArrayMessageDeltaTextContentAnnotation", "valueType": { - "$id": "7828", + "$id": "7830", "kind": "model", "name": "MessageDeltaTextContentAnnotation", "namespace": "OpenAI", @@ -102719,7 +102745,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7829", + "$id": "7831", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the content item.", @@ -102737,12 +102763,12 @@ }, "properties": [ { - "$ref": "7829" + "$ref": "7831" } ], "discriminatedSubtypes": { "file_citation": { - "$id": "7830", + "$id": "7832", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObject", "namespace": "OpenAI", @@ -102753,16 +102779,16 @@ "discriminatorValue": "file_citation", "decorators": [], "baseModel": { - "$ref": "7828" + "$ref": "7830" }, "properties": [ { - "$id": "7831", + "$id": "7833", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7832", + "$id": "7834", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102778,12 +102804,12 @@ "isHttpMetadata": false }, { - "$id": "7833", + "$id": "7835", "kind": "property", "name": "type", "doc": "Always `file_citation`.", "type": { - "$ref": "5861" + "$ref": "5863" }, "optional": false, "readOnly": false, @@ -102795,12 +102821,12 @@ "isHttpMetadata": false }, { - "$id": "7834", + "$id": "7836", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7835", + "$id": "7837", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102816,11 +102842,11 @@ "isHttpMetadata": false }, { - "$id": "7836", + "$id": "7838", "kind": "property", "name": "file_citation", "type": { - "$id": "7837", + "$id": "7839", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation", "namespace": "OpenAI", @@ -102829,12 +102855,12 @@ "decorators": [], "properties": [ { - "$id": "7838", + "$id": "7840", "kind": "property", "name": "file_id", "doc": "The ID of the specific File the citation is from.", "type": { - "$id": "7839", + "$id": "7841", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102850,12 +102876,12 @@ "isHttpMetadata": false }, { - "$id": "7840", + "$id": "7842", "kind": "property", "name": "quote", "doc": "The specific quote in the file.", "type": { - "$id": "7841", + "$id": "7843", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102882,11 +102908,11 @@ "isHttpMetadata": false }, { - "$id": "7842", + "$id": "7844", "kind": "property", "name": "start_index", "type": { - "$id": "7843", + "$id": "7845", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102902,11 +102928,11 @@ "isHttpMetadata": false }, { - "$id": "7844", + "$id": "7846", "kind": "property", "name": "end_index", "type": { - "$id": "7845", + "$id": "7847", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102924,7 +102950,7 @@ ] }, "file_path": { - "$id": "7846", + "$id": "7848", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObject", "namespace": "OpenAI", @@ -102935,16 +102961,16 @@ "discriminatorValue": "file_path", "decorators": [], "baseModel": { - "$ref": "7828" + "$ref": "7830" }, "properties": [ { - "$id": "7847", + "$id": "7849", "kind": "property", "name": "index", "doc": "The index of the annotation in the text content part.", "type": { - "$id": "7848", + "$id": "7850", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -102960,12 +102986,12 @@ "isHttpMetadata": false }, { - "$id": "7849", + "$id": "7851", "kind": "property", "name": "type", "doc": "Always `file_path`.", "type": { - "$ref": "5878" + "$ref": "5880" }, "optional": false, "readOnly": false, @@ -102977,12 +103003,12 @@ "isHttpMetadata": false }, { - "$id": "7850", + "$id": "7852", "kind": "property", "name": "text", "doc": "The text in the message content that needs to be replaced.", "type": { - "$id": "7851", + "$id": "7853", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -102998,11 +103024,11 @@ "isHttpMetadata": false }, { - "$id": "7852", + "$id": "7854", "kind": "property", "name": "file_path", "type": { - "$id": "7853", + "$id": "7855", "kind": "model", "name": "MessageDeltaContentTextAnnotationsFilePathObjectFilePath", "namespace": "OpenAI", @@ -103011,12 +103037,12 @@ "decorators": [], "properties": [ { - "$id": "7854", + "$id": "7856", "kind": "property", "name": "file_id", "doc": "The ID of the file that was generated.", "type": { - "$id": "7855", + "$id": "7857", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103043,11 +103069,11 @@ "isHttpMetadata": false }, { - "$id": "7856", + "$id": "7858", "kind": "property", "name": "start_index", "type": { - "$id": "7857", + "$id": "7859", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103063,11 +103089,11 @@ "isHttpMetadata": false }, { - "$id": "7858", + "$id": "7860", "kind": "property", "name": "end_index", "type": { - "$id": "7859", + "$id": "7861", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103112,7 +103138,7 @@ ] }, "refusal": { - "$id": "7860", + "$id": "7862", "kind": "model", "name": "MessageDeltaContentRefusalObject", "namespace": "OpenAI", @@ -103122,16 +103148,16 @@ "discriminatorValue": "refusal", "decorators": [], "baseModel": { - "$ref": "7798" + "$ref": "7800" }, "properties": [ { - "$id": "7861", + "$id": "7863", "kind": "property", "name": "index", "doc": "The index of the refusal part in the message.", "type": { - "$id": "7862", + "$id": "7864", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103147,12 +103173,12 @@ "isHttpMetadata": false }, { - "$id": "7863", + "$id": "7865", "kind": "property", "name": "type", "doc": "Always `refusal`.", "type": { - "$ref": "5891" + "$ref": "5893" }, "optional": false, "readOnly": false, @@ -103164,11 +103190,11 @@ "isHttpMetadata": false }, { - "$id": "7864", + "$id": "7866", "kind": "property", "name": "refusal", "type": { - "$id": "7865", + "$id": "7867", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103188,43 +103214,43 @@ } }, { - "$ref": "7800" + "$ref": "7802" }, { - "$ref": "7805" + "$ref": "7807" }, { - "$ref": "7809" + "$ref": "7811" }, { - "$ref": "7814" + "$ref": "7816" }, { - "$ref": "7818" + "$ref": "7820" }, { - "$ref": "7823" + "$ref": "7825" }, { - "$ref": "7828" + "$ref": "7830" }, { - "$ref": "7830" + "$ref": "7832" }, { - "$ref": "7837" + "$ref": "7839" }, { - "$ref": "7846" + "$ref": "7848" }, { - "$ref": "7853" + "$ref": "7855" }, { - "$ref": "7860" + "$ref": "7862" }, { - "$id": "7866", + "$id": "7868", "kind": "model", "name": "MessageDeltaObject", "namespace": "OpenAI", @@ -103235,12 +103261,12 @@ "decorators": [], "properties": [ { - "$id": "7867", + "$id": "7869", "kind": "property", "name": "id", "doc": "The identifier of the message, which can be referenced in API endpoints.", "type": { - "$id": "7868", + "$id": "7870", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103256,7 +103282,7 @@ "isHttpMetadata": false }, { - "$id": "7869", + "$id": "7871", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.message.delta`.", @@ -103273,12 +103299,12 @@ "isHttpMetadata": false }, { - "$id": "7870", + "$id": "7872", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the Message.", "type": { - "$id": "7871", + "$id": "7873", "kind": "model", "name": "MessageDeltaObjectDelta", "namespace": "OpenAI", @@ -103287,7 +103313,7 @@ "decorators": [], "properties": [ { - "$id": "7872", + "$id": "7874", "kind": "property", "name": "role", "doc": "The entity that produced the message. One of `user` or `assistant`.", @@ -103304,16 +103330,16 @@ "isHttpMetadata": false }, { - "$id": "7873", + "$id": "7875", "kind": "property", "name": "content", "doc": "The content of the message in array of text and/or images.", "type": { - "$id": "7874", + "$id": "7876", "kind": "array", "name": "ArrayMessageDeltaContent", "valueType": { - "$ref": "7798" + "$ref": "7800" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -103341,10 +103367,10 @@ ] }, { - "$ref": "7871" + "$ref": "7873" }, { - "$id": "7875", + "$id": "7877", "kind": "model", "name": "RunStepDeltaObject", "namespace": "OpenAI", @@ -103355,12 +103381,12 @@ "decorators": [], "properties": [ { - "$id": "7876", + "$id": "7878", "kind": "property", "name": "id", "doc": "The identifier of the run step, which can be referenced in API endpoints.", "type": { - "$id": "7877", + "$id": "7879", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103376,7 +103402,7 @@ "isHttpMetadata": false }, { - "$id": "7878", + "$id": "7880", "kind": "property", "name": "object", "doc": "The object type, which is always `thread.run.step.delta`.", @@ -103393,12 +103419,12 @@ "isHttpMetadata": false }, { - "$id": "7879", + "$id": "7881", "kind": "property", "name": "delta", "doc": "The delta containing the fields that have changed on the run step.", "type": { - "$id": "7880", + "$id": "7882", "kind": "model", "name": "RunStepDeltaObjectDelta", "namespace": "OpenAI", @@ -103407,12 +103433,12 @@ "decorators": [], "properties": [ { - "$id": "7881", + "$id": "7883", "kind": "property", "name": "step_details", "doc": "The details of the run step.", "type": { - "$id": "7882", + "$id": "7884", "kind": "model", "name": "RunStepDeltaStepDetails", "namespace": "OpenAI", @@ -103420,7 +103446,7 @@ "usage": "Output", "decorators": [], "discriminatorProperty": { - "$id": "7883", + "$id": "7885", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -103438,12 +103464,12 @@ }, "properties": [ { - "$ref": "7883" + "$ref": "7885" } ], "discriminatedSubtypes": { "message_creation": { - "$id": "7884", + "$id": "7886", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObject", "namespace": "OpenAI", @@ -103454,16 +103480,16 @@ "discriminatorValue": "message_creation", "decorators": [], "baseModel": { - "$ref": "7882" + "$ref": "7884" }, "properties": [ { - "$id": "7885", + "$id": "7887", "kind": "property", "name": "type", "doc": "Always `message_creation`.", "type": { - "$ref": "6340" + "$ref": "6342" }, "optional": false, "readOnly": false, @@ -103475,11 +103501,11 @@ "isHttpMetadata": false }, { - "$id": "7886", + "$id": "7888", "kind": "property", "name": "message_creation", "type": { - "$id": "7887", + "$id": "7889", "kind": "model", "name": "RunStepDeltaStepDetailsMessageCreationObjectMessageCreation", "namespace": "OpenAI", @@ -103488,12 +103514,12 @@ "decorators": [], "properties": [ { - "$id": "7888", + "$id": "7890", "kind": "property", "name": "message_id", "doc": "The ID of the message that was created by this run step.", "type": { - "$id": "7889", + "$id": "7891", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103522,7 +103548,7 @@ ] }, "tool_calls": { - "$id": "7890", + "$id": "7892", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObject", "namespace": "OpenAI", @@ -103533,16 +103559,16 @@ "discriminatorValue": "tool_calls", "decorators": [], "baseModel": { - "$ref": "7882" + "$ref": "7884" }, "properties": [ { - "$id": "7891", + "$id": "7893", "kind": "property", "name": "type", "doc": "Always `tool_calls`.", "type": { - "$ref": "6351" + "$ref": "6353" }, "optional": false, "readOnly": false, @@ -103554,16 +103580,16 @@ "isHttpMetadata": false }, { - "$id": "7892", + "$id": "7894", "kind": "property", "name": "tool_calls", "doc": "An array of tool calls the run step was involved in. These can be associated with one of three types of tools: `code_interpreter`, `file_search`, or `function`.", "type": { - "$id": "7893", + "$id": "7895", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "valueType": { - "$id": "7894", + "$id": "7896", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsObjectToolCallsObject", "namespace": "OpenAI", @@ -103572,7 +103598,7 @@ "doc": "Abstractly represents a run step tool call details inner object.", "decorators": [], "discriminatorProperty": { - "$id": "7895", + "$id": "7897", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -103590,12 +103616,12 @@ }, "properties": [ { - "$ref": "7895" + "$ref": "7897" } ], "discriminatedSubtypes": { "code_interpreter": { - "$id": "7896", + "$id": "7898", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObject", "namespace": "OpenAI", @@ -103606,16 +103632,16 @@ "discriminatorValue": "code_interpreter", "decorators": [], "baseModel": { - "$ref": "7894" + "$ref": "7896" }, "properties": [ { - "$id": "7897", + "$id": "7899", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "7898", + "$id": "7900", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103631,12 +103657,12 @@ "isHttpMetadata": false }, { - "$id": "7899", + "$id": "7901", "kind": "property", "name": "id", "doc": "The ID of the tool call.", "type": { - "$id": "7900", + "$id": "7902", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103652,12 +103678,12 @@ "isHttpMetadata": false }, { - "$id": "7901", + "$id": "7903", "kind": "property", "name": "type", "doc": "The type of tool call. This is always going to be `code_interpreter` for this type of tool call.", "type": { - "$ref": "6360" + "$ref": "6362" }, "optional": false, "readOnly": false, @@ -103669,12 +103695,12 @@ "isHttpMetadata": false }, { - "$id": "7902", + "$id": "7904", "kind": "property", "name": "code_interpreter", "doc": "The Code Interpreter tool call definition.", "type": { - "$id": "7903", + "$id": "7905", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreter", "namespace": "OpenAI", @@ -103683,12 +103709,12 @@ "decorators": [], "properties": [ { - "$id": "7904", + "$id": "7906", "kind": "property", "name": "input", "doc": "The input to the Code Interpreter tool call.", "type": { - "$id": "7905", + "$id": "7907", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103704,16 +103730,16 @@ "isHttpMetadata": false }, { - "$id": "7906", + "$id": "7908", "kind": "property", "name": "outputs", "doc": "The outputs from the Code Interpreter tool call. Code Interpreter can output one or more items, including text (`logs`) or images (`image`). Each of these are represented by a different object type.", "type": { - "$id": "7907", + "$id": "7909", "kind": "array", "name": "ArrayRunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "valueType": { - "$id": "7908", + "$id": "7910", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeObjectCodeInterpreterOutputsObject", "namespace": "OpenAI", @@ -103722,7 +103748,7 @@ "doc": "Abstractly represents a run step tool call details code interpreter output.", "decorators": [], "discriminatorProperty": { - "$id": "7909", + "$id": "7911", "kind": "property", "name": "type", "doc": "The discriminated type identifier for the details object.", @@ -103740,12 +103766,12 @@ }, "properties": [ { - "$ref": "7909" + "$ref": "7911" } ], "discriminatedSubtypes": { "logs": { - "$id": "7910", + "$id": "7912", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputLogsObject", "namespace": "OpenAI", @@ -103756,16 +103782,16 @@ "discriminatorValue": "logs", "decorators": [], "baseModel": { - "$ref": "7908" + "$ref": "7910" }, "properties": [ { - "$id": "7911", + "$id": "7913", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "7912", + "$id": "7914", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103781,12 +103807,12 @@ "isHttpMetadata": false }, { - "$id": "7913", + "$id": "7915", "kind": "property", "name": "type", "doc": "Always `logs`.", "type": { - "$ref": "6376" + "$ref": "6378" }, "optional": false, "readOnly": false, @@ -103798,12 +103824,12 @@ "isHttpMetadata": false }, { - "$id": "7914", + "$id": "7916", "kind": "property", "name": "logs", "doc": "The text output from the Code Interpreter tool call.", "type": { - "$id": "7915", + "$id": "7917", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103821,7 +103847,7 @@ ] }, "image": { - "$id": "7916", + "$id": "7918", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObject", "namespace": "OpenAI", @@ -103831,16 +103857,16 @@ "discriminatorValue": "image", "decorators": [], "baseModel": { - "$ref": "7908" + "$ref": "7910" }, "properties": [ { - "$id": "7917", + "$id": "7919", "kind": "property", "name": "index", "doc": "The index of the output in the outputs array.", "type": { - "$id": "7918", + "$id": "7920", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103856,12 +103882,12 @@ "isHttpMetadata": false }, { - "$id": "7919", + "$id": "7921", "kind": "property", "name": "type", "doc": "Always `image`.", "type": { - "$ref": "6385" + "$ref": "6387" }, "optional": false, "readOnly": false, @@ -103873,11 +103899,11 @@ "isHttpMetadata": false }, { - "$id": "7920", + "$id": "7922", "kind": "property", "name": "image", "type": { - "$id": "7921", + "$id": "7923", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage", "namespace": "OpenAI", @@ -103886,12 +103912,12 @@ "decorators": [], "properties": [ { - "$id": "7922", + "$id": "7924", "kind": "property", "name": "file_id", "doc": "The [file](/docs/api-reference/files) ID of the image.", "type": { - "$id": "7923", + "$id": "7925", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -103947,7 +103973,7 @@ ] }, "file_search": { - "$id": "7924", + "$id": "7926", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObject", "namespace": "OpenAI", @@ -103957,16 +103983,16 @@ "discriminatorValue": "file_search", "decorators": [], "baseModel": { - "$ref": "7894" + "$ref": "7896" }, "properties": [ { - "$id": "7925", + "$id": "7927", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "7926", + "$id": "7928", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -103982,12 +104008,12 @@ "isHttpMetadata": false }, { - "$id": "7927", + "$id": "7929", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "7928", + "$id": "7930", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104003,12 +104029,12 @@ "isHttpMetadata": false }, { - "$id": "7929", + "$id": "7931", "kind": "property", "name": "type", "doc": "The type of tool call. This is always going to be `file_search` for this type of tool call.", "type": { - "$ref": "6392" + "$ref": "6394" }, "optional": false, "readOnly": false, @@ -104020,12 +104046,12 @@ "isHttpMetadata": false }, { - "$id": "7930", + "$id": "7932", "kind": "property", "name": "file_search", "doc": "For now, this is always going to be an empty object.", "type": { - "$id": "7931", + "$id": "7933", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFileSearchObjectFileSearch", "namespace": "OpenAI", @@ -104034,11 +104060,11 @@ "decorators": [], "properties": [ { - "$id": "7932", + "$id": "7934", "kind": "property", "name": "ranking_options", "type": { - "$ref": "6396" + "$ref": "6398" }, "optional": true, "readOnly": false, @@ -104050,12 +104076,12 @@ "isHttpMetadata": false }, { - "$id": "7933", + "$id": "7935", "kind": "property", "name": "results", "doc": "The results of the file search.", "type": { - "$ref": "6401" + "$ref": "6403" }, "optional": true, "readOnly": true, @@ -104080,7 +104106,7 @@ ] }, "function": { - "$id": "7934", + "$id": "7936", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObject", "namespace": "OpenAI", @@ -104090,16 +104116,16 @@ "discriminatorValue": "function", "decorators": [], "baseModel": { - "$ref": "7894" + "$ref": "7896" }, "properties": [ { - "$id": "7935", + "$id": "7937", "kind": "property", "name": "index", "doc": "The index of the tool call in the tool calls array.", "type": { - "$id": "7936", + "$id": "7938", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104115,12 +104141,12 @@ "isHttpMetadata": false }, { - "$id": "7937", + "$id": "7939", "kind": "property", "name": "id", "doc": "The ID of the tool call object.", "type": { - "$id": "7938", + "$id": "7940", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104136,12 +104162,12 @@ "isHttpMetadata": false }, { - "$id": "7939", + "$id": "7941", "kind": "property", "name": "type", "doc": "The type of tool call. This is always going to be `function` for this type of tool call.", "type": { - "$ref": "6421" + "$ref": "6423" }, "optional": false, "readOnly": false, @@ -104153,12 +104179,12 @@ "isHttpMetadata": false }, { - "$id": "7940", + "$id": "7942", "kind": "property", "name": "function", "doc": "The definition of the function that was called.", "type": { - "$id": "7941", + "$id": "7943", "kind": "model", "name": "RunStepDeltaStepDetailsToolCallsFunctionObjectFunction", "namespace": "OpenAI", @@ -104167,12 +104193,12 @@ "decorators": [], "properties": [ { - "$id": "7942", + "$id": "7944", "kind": "property", "name": "name", "doc": "The name of the function.", "type": { - "$id": "7943", + "$id": "7945", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104188,12 +104214,12 @@ "isHttpMetadata": false }, { - "$id": "7944", + "$id": "7946", "kind": "property", "name": "arguments", "doc": "The arguments passed to the function.", "type": { - "$id": "7945", + "$id": "7947", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104209,15 +104235,15 @@ "isHttpMetadata": false }, { - "$id": "7946", + "$id": "7948", "kind": "property", "name": "output", "doc": "The output of the function. This will be `null` if the outputs have not been [submitted](/docs/api-reference/runs/submitToolOutputs) yet.", "type": { - "$id": "7947", + "$id": "7949", "kind": "nullable", "type": { - "$id": "7948", + "$id": "7950", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104287,9 +104313,6 @@ } ] }, - { - "$ref": "7880" - }, { "$ref": "7882" }, @@ -104297,46 +104320,49 @@ "$ref": "7884" }, { - "$ref": "7887" + "$ref": "7886" }, { - "$ref": "7890" + "$ref": "7889" }, { - "$ref": "7894" + "$ref": "7892" }, { "$ref": "7896" }, { - "$ref": "7903" + "$ref": "7898" }, { - "$ref": "7908" + "$ref": "7905" }, { "$ref": "7910" }, { - "$ref": "7916" + "$ref": "7912" + }, + { + "$ref": "7918" }, { - "$ref": "7921" + "$ref": "7923" }, { - "$ref": "7924" + "$ref": "7926" }, { - "$ref": "7931" + "$ref": "7933" }, { - "$ref": "7934" + "$ref": "7936" }, { - "$ref": "7941" + "$ref": "7943" }, { - "$id": "7949", + "$id": "7951", "kind": "model", "name": "CreateThreadRequestToolResourcesFileSearchBase", "namespace": "OpenAI", @@ -104347,7 +104373,7 @@ "properties": [] }, { - "$id": "7950", + "$id": "7952", "kind": "model", "name": "AssistantCollectionOptions", "namespace": "OpenAI", @@ -104357,12 +104383,12 @@ "decorators": [], "properties": [ { - "$id": "7951", + "$id": "7953", "kind": "property", "name": "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.", "type": { - "$id": "7952", + "$id": "7954", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104378,12 +104404,12 @@ "isHttpMetadata": true }, { - "$id": "7953", + "$id": "7955", "kind": "property", "name": "beforeId", "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, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "7954", + "$id": "7956", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104399,12 +104425,12 @@ "isHttpMetadata": true }, { - "$id": "7955", + "$id": "7957", "kind": "property", "name": "pageSizeLimit", "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": "7956", + "$id": "7958", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104420,7 +104446,7 @@ "isHttpMetadata": true }, { - "$id": "7957", + "$id": "7959", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -104439,7 +104465,7 @@ ] }, { - "$id": "7958", + "$id": "7960", "kind": "model", "name": "MessageCollectionOptions", "namespace": "OpenAI", @@ -104449,12 +104475,12 @@ "decorators": [], "properties": [ { - "$id": "7959", + "$id": "7961", "kind": "property", "name": "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.", "type": { - "$id": "7960", + "$id": "7962", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104470,12 +104496,12 @@ "isHttpMetadata": true }, { - "$id": "7961", + "$id": "7963", "kind": "property", "name": "beforeId", "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, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "7962", + "$id": "7964", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104491,12 +104517,12 @@ "isHttpMetadata": true }, { - "$id": "7963", + "$id": "7965", "kind": "property", "name": "pageSizeLimit", "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": "7964", + "$id": "7966", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104512,7 +104538,7 @@ "isHttpMetadata": true }, { - "$id": "7965", + "$id": "7967", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -104531,7 +104557,7 @@ ] }, { - "$id": "7966", + "$id": "7968", "kind": "model", "name": "RunCollectionOptions", "namespace": "OpenAI", @@ -104541,12 +104567,12 @@ "decorators": [], "properties": [ { - "$id": "7967", + "$id": "7969", "kind": "property", "name": "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.", "type": { - "$id": "7968", + "$id": "7970", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104562,12 +104588,12 @@ "isHttpMetadata": true }, { - "$id": "7969", + "$id": "7971", "kind": "property", "name": "beforeId", "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, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "7970", + "$id": "7972", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104583,12 +104609,12 @@ "isHttpMetadata": true }, { - "$id": "7971", + "$id": "7973", "kind": "property", "name": "pageSizeLimit", "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": "7972", + "$id": "7974", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104604,7 +104630,7 @@ "isHttpMetadata": true }, { - "$id": "7973", + "$id": "7975", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -104623,7 +104649,7 @@ ] }, { - "$id": "7974", + "$id": "7976", "kind": "model", "name": "RunStepCollectionOptions", "namespace": "OpenAI", @@ -104633,12 +104659,12 @@ "decorators": [], "properties": [ { - "$id": "7975", + "$id": "7977", "kind": "property", "name": "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.", "type": { - "$id": "7976", + "$id": "7978", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104654,12 +104680,12 @@ "isHttpMetadata": true }, { - "$id": "7977", + "$id": "7979", "kind": "property", "name": "beforeId", "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, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "7978", + "$id": "7980", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104675,12 +104701,12 @@ "isHttpMetadata": true }, { - "$id": "7979", + "$id": "7981", "kind": "property", "name": "pageSizeLimit", "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": "7980", + "$id": "7982", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104696,7 +104722,7 @@ "isHttpMetadata": true }, { - "$id": "7981", + "$id": "7983", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -104715,7 +104741,7 @@ ] }, { - "$id": "7982", + "$id": "7984", "kind": "model", "name": "DotNetCombinedJsonTranscriptionResponse", "namespace": "OpenAI", @@ -104725,7 +104751,7 @@ "decorators": [], "properties": [ { - "$id": "7983", + "$id": "7985", "kind": "property", "name": "task", "doc": "The task label.", @@ -104742,12 +104768,12 @@ "isHttpMetadata": false }, { - "$id": "7984", + "$id": "7986", "kind": "property", "name": "language", "doc": "The language of the input audio.", "type": { - "$id": "7985", + "$id": "7987", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104763,17 +104789,17 @@ "isHttpMetadata": false }, { - "$id": "7986", + "$id": "7988", "kind": "property", "name": "duration", "doc": "The duration of the input audio.", "type": { - "$id": "7987", + "$id": "7989", "kind": "duration", "name": "duration", "encode": "seconds", "wireType": { - "$id": "7988", + "$id": "7990", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -104792,12 +104818,12 @@ "isHttpMetadata": false }, { - "$id": "7989", + "$id": "7991", "kind": "property", "name": "text", "doc": "The transcribed text.", "type": { - "$id": "7990", + "$id": "7992", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104813,7 +104839,7 @@ "isHttpMetadata": false }, { - "$id": "7991", + "$id": "7993", "kind": "property", "name": "words", "doc": "Extracted words and their corresponding timestamps.", @@ -104830,7 +104856,7 @@ "isHttpMetadata": false }, { - "$id": "7992", + "$id": "7994", "kind": "property", "name": "segments", "doc": "Segments of the transcribed text and their corresponding details.", @@ -104847,11 +104873,11 @@ "isHttpMetadata": false }, { - "$id": "7993", + "$id": "7995", "kind": "property", "name": "logprobs", "type": { - "$ref": "7293" + "$ref": "7295" }, "optional": true, "readOnly": false, @@ -104865,7 +104891,7 @@ ] }, { - "$id": "7994", + "$id": "7996", "kind": "model", "name": "ChatCompletionCollectionOptions", "namespace": "OpenAI", @@ -104880,12 +104906,12 @@ ], "properties": [ { - "$id": "7995", + "$id": "7997", "kind": "property", "name": "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.", "type": { - "$id": "7996", + "$id": "7998", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104901,12 +104927,12 @@ "isHttpMetadata": true }, { - "$id": "7997", + "$id": "7999", "kind": "property", "name": "pageSizeLimit", "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": "7998", + "$id": "8000", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -104922,7 +104948,7 @@ "isHttpMetadata": true }, { - "$id": "7999", + "$id": "8001", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -104939,7 +104965,7 @@ "isHttpMetadata": true }, { - "$id": "8000", + "$id": "8002", "kind": "property", "name": "metadata", "type": { @@ -104955,11 +104981,11 @@ "isHttpMetadata": true }, { - "$id": "8001", + "$id": "8003", "kind": "property", "name": "model", "type": { - "$id": "8002", + "$id": "8004", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -104977,7 +105003,7 @@ ] }, { - "$id": "8003", + "$id": "8005", "kind": "model", "name": "ChatCompletionMessageCollectionOptions", "namespace": "OpenAI", @@ -104992,12 +105018,12 @@ ], "properties": [ { - "$id": "8004", + "$id": "8006", "kind": "property", "name": "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.", "type": { - "$id": "8005", + "$id": "8007", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105013,12 +105039,12 @@ "isHttpMetadata": true }, { - "$id": "8006", + "$id": "8008", "kind": "property", "name": "pageSizeLimit", "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": "8007", + "$id": "8009", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105034,7 +105060,7 @@ "isHttpMetadata": true }, { - "$id": "8008", + "$id": "8010", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105053,7 +105079,7 @@ ] }, { - "$id": "8009", + "$id": "8011", "kind": "model", "name": "ContainerCollectionOptions", "namespace": "OpenAI", @@ -105063,12 +105089,12 @@ "decorators": [], "properties": [ { - "$id": "8010", + "$id": "8012", "kind": "property", "name": "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.", "type": { - "$id": "8011", + "$id": "8013", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105084,12 +105110,12 @@ "isHttpMetadata": true }, { - "$id": "8012", + "$id": "8014", "kind": "property", "name": "pageSizeLimit", "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": "8013", + "$id": "8015", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105105,7 +105131,7 @@ "isHttpMetadata": true }, { - "$id": "8014", + "$id": "8016", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105124,7 +105150,7 @@ ] }, { - "$id": "8015", + "$id": "8017", "kind": "model", "name": "ContainerFileCollectionOptions", "namespace": "OpenAI", @@ -105134,12 +105160,12 @@ "decorators": [], "properties": [ { - "$id": "8016", + "$id": "8018", "kind": "property", "name": "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.", "type": { - "$id": "8017", + "$id": "8019", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105155,12 +105181,12 @@ "isHttpMetadata": true }, { - "$id": "8018", + "$id": "8020", "kind": "property", "name": "pageSizeLimit", "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": "8019", + "$id": "8021", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105176,7 +105202,7 @@ "isHttpMetadata": true }, { - "$id": "8020", + "$id": "8022", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105195,7 +105221,7 @@ ] }, { - "$id": "8021", + "$id": "8023", "kind": "model", "name": "DotNetChatResponseFormat", "namespace": "OpenAI", @@ -105209,7 +105235,7 @@ } ], "discriminatorProperty": { - "$id": "8022", + "$id": "8024", "kind": "property", "name": "type", "type": { @@ -105226,12 +105252,12 @@ }, "properties": [ { - "$ref": "8022" + "$ref": "8024" } ], "discriminatedSubtypes": { "text": { - "$id": "8023", + "$id": "8025", "kind": "model", "name": "DotNetChatResponseFormatText", "namespace": "OpenAI", @@ -105246,11 +105272,11 @@ } ], "baseModel": { - "$ref": "8021" + "$ref": "8023" }, "properties": [ { - "$id": "8024", + "$id": "8026", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -105269,7 +105295,7 @@ ] }, "json_object": { - "$id": "8025", + "$id": "8027", "kind": "model", "name": "DotNetChatResponseFormatJsonObject", "namespace": "OpenAI", @@ -105284,11 +105310,11 @@ } ], "baseModel": { - "$ref": "8021" + "$ref": "8023" }, "properties": [ { - "$id": "8026", + "$id": "8028", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -105307,7 +105333,7 @@ ] }, "json_schema": { - "$id": "8027", + "$id": "8029", "kind": "model", "name": "DotNetChatResponseFormatJsonSchema", "namespace": "OpenAI", @@ -105322,11 +105348,11 @@ } ], "baseModel": { - "$ref": "8021" + "$ref": "8023" }, "properties": [ { - "$id": "8028", + "$id": "8030", "kind": "property", "name": "type", "type": { @@ -105342,11 +105368,11 @@ "isHttpMetadata": false }, { - "$id": "8029", + "$id": "8031", "kind": "property", "name": "json_schema", "type": { - "$id": "8030", + "$id": "8032", "kind": "model", "name": "DotNetChatResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -105355,11 +105381,11 @@ "decorators": [], "properties": [ { - "$id": "8031", + "$id": "8033", "kind": "property", "name": "description", "type": { - "$id": "8032", + "$id": "8034", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105375,11 +105401,11 @@ "isHttpMetadata": false }, { - "$id": "8033", + "$id": "8035", "kind": "property", "name": "name", "type": { - "$id": "8034", + "$id": "8036", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105395,11 +105421,11 @@ "isHttpMetadata": false }, { - "$id": "8035", + "$id": "8037", "kind": "property", "name": "schema", "type": { - "$id": "8036", + "$id": "8038", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -105415,14 +105441,14 @@ "isHttpMetadata": false }, { - "$id": "8037", + "$id": "8039", "kind": "property", "name": "strict", "type": { - "$id": "8038", + "$id": "8040", "kind": "nullable", "type": { - "$id": "8039", + "$id": "8041", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -105454,9 +105480,6 @@ } } }, - { - "$ref": "8023" - }, { "$ref": "8025" }, @@ -105464,10 +105487,13 @@ "$ref": "8027" }, { - "$ref": "8030" + "$ref": "8029" + }, + { + "$ref": "8032" }, { - "$id": "8040", + "$id": "8042", "kind": "model", "name": "DotNetAssistantResponseFormat", "namespace": "OpenAI", @@ -105476,7 +105502,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8041", + "$id": "8043", "kind": "property", "name": "type", "type": { @@ -105493,12 +105519,12 @@ }, "properties": [ { - "$ref": "8041" + "$ref": "8043" } ], "discriminatedSubtypes": { "text": { - "$id": "8042", + "$id": "8044", "kind": "model", "name": "DotNetAssistantResponseFormatText", "namespace": "OpenAI", @@ -105508,11 +105534,11 @@ "discriminatorValue": "text", "decorators": [], "baseModel": { - "$ref": "8040" + "$ref": "8042" }, "properties": [ { - "$id": "8043", + "$id": "8045", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `text`.", @@ -105531,7 +105557,7 @@ ] }, "json_object": { - "$id": "8044", + "$id": "8046", "kind": "model", "name": "DotNetAssistantResponseFormatJsonObject", "namespace": "OpenAI", @@ -105541,11 +105567,11 @@ "discriminatorValue": "json_object", "decorators": [], "baseModel": { - "$ref": "8040" + "$ref": "8042" }, "properties": [ { - "$id": "8045", + "$id": "8047", "kind": "property", "name": "type", "doc": "The type of response format being defined. Always `json_object`.", @@ -105564,7 +105590,7 @@ ] }, "json_schema": { - "$id": "8046", + "$id": "8048", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchema", "namespace": "OpenAI", @@ -105574,11 +105600,11 @@ "discriminatorValue": "json_schema", "decorators": [], "baseModel": { - "$ref": "8040" + "$ref": "8042" }, "properties": [ { - "$id": "8047", + "$id": "8049", "kind": "property", "name": "type", "type": { @@ -105594,11 +105620,11 @@ "isHttpMetadata": false }, { - "$id": "8048", + "$id": "8050", "kind": "property", "name": "json_schema", "type": { - "$id": "8049", + "$id": "8051", "kind": "model", "name": "DotNetAssistantResponseFormatJsonSchemaJsonSchema", "namespace": "OpenAI", @@ -105607,11 +105633,11 @@ "decorators": [], "properties": [ { - "$id": "8050", + "$id": "8052", "kind": "property", "name": "description", "type": { - "$id": "8051", + "$id": "8053", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105627,11 +105653,11 @@ "isHttpMetadata": false }, { - "$id": "8052", + "$id": "8054", "kind": "property", "name": "name", "type": { - "$id": "8053", + "$id": "8055", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105647,11 +105673,11 @@ "isHttpMetadata": false }, { - "$id": "8054", + "$id": "8056", "kind": "property", "name": "schema", "type": { - "$id": "8055", + "$id": "8057", "kind": "unknown", "name": "unknown", "crossLanguageDefinitionId": "", @@ -105667,14 +105693,14 @@ "isHttpMetadata": false }, { - "$id": "8056", + "$id": "8058", "kind": "property", "name": "strict", "type": { - "$id": "8057", + "$id": "8059", "kind": "nullable", "type": { - "$id": "8058", + "$id": "8060", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -105706,9 +105732,6 @@ } } }, - { - "$ref": "8042" - }, { "$ref": "8044" }, @@ -105716,10 +105739,13 @@ "$ref": "8046" }, { - "$ref": "8049" + "$ref": "8048" + }, + { + "$ref": "8051" }, { - "$id": "8059", + "$id": "8061", "kind": "model", "name": "DotNetAudioLogProbsProperties", "namespace": "OpenAI", @@ -105729,12 +105755,12 @@ "decorators": [], "properties": [ { - "$id": "8060", + "$id": "8062", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8061", + "$id": "8063", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105750,12 +105776,12 @@ "isHttpMetadata": false }, { - "$id": "8062", + "$id": "8064", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8063", + "$id": "8065", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -105771,7 +105797,7 @@ "isHttpMetadata": false }, { - "$id": "8064", + "$id": "8066", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -105790,7 +105816,7 @@ ] }, { - "$id": "8065", + "$id": "8067", "kind": "model", "name": "DotNetRealtimeLogProbsProperties", "namespace": "OpenAI", @@ -105800,12 +105826,12 @@ "decorators": [], "properties": [ { - "$id": "8066", + "$id": "8068", "kind": "property", "name": "token", "doc": "The token that was used to generate the log probability.", "type": { - "$id": "8067", + "$id": "8069", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105821,12 +105847,12 @@ "isHttpMetadata": false }, { - "$id": "8068", + "$id": "8070", "kind": "property", "name": "logprob", "doc": "The log probability of the token.", "type": { - "$id": "8069", + "$id": "8071", "kind": "float32", "name": "float32", "crossLanguageDefinitionId": "TypeSpec.float32", @@ -105842,7 +105868,7 @@ "isHttpMetadata": false }, { - "$id": "8070", + "$id": "8072", "kind": "property", "name": "bytes", "doc": "The bytes that were used to generate the log probability.", @@ -105861,7 +105887,7 @@ ] }, { - "$id": "8071", + "$id": "8073", "kind": "model", "name": "ResponseItemCollectionOptions", "namespace": "OpenAI", @@ -105876,12 +105902,12 @@ ], "properties": [ { - "$id": "8072", + "$id": "8074", "kind": "property", "name": "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.", "type": { - "$id": "8073", + "$id": "8075", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105897,12 +105923,12 @@ "isHttpMetadata": true }, { - "$id": "8074", + "$id": "8076", "kind": "property", "name": "beforeId", "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, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "8075", + "$id": "8077", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -105918,12 +105944,12 @@ "isHttpMetadata": true }, { - "$id": "8076", + "$id": "8078", "kind": "property", "name": "pageSizeLimit", "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": "8077", + "$id": "8079", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -105939,7 +105965,7 @@ "isHttpMetadata": true }, { - "$id": "8078", + "$id": "8080", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -105958,7 +105984,7 @@ ] }, { - "$id": "8079", + "$id": "8081", "kind": "model", "name": "DotNetCustomToolCallApprovalPolicy", "namespace": "OpenAI", @@ -105973,12 +105999,12 @@ ], "properties": [ { - "$id": "8080", + "$id": "8082", "kind": "property", "name": "always", "doc": "A list of tools that always require approval.", "type": { - "$ref": "4456" + "$ref": "4458" }, "optional": true, "readOnly": false, @@ -105990,12 +106016,12 @@ "isHttpMetadata": false }, { - "$id": "8081", + "$id": "8083", "kind": "property", "name": "never", "doc": "A list of tools that never require approval.", "type": { - "$ref": "4456" + "$ref": "4458" }, "optional": true, "readOnly": false, @@ -106009,7 +106035,7 @@ ] }, { - "$id": "8082", + "$id": "8084", "kind": "model", "name": "DotNetToolCallApprovalPolicy", "namespace": "OpenAI", @@ -106024,7 +106050,7 @@ ], "properties": [ { - "$id": "8083", + "$id": "8085", "kind": "property", "name": "global_policy", "type": { @@ -106040,11 +106066,11 @@ "isHttpMetadata": false }, { - "$id": "8084", + "$id": "8086", "kind": "property", "name": "custom_policy", "type": { - "$ref": "8079" + "$ref": "8081" }, "optional": true, "readOnly": false, @@ -106058,7 +106084,7 @@ ] }, { - "$id": "8085", + "$id": "8087", "kind": "model", "name": "DotNetCodeInterpreterToolContainer", "namespace": "OpenAI", @@ -106073,11 +106099,11 @@ ], "properties": [ { - "$id": "8086", + "$id": "8088", "kind": "property", "name": "container_id", "type": { - "$id": "8087", + "$id": "8089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106093,11 +106119,11 @@ "isHttpMetadata": false }, { - "$id": "8088", + "$id": "8090", "kind": "property", "name": "container", "type": { - "$ref": "4409" + "$ref": "4411" }, "optional": true, "readOnly": false, @@ -106111,7 +106137,7 @@ ] }, { - "$id": "8089", + "$id": "8091", "kind": "model", "name": "DotNetCombinedChunkingStrategyParam", "namespace": "OpenAI", @@ -106119,7 +106145,7 @@ "usage": "Input,Output", "decorators": [], "discriminatorProperty": { - "$id": "8090", + "$id": "8092", "kind": "property", "name": "type", "type": { @@ -106136,12 +106162,12 @@ }, "properties": [ { - "$ref": "8090" + "$ref": "8092" } ], "discriminatedSubtypes": { "auto": { - "$id": "8091", + "$id": "8093", "kind": "model", "name": "DotNetCombinedAutoChunkingStrategyParam", "namespace": "OpenAI", @@ -106151,16 +106177,16 @@ "discriminatorValue": "auto", "decorators": [], "baseModel": { - "$ref": "8089" + "$ref": "8091" }, "properties": [ { - "$id": "8092", + "$id": "8094", "kind": "property", "name": "type", "doc": "Always `auto`.", "type": { - "$id": "8093", + "$id": "8095", "kind": "enumvalue", "name": "auto", "value": "auto", @@ -106168,14 +106194,14 @@ "$ref": "1384" }, "enumType": { - "$id": "8094", + "$id": "8096", "kind": "enum", "decorators": [], "name": "DotNetCombinedChunkingStrategyParamType", "isGeneratedName": true, "namespace": "OpenAI", "valueType": { - "$id": "8095", + "$id": "8097", "kind": "string", "decorators": [], "name": "string", @@ -106184,42 +106210,42 @@ }, "values": [ { - "$id": "8096", + "$id": "8098", "kind": "enumvalue", "decorators": [], "name": "auto", "value": "auto", "valueType": { - "$ref": "8095" + "$ref": "8097" }, "enumType": { - "$ref": "8094" + "$ref": "8096" } }, { - "$id": "8097", + "$id": "8099", "kind": "enumvalue", "decorators": [], "name": "static", "value": "static", "valueType": { - "$ref": "8095" + "$ref": "8097" }, "enumType": { - "$ref": "8094" + "$ref": "8096" } }, { - "$id": "8098", + "$id": "8100", "kind": "enumvalue", "decorators": [], "name": "other", "value": "other", "valueType": { - "$ref": "8095" + "$ref": "8097" }, "enumType": { - "$ref": "8094" + "$ref": "8096" } } ], @@ -106246,7 +106272,7 @@ ] }, "static": { - "$id": "8099", + "$id": "8101", "kind": "model", "name": "DotNetCombinedStaticChunkingStrategyParam", "namespace": "OpenAI", @@ -106256,16 +106282,16 @@ "discriminatorValue": "static", "decorators": [], "baseModel": { - "$ref": "8089" + "$ref": "8091" }, "properties": [ { - "$id": "8100", + "$id": "8102", "kind": "property", "name": "type", "doc": "Always `static`.", "type": { - "$id": "8101", + "$id": "8103", "kind": "enumvalue", "name": "static", "value": "static", @@ -106273,7 +106299,7 @@ "$ref": "1384" }, "enumType": { - "$ref": "8094" + "$ref": "8096" }, "decorators": [] }, @@ -106287,7 +106313,7 @@ "isHttpMetadata": false }, { - "$id": "8102", + "$id": "8104", "kind": "property", "name": "static", "type": { @@ -106305,7 +106331,7 @@ ] }, "other": { - "$id": "8103", + "$id": "8105", "kind": "model", "name": "DotNetCombinedOtherChunkingStrategyParam", "namespace": "OpenAI", @@ -106315,16 +106341,16 @@ "discriminatorValue": "other", "decorators": [], "baseModel": { - "$ref": "8089" + "$ref": "8091" }, "properties": [ { - "$id": "8104", + "$id": "8106", "kind": "property", "name": "type", "doc": "Always `other`.", "type": { - "$id": "8105", + "$id": "8107", "kind": "enumvalue", "name": "other", "value": "other", @@ -106332,7 +106358,7 @@ "$ref": "1384" }, "enumType": { - "$ref": "8094" + "$ref": "8096" }, "decorators": [] }, @@ -106350,16 +106376,16 @@ } }, { - "$ref": "8091" + "$ref": "8093" }, { - "$ref": "8099" + "$ref": "8101" }, { - "$ref": "8103" + "$ref": "8105" }, { - "$id": "8106", + "$id": "8108", "kind": "model", "name": "VectorStoreCollectionOptions", "namespace": "OpenAI", @@ -106369,12 +106395,12 @@ "decorators": [], "properties": [ { - "$id": "8107", + "$id": "8109", "kind": "property", "name": "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.", "type": { - "$id": "8108", + "$id": "8110", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106390,12 +106416,12 @@ "isHttpMetadata": true }, { - "$id": "8109", + "$id": "8111", "kind": "property", "name": "beforeId", "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, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "8110", + "$id": "8112", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106411,12 +106437,12 @@ "isHttpMetadata": true }, { - "$id": "8111", + "$id": "8113", "kind": "property", "name": "pageSizeLimit", "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": "8112", + "$id": "8114", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106432,7 +106458,7 @@ "isHttpMetadata": true }, { - "$id": "8113", + "$id": "8115", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106451,7 +106477,7 @@ ] }, { - "$id": "8114", + "$id": "8116", "kind": "model", "name": "VectorStoreFileCollectionOptions", "namespace": "OpenAI", @@ -106461,12 +106487,12 @@ "decorators": [], "properties": [ { - "$id": "8115", + "$id": "8117", "kind": "property", "name": "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.", "type": { - "$id": "8116", + "$id": "8118", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106482,12 +106508,12 @@ "isHttpMetadata": true }, { - "$id": "8117", + "$id": "8119", "kind": "property", "name": "beforeId", "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, starting with obj_foo, your\nsubsequent call can include before=obj_foo in order to fetch the previous page of the list.", "type": { - "$id": "8118", + "$id": "8120", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106503,12 +106529,12 @@ "isHttpMetadata": true }, { - "$id": "8119", + "$id": "8121", "kind": "property", "name": "pageSizeLimit", "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": "8120", + "$id": "8122", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106524,7 +106550,7 @@ "isHttpMetadata": true }, { - "$id": "8121", + "$id": "8123", "kind": "property", "name": "order", "doc": "Sort order by the `created_at` timestamp of the objects. `asc` for ascending order and`desc`\nfor descending order.", @@ -106541,7 +106567,7 @@ "isHttpMetadata": true }, { - "$id": "8122", + "$id": "8124", "kind": "property", "name": "filter", "type": { @@ -106561,20 +106587,20 @@ ], "clients": [ { - "$id": "8123", + "$id": "8125", "kind": "client", "name": "OpenAIClient", "namespace": "OpenAI", "methods": [], "parameters": [ { - "$id": "8124", + "$id": "8126", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8125", + "$id": "8127", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -106585,7 +106611,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8126", + "$id": "8128", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -106603,27 +106629,27 @@ "apiVersions": [], "children": [ { - "$id": "8127", + "$id": "8129", "kind": "client", "name": "Assistants", "namespace": "OpenAI", "methods": [ { - "$id": "8128", + "$id": "8130", "kind": "paging", "name": "GetAssistants", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of assistants.", "operation": { - "$id": "8129", + "$id": "8131", "name": "GetAssistants", "resourceName": "Assistants", "summary": "Returns a list of assistants.", "accessibility": "public", "parameters": [ { - "$id": "8130", + "$id": "8132", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -106639,7 +106665,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.accept" }, { - "$id": "8131", + "$id": "8133", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -106655,13 +106681,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.listAssistants.openAIBeta" }, { - "$id": "8132", + "$id": "8134", "kind": "query", "name": "limit", "serializedName": "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": "8133", + "$id": "8135", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106676,7 +106702,7 @@ "readOnly": false }, { - "$id": "8134", + "$id": "8136", "kind": "query", "name": "order", "serializedName": "order", @@ -106693,13 +106719,13 @@ "readOnly": false }, { - "$id": "8135", + "$id": "8137", "kind": "query", "name": "after", "serializedName": "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": "8136", + "$id": "8138", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106714,13 +106740,13 @@ "readOnly": false }, { - "$id": "8137", + "$id": "8139", "kind": "query", "name": "before", "serializedName": "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": "8138", + "$id": "8140", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106761,7 +106787,7 @@ }, "parameters": [ { - "$id": "8139", + "$id": "8141", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -106778,7 +106804,7 @@ "decorators": [] }, { - "$id": "8140", + "$id": "8142", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -106795,13 +106821,13 @@ "decorators": [] }, { - "$id": "8141", + "$id": "8143", "kind": "method", "name": "limit", "serializedName": "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": "8142", + "$id": "8144", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -106817,7 +106843,7 @@ "decorators": [] }, { - "$id": "8143", + "$id": "8145", "kind": "method", "name": "order", "serializedName": "order", @@ -106835,13 +106861,13 @@ "decorators": [] }, { - "$id": "8144", + "$id": "8146", "kind": "method", "name": "after", "serializedName": "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": "8145", + "$id": "8147", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106857,13 +106883,13 @@ "decorators": [] }, { - "$id": "8146", + "$id": "8148", "kind": "method", "name": "before", "serializedName": "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": "8147", + "$id": "8149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -106897,7 +106923,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8135" + "$ref": "8137" }, "responseSegments": [ "last_id" @@ -106907,21 +106933,21 @@ } }, { - "$id": "8148", + "$id": "8150", "kind": "basic", "name": "createAssistant", "accessibility": "public", "apiVersions": [], "summary": "Create an assistant with a model and instructions.", "operation": { - "$id": "8149", + "$id": "8151", "name": "createAssistant", "resourceName": "Assistants", "summary": "Create an assistant with a model and instructions.", "accessibility": "public", "parameters": [ { - "$id": "8150", + "$id": "8152", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -106937,7 +106963,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.accept" }, { - "$id": "8151", + "$id": "8153", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -106953,7 +106979,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.openAIBeta" }, { - "$id": "8152", + "$id": "8154", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -106970,7 +106996,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant.contentType" }, { - "$id": "8153", + "$id": "8155", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -107018,7 +107044,7 @@ }, "parameters": [ { - "$id": "8154", + "$id": "8156", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -107035,7 +107061,7 @@ "decorators": [] }, { - "$id": "8155", + "$id": "8157", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107052,7 +107078,7 @@ "decorators": [] }, { - "$id": "8156", + "$id": "8158", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -107069,7 +107095,7 @@ "decorators": [] }, { - "$id": "8157", + "$id": "8159", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -107098,21 +107124,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.createAssistant" }, { - "$id": "8158", + "$id": "8160", "kind": "basic", "name": "getAssistant", "accessibility": "public", "apiVersions": [], "summary": "Retrieves an assistant.", "operation": { - "$id": "8159", + "$id": "8161", "name": "getAssistant", "resourceName": "Assistants", "summary": "Retrieves an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8160", + "$id": "8162", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -107128,7 +107154,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.accept" }, { - "$id": "8161", + "$id": "8163", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107144,13 +107170,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant.openAIBeta" }, { - "$id": "8162", + "$id": "8164", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8163", + "$id": "8165", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107194,7 +107220,7 @@ }, "parameters": [ { - "$id": "8164", + "$id": "8166", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -107211,7 +107237,7 @@ "decorators": [] }, { - "$id": "8165", + "$id": "8167", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107228,13 +107254,13 @@ "decorators": [] }, { - "$id": "8166", + "$id": "8168", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to retrieve.", "type": { - "$id": "8167", + "$id": "8169", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107261,21 +107287,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.getAssistant" }, { - "$id": "8168", + "$id": "8170", "kind": "basic", "name": "modifyAssistant", "accessibility": "public", "apiVersions": [], "summary": "Modifies an assistant.", "operation": { - "$id": "8169", + "$id": "8171", "name": "modifyAssistant", "resourceName": "Assistants", "summary": "Modifies an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8170", + "$id": "8172", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -107291,7 +107317,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.accept" }, { - "$id": "8171", + "$id": "8173", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107307,13 +107333,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.openAIBeta" }, { - "$id": "8172", + "$id": "8174", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8173", + "$id": "8175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107331,7 +107357,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.assistant_id" }, { - "$id": "8174", + "$id": "8176", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -107348,7 +107374,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant.contentType" }, { - "$id": "8175", + "$id": "8177", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -107396,7 +107422,7 @@ }, "parameters": [ { - "$id": "8176", + "$id": "8178", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -107413,7 +107439,7 @@ "decorators": [] }, { - "$id": "8177", + "$id": "8179", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107430,13 +107456,13 @@ "decorators": [] }, { - "$id": "8178", + "$id": "8180", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to modify.", "type": { - "$id": "8179", + "$id": "8181", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107452,7 +107478,7 @@ "decorators": [] }, { - "$id": "8180", + "$id": "8182", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -107469,7 +107495,7 @@ "decorators": [] }, { - "$id": "8181", + "$id": "8183", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -107498,21 +107524,21 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.modifyAssistant" }, { - "$id": "8182", + "$id": "8184", "kind": "basic", "name": "deleteAssistant", "accessibility": "public", "apiVersions": [], "summary": "Delete an assistant.", "operation": { - "$id": "8183", + "$id": "8185", "name": "deleteAssistant", "resourceName": "Assistants", "summary": "Delete an assistant.", "accessibility": "public", "parameters": [ { - "$id": "8184", + "$id": "8186", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -107528,7 +107554,7 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.accept" }, { - "$id": "8185", + "$id": "8187", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107544,13 +107570,13 @@ "crossLanguageDefinitionId": "OpenAI.Assistants.deleteAssistant.openAIBeta" }, { - "$id": "8186", + "$id": "8188", "kind": "path", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8187", + "$id": "8189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107594,7 +107620,7 @@ }, "parameters": [ { - "$id": "8188", + "$id": "8190", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -107611,7 +107637,7 @@ "decorators": [] }, { - "$id": "8189", + "$id": "8191", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -107628,13 +107654,13 @@ "decorators": [] }, { - "$id": "8190", + "$id": "8192", "kind": "method", "name": "assistant_id", "serializedName": "assistant_id", "doc": "The ID of the assistant to delete.", "type": { - "$id": "8191", + "$id": "8193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107663,13 +107689,13 @@ ], "parameters": [ { - "$id": "8192", + "$id": "8194", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8193", + "$id": "8195", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -107680,7 +107706,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8194", + "$id": "8196", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -107697,31 +107723,31 @@ "crossLanguageDefinitionId": "OpenAI.Assistants", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8195", + "$id": "8197", "kind": "client", "name": "Audio", "namespace": "OpenAI", "methods": [ { - "$id": "8196", + "$id": "8198", "kind": "basic", "name": "GenerateSpeech", "accessibility": "public", "apiVersions": [], "summary": "Generates audio from the input text.", "operation": { - "$id": "8197", + "$id": "8199", "name": "GenerateSpeech", "resourceName": "Audio", "summary": "Generates audio from the input text.", "accessibility": "public", "parameters": [ { - "$id": "8198", + "$id": "8200", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -107737,7 +107763,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.accept" }, { - "$id": "8199", + "$id": "8201", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -107754,7 +107780,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech.contentType" }, { - "$id": "8200", + "$id": "8202", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -107779,7 +107805,7 @@ 200 ], "bodyType": { - "$id": "8201", + "$id": "8203", "kind": "bytes", "name": "bytes", "crossLanguageDefinitionId": "TypeSpec.bytes", @@ -107791,7 +107817,7 @@ "nameInResponse": "Transfer-Encoding", "doc": "chunked", "type": { - "$id": "8202", + "$id": "8204", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -107826,7 +107852,7 @@ }, "parameters": [ { - "$id": "8203", + "$id": "8205", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -107843,7 +107869,7 @@ "decorators": [] }, { - "$id": "8204", + "$id": "8206", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -107860,7 +107886,7 @@ "decorators": [] }, { - "$id": "8205", + "$id": "8207", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -107880,7 +107906,7 @@ ], "response": { "type": { - "$ref": "8201" + "$ref": "8203" } }, "isOverride": false, @@ -107889,21 +107915,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createSpeech" }, { - "$id": "8206", + "$id": "8208", "kind": "basic", "name": "TranscribeAudio", "accessibility": "public", "apiVersions": [], "summary": "Transcribes audio into the input language.", "operation": { - "$id": "8207", + "$id": "8209", "name": "TranscribeAudio", "resourceName": "Audio", "summary": "Transcribes audio into the input language.", "accessibility": "public", "parameters": [ { - "$id": "8208", + "$id": "8210", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -107919,7 +107945,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.accept" }, { - "$id": "8209", + "$id": "8211", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -107935,7 +107961,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription.contentType" }, { - "$id": "8210", + "$id": "8212", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -107960,12 +107986,12 @@ 200 ], "bodyType": { - "$id": "8211", + "$id": "8213", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8212", + "$id": "8214", "kind": "union", "name": "", "variantTypes": [ @@ -108017,7 +108043,7 @@ }, "parameters": [ { - "$id": "8213", + "$id": "8215", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108034,7 +108060,7 @@ "decorators": [] }, { - "$id": "8214", + "$id": "8216", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -108051,7 +108077,7 @@ "decorators": [] }, { - "$id": "8215", + "$id": "8217", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -108070,7 +108096,7 @@ ], "response": { "type": { - "$ref": "8211" + "$ref": "8213" } }, "isOverride": false, @@ -108079,21 +108105,21 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranscription" }, { - "$id": "8216", + "$id": "8218", "kind": "basic", "name": "TranslateAudio", "accessibility": "public", "apiVersions": [], "summary": "Translates audio into English..", "operation": { - "$id": "8217", + "$id": "8219", "name": "TranslateAudio", "resourceName": "Audio", "summary": "Translates audio into English..", "accessibility": "public", "parameters": [ { - "$id": "8218", + "$id": "8220", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108109,7 +108135,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.accept" }, { - "$id": "8219", + "$id": "8221", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -108125,7 +108151,7 @@ "crossLanguageDefinitionId": "OpenAI.Audio.createTranslation.contentType" }, { - "$id": "8220", + "$id": "8222", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -108150,12 +108176,12 @@ 200 ], "bodyType": { - "$id": "8221", + "$id": "8223", "kind": "union", "name": "", "variantTypes": [ { - "$id": "8222", + "$id": "8224", "kind": "union", "name": "", "variantTypes": [ @@ -108170,7 +108196,7 @@ "decorators": [] }, { - "$id": "8223", + "$id": "8225", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108211,7 +108237,7 @@ }, "parameters": [ { - "$id": "8224", + "$id": "8226", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108228,7 +108254,7 @@ "decorators": [] }, { - "$id": "8225", + "$id": "8227", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -108245,7 +108271,7 @@ "decorators": [] }, { - "$id": "8226", + "$id": "8228", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -108264,7 +108290,7 @@ ], "response": { "type": { - "$ref": "8221" + "$ref": "8223" } }, "isOverride": false, @@ -108275,13 +108301,13 @@ ], "parameters": [ { - "$id": "8227", + "$id": "8229", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8228", + "$id": "8230", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -108292,7 +108318,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8229", + "$id": "8231", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -108309,31 +108335,31 @@ "crossLanguageDefinitionId": "OpenAI.Audio", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8230", + "$id": "8232", "kind": "client", "name": "Batches", "namespace": "OpenAI", "methods": [ { - "$id": "8231", + "$id": "8233", "kind": "basic", "name": "createBatch", "accessibility": "public", "apiVersions": [], "summary": "Creates and executes a batch from an uploaded file of requests", "operation": { - "$id": "8232", + "$id": "8234", "name": "createBatch", "resourceName": "Batches", "summary": "Creates and executes a batch from an uploaded file of requests", "accessibility": "public", "parameters": [ { - "$id": "8233", + "$id": "8235", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108349,7 +108375,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.accept" }, { - "$id": "8234", + "$id": "8236", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -108366,7 +108392,7 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch.contentType" }, { - "$id": "8235", + "$id": "8237", "kind": "body", "name": "createBatchRequest", "serializedName": "createBatchRequest", @@ -108414,7 +108440,7 @@ }, "parameters": [ { - "$id": "8236", + "$id": "8238", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108431,13 +108457,13 @@ "decorators": [] }, { - "$id": "8237", + "$id": "8239", "kind": "method", "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": "8238", + "$id": "8240", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108453,7 +108479,7 @@ "decorators": [] }, { - "$id": "8239", + "$id": "8241", "kind": "method", "name": "endpoint", "serializedName": "endpoint", @@ -108471,7 +108497,7 @@ "decorators": [] }, { - "$id": "8240", + "$id": "8242", "kind": "method", "name": "completion_window", "serializedName": "completion_window", @@ -108489,7 +108515,7 @@ "decorators": [] }, { - "$id": "8241", + "$id": "8243", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -108507,7 +108533,7 @@ "decorators": [] }, { - "$id": "8242", + "$id": "8244", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -108536,21 +108562,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.createBatch" }, { - "$id": "8243", + "$id": "8245", "kind": "basic", "name": "GetBatches", "accessibility": "public", "apiVersions": [], "summary": "List your organization's batches.", "operation": { - "$id": "8244", + "$id": "8246", "name": "GetBatches", "resourceName": "Batches", "summary": "List your organization's batches.", "accessibility": "public", "parameters": [ { - "$id": "8245", + "$id": "8247", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108566,13 +108592,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches.accept" }, { - "$id": "8246", + "$id": "8248", "kind": "query", "name": "after", "serializedName": "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": "8247", + "$id": "8249", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108587,13 +108613,13 @@ "readOnly": false }, { - "$id": "8248", + "$id": "8250", "kind": "query", "name": "limit", "serializedName": "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": "8249", + "$id": "8251", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108634,7 +108660,7 @@ }, "parameters": [ { - "$id": "8250", + "$id": "8252", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108651,13 +108677,13 @@ "decorators": [] }, { - "$id": "8251", + "$id": "8253", "kind": "method", "name": "after", "serializedName": "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": "8252", + "$id": "8254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108673,13 +108699,13 @@ "decorators": [] }, { - "$id": "8253", + "$id": "8255", "kind": "method", "name": "limit", "serializedName": "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": "8254", + "$id": "8256", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -108706,21 +108732,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.listBatches" }, { - "$id": "8255", + "$id": "8257", "kind": "basic", "name": "GetBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a batch.", "operation": { - "$id": "8256", + "$id": "8258", "name": "GetBatch", "resourceName": "Batches", "summary": "Retrieves a batch.", "accessibility": "public", "parameters": [ { - "$id": "8257", + "$id": "8259", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108736,13 +108762,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch.accept" }, { - "$id": "8258", + "$id": "8260", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8259", + "$id": "8261", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108786,7 +108812,7 @@ }, "parameters": [ { - "$id": "8260", + "$id": "8262", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108803,13 +108829,13 @@ "decorators": [] }, { - "$id": "8261", + "$id": "8263", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to retrieve.", "type": { - "$id": "8262", + "$id": "8264", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108836,21 +108862,21 @@ "crossLanguageDefinitionId": "OpenAI.Batches.retrieveBatch" }, { - "$id": "8263", + "$id": "8265", "kind": "basic", "name": "cancelBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancels an in-progress batch.", "operation": { - "$id": "8264", + "$id": "8266", "name": "cancelBatch", "resourceName": "Batches", "summary": "Cancels an in-progress batch.", "accessibility": "public", "parameters": [ { - "$id": "8265", + "$id": "8267", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -108866,13 +108892,13 @@ "crossLanguageDefinitionId": "OpenAI.Batches.cancelBatch.accept" }, { - "$id": "8266", + "$id": "8268", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8267", + "$id": "8269", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108916,7 +108942,7 @@ }, "parameters": [ { - "$id": "8268", + "$id": "8270", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -108933,13 +108959,13 @@ "decorators": [] }, { - "$id": "8269", + "$id": "8271", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the batch to cancel.", "type": { - "$id": "8270", + "$id": "8272", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -108968,13 +108994,13 @@ ], "parameters": [ { - "$id": "8271", + "$id": "8273", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8272", + "$id": "8274", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -108985,7 +109011,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8273", + "$id": "8275", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -109002,37 +109028,37 @@ "crossLanguageDefinitionId": "OpenAI.Batches", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8274", + "$id": "8276", "kind": "client", "name": "Chat", "namespace": "OpenAI", "methods": [ { - "$id": "8275", + "$id": "8277", "kind": "paging", "name": "listChatCompletions", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of chat completions.", "operation": { - "$id": "8276", + "$id": "8278", "name": "listChatCompletions", "resourceName": "Chat", "summary": "Returns a list of chat completions.", "accessibility": "public", "parameters": [ { - "$id": "8277", + "$id": "8279", "kind": "query", "name": "after", "serializedName": "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": "8278", + "$id": "8280", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109047,13 +109073,13 @@ "readOnly": false }, { - "$id": "8279", + "$id": "8281", "kind": "query", "name": "limit", "serializedName": "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": "8280", + "$id": "8282", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109068,7 +109094,7 @@ "readOnly": false }, { - "$id": "8281", + "$id": "8283", "kind": "query", "name": "order", "serializedName": "order", @@ -109085,7 +109111,7 @@ "readOnly": false }, { - "$id": "8282", + "$id": "8284", "kind": "query", "name": "metadata", "serializedName": "metadata", @@ -109101,12 +109127,12 @@ "readOnly": false }, { - "$id": "8283", + "$id": "8285", "kind": "query", "name": "model", "serializedName": "model", "type": { - "$id": "8284", + "$id": "8286", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109121,7 +109147,7 @@ "readOnly": false }, { - "$id": "8285", + "$id": "8287", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109163,13 +109189,13 @@ }, "parameters": [ { - "$id": "8286", + "$id": "8288", "kind": "method", "name": "after", "serializedName": "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": "8287", + "$id": "8289", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109185,13 +109211,13 @@ "decorators": [] }, { - "$id": "8288", + "$id": "8290", "kind": "method", "name": "limit", "serializedName": "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": "8289", + "$id": "8291", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -109207,7 +109233,7 @@ "decorators": [] }, { - "$id": "8290", + "$id": "8292", "kind": "method", "name": "order", "serializedName": "order", @@ -109225,7 +109251,7 @@ "decorators": [] }, { - "$id": "8291", + "$id": "8293", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -109242,12 +109268,12 @@ "decorators": [] }, { - "$id": "8292", + "$id": "8294", "kind": "method", "name": "model", "serializedName": "model", "type": { - "$id": "8293", + "$id": "8295", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109263,7 +109289,7 @@ "decorators": [] }, { - "$id": "8294", + "$id": "8296", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109298,7 +109324,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8277" + "$ref": "8279" }, "responseSegments": [ "last_id" @@ -109308,21 +109334,21 @@ } }, { - "$id": "8295", + "$id": "8297", "kind": "basic", "name": "CompleteChat", "accessibility": "public", "apiVersions": [], "summary": "Creates a model response for the given chat conversation.", "operation": { - "$id": "8296", + "$id": "8298", "name": "CompleteChat", "resourceName": "Chat", "summary": "Creates a model response for the given chat conversation.", "accessibility": "public", "parameters": [ { - "$id": "8297", + "$id": "8299", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109338,7 +109364,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.accept" }, { - "$id": "8298", + "$id": "8300", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109355,7 +109381,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion.contentType" }, { - "$id": "8299", + "$id": "8301", "kind": "body", "name": "requestBody", "serializedName": "requestBody", @@ -109380,7 +109406,7 @@ 200 ], "bodyType": { - "$id": "8300", + "$id": "8302", "kind": "union", "name": "", "variantTypes": [ @@ -109424,7 +109450,7 @@ }, "parameters": [ { - "$id": "8301", + "$id": "8303", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109441,7 +109467,7 @@ "decorators": [] }, { - "$id": "8302", + "$id": "8304", "kind": "method", "name": "requestBody", "serializedName": "requestBody", @@ -109458,7 +109484,7 @@ "decorators": [] }, { - "$id": "8303", + "$id": "8305", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109478,7 +109504,7 @@ ], "response": { "type": { - "$ref": "8300" + "$ref": "8302" } }, "isOverride": false, @@ -109487,27 +109513,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.createChatCompletion" }, { - "$id": "8304", + "$id": "8306", "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": "8305", + "$id": "8307", "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": "8306", + "$id": "8308", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8307", + "$id": "8309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109525,7 +109551,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion.completion_id" }, { - "$id": "8308", + "$id": "8310", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109567,13 +109593,13 @@ }, "parameters": [ { - "$id": "8309", + "$id": "8311", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve.", "type": { - "$id": "8310", + "$id": "8312", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109589,7 +109615,7 @@ "decorators": [] }, { - "$id": "8311", + "$id": "8313", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109617,27 +109643,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletion" }, { - "$id": "8312", + "$id": "8314", "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": "8313", + "$id": "8315", "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": "8314", + "$id": "8316", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8315", + "$id": "8317", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109655,7 +109681,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.completion_id" }, { - "$id": "8316", + "$id": "8318", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -109672,7 +109698,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.contentType" }, { - "$id": "8317", + "$id": "8319", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109688,7 +109714,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion.accept" }, { - "$id": "8318", + "$id": "8320", "kind": "body", "name": "updateChatCompletionRequest", "serializedName": "updateChatCompletionRequest", @@ -109736,13 +109762,13 @@ }, "parameters": [ { - "$id": "8319", + "$id": "8321", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to update.", "type": { - "$id": "8320", + "$id": "8322", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109758,7 +109784,7 @@ "decorators": [] }, { - "$id": "8321", + "$id": "8323", "kind": "method", "name": "metadata", "serializedName": "metadata", @@ -109776,7 +109802,7 @@ "decorators": [] }, { - "$id": "8322", + "$id": "8324", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -109794,7 +109820,7 @@ "decorators": [] }, { - "$id": "8323", + "$id": "8325", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109822,27 +109848,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.updateChatCompletion" }, { - "$id": "8324", + "$id": "8326", "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": "8325", + "$id": "8327", "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": "8326", + "$id": "8328", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8327", + "$id": "8329", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109860,7 +109886,7 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion.completion_id" }, { - "$id": "8328", + "$id": "8330", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -109902,13 +109928,13 @@ }, "parameters": [ { - "$id": "8329", + "$id": "8331", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to delete.", "type": { - "$id": "8330", + "$id": "8332", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109924,7 +109950,7 @@ "decorators": [] }, { - "$id": "8331", + "$id": "8333", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -109952,27 +109978,27 @@ "crossLanguageDefinitionId": "OpenAI.Chat.deleteChatCompletion" }, { - "$id": "8332", + "$id": "8334", "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": "8333", + "$id": "8335", "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": "8334", + "$id": "8336", "kind": "path", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8335", + "$id": "8337", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -109990,13 +110016,13 @@ "crossLanguageDefinitionId": "OpenAI.Chat.getChatCompletionMessages.completion_id" }, { - "$id": "8336", + "$id": "8338", "kind": "query", "name": "after", "serializedName": "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": "8337", + "$id": "8339", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110011,13 +110037,13 @@ "readOnly": false }, { - "$id": "8338", + "$id": "8340", "kind": "query", "name": "limit", "serializedName": "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": "8339", + "$id": "8341", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110032,7 +110058,7 @@ "readOnly": false }, { - "$id": "8340", + "$id": "8342", "kind": "query", "name": "order", "serializedName": "order", @@ -110049,7 +110075,7 @@ "readOnly": false }, { - "$id": "8341", + "$id": "8343", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110091,13 +110117,13 @@ }, "parameters": [ { - "$id": "8342", + "$id": "8344", "kind": "method", "name": "completion_id", "serializedName": "completion_id", "doc": "The ID of the stored chat completion to retrieve messages for.", "type": { - "$id": "8343", + "$id": "8345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110113,13 +110139,13 @@ "decorators": [] }, { - "$id": "8344", + "$id": "8346", "kind": "method", "name": "after", "serializedName": "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": "8345", + "$id": "8347", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110135,13 +110161,13 @@ "decorators": [] }, { - "$id": "8346", + "$id": "8348", "kind": "method", "name": "limit", "serializedName": "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": "8347", + "$id": "8349", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110157,7 +110183,7 @@ "decorators": [] }, { - "$id": "8348", + "$id": "8350", "kind": "method", "name": "order", "serializedName": "order", @@ -110175,7 +110201,7 @@ "decorators": [] }, { - "$id": "8349", + "$id": "8351", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110210,7 +110236,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8336" + "$ref": "8338" }, "responseSegments": [ "last_id" @@ -110222,13 +110248,13 @@ ], "parameters": [ { - "$id": "8350", + "$id": "8352", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8351", + "$id": "8353", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -110239,7 +110265,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8352", + "$id": "8354", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -110256,35 +110282,35 @@ "crossLanguageDefinitionId": "OpenAI.Chat", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8353", + "$id": "8355", "kind": "client", "name": "Containers", "namespace": "OpenAI", "methods": [ { - "$id": "8354", + "$id": "8356", "kind": "paging", "name": "listContainers", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8355", + "$id": "8357", "name": "listContainers", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8356", + "$id": "8358", "kind": "query", "name": "limit", "serializedName": "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": "8357", + "$id": "8359", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110299,7 +110325,7 @@ "readOnly": false }, { - "$id": "8358", + "$id": "8360", "kind": "query", "name": "order", "serializedName": "order", @@ -110316,13 +110342,13 @@ "readOnly": false }, { - "$id": "8359", + "$id": "8361", "kind": "query", "name": "after", "serializedName": "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": "8360", + "$id": "8362", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110337,7 +110363,7 @@ "readOnly": false }, { - "$id": "8361", + "$id": "8363", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110359,7 +110385,7 @@ 200 ], "bodyType": { - "$ref": "3264" + "$ref": "3266" }, "headers": [], "isErrorResponse": false, @@ -110379,13 +110405,13 @@ }, "parameters": [ { - "$id": "8362", + "$id": "8364", "kind": "method", "name": "limit", "serializedName": "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": "8363", + "$id": "8365", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -110401,7 +110427,7 @@ "decorators": [] }, { - "$id": "8364", + "$id": "8366", "kind": "method", "name": "order", "serializedName": "order", @@ -110419,13 +110445,13 @@ "decorators": [] }, { - "$id": "8365", + "$id": "8367", "kind": "method", "name": "after", "serializedName": "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": "8366", + "$id": "8368", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110441,7 +110467,7 @@ "decorators": [] }, { - "$id": "8367", + "$id": "8369", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110460,7 +110486,7 @@ ], "response": { "type": { - "$ref": "3267" + "$ref": "3269" }, "resultSegments": [ "data" @@ -110476,7 +110502,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8359" + "$ref": "8361" }, "responseSegments": [ "last_id" @@ -110486,19 +110512,19 @@ } }, { - "$id": "8368", + "$id": "8370", "kind": "basic", "name": "createContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8369", + "$id": "8371", "name": "createContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8370", + "$id": "8372", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110515,7 +110541,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.contentType" }, { - "$id": "8371", + "$id": "8373", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110531,12 +110557,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer.accept" }, { - "$id": "8372", + "$id": "8374", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3291" + "$ref": "3293" }, "isApiVersion": false, "contentTypes": [ @@ -110556,7 +110582,7 @@ 200 ], "bodyType": { - "$ref": "3268" + "$ref": "3270" }, "headers": [], "isErrorResponse": false, @@ -110579,12 +110605,12 @@ }, "parameters": [ { - "$id": "8373", + "$id": "8375", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3291" + "$ref": "3293" }, "location": "Body", "isApiVersion": false, @@ -110596,7 +110622,7 @@ "decorators": [] }, { - "$id": "8374", + "$id": "8376", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -110614,7 +110640,7 @@ "decorators": [] }, { - "$id": "8375", + "$id": "8377", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110633,7 +110659,7 @@ ], "response": { "type": { - "$ref": "3268" + "$ref": "3270" } }, "isOverride": false, @@ -110642,24 +110668,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainer" }, { - "$id": "8376", + "$id": "8378", "kind": "basic", "name": "GetContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8377", + "$id": "8379", "name": "GetContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8378", + "$id": "8380", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8379", + "$id": "8381", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110677,7 +110703,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer.container_id" }, { - "$id": "8380", + "$id": "8382", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110699,7 +110725,7 @@ 200 ], "bodyType": { - "$ref": "3268" + "$ref": "3270" }, "headers": [], "isErrorResponse": false, @@ -110719,12 +110745,12 @@ }, "parameters": [ { - "$id": "8381", + "$id": "8383", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8382", + "$id": "8384", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110740,7 +110766,7 @@ "decorators": [] }, { - "$id": "8383", + "$id": "8385", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110759,7 +110785,7 @@ ], "response": { "type": { - "$ref": "3268" + "$ref": "3270" } }, "isOverride": false, @@ -110768,24 +110794,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainer" }, { - "$id": "8384", + "$id": "8386", "kind": "basic", "name": "deleteContainer", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8385", + "$id": "8387", "name": "deleteContainer", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8386", + "$id": "8388", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8387", + "$id": "8389", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110803,7 +110829,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer.container_id" }, { - "$id": "8388", + "$id": "8390", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110825,7 +110851,7 @@ 200 ], "bodyType": { - "$ref": "3300" + "$ref": "3302" }, "headers": [], "isErrorResponse": false, @@ -110845,12 +110871,12 @@ }, "parameters": [ { - "$id": "8389", + "$id": "8391", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8390", + "$id": "8392", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110866,7 +110892,7 @@ "decorators": [] }, { - "$id": "8391", + "$id": "8393", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -110885,7 +110911,7 @@ ], "response": { "type": { - "$ref": "3300" + "$ref": "3302" } }, "isOverride": false, @@ -110894,24 +110920,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainer" }, { - "$id": "8392", + "$id": "8394", "kind": "basic", "name": "createContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8393", + "$id": "8395", "name": "createContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8394", + "$id": "8396", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8395", + "$id": "8397", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -110929,7 +110955,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.container_id" }, { - "$id": "8396", + "$id": "8398", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -110945,7 +110971,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.contentType" }, { - "$id": "8397", + "$id": "8399", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -110961,12 +110987,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile.accept" }, { - "$id": "8398", + "$id": "8400", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3305" + "$ref": "3307" }, "isApiVersion": false, "contentTypes": [ @@ -110986,7 +111012,7 @@ 200 ], "bodyType": { - "$ref": "3310" + "$ref": "3312" }, "headers": [], "isErrorResponse": false, @@ -111009,12 +111035,12 @@ }, "parameters": [ { - "$id": "8399", + "$id": "8401", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8400", + "$id": "8402", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111030,7 +111056,7 @@ "decorators": [] }, { - "$id": "8401", + "$id": "8403", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -111047,12 +111073,12 @@ "decorators": [] }, { - "$id": "8402", + "$id": "8404", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3305" + "$ref": "3307" }, "location": "Body", "isApiVersion": false, @@ -111064,7 +111090,7 @@ "decorators": [] }, { - "$id": "8403", + "$id": "8405", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111083,7 +111109,7 @@ ], "response": { "type": { - "$ref": "3310" + "$ref": "3312" } }, "isOverride": false, @@ -111092,24 +111118,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.createContainerFile" }, { - "$id": "8404", + "$id": "8406", "kind": "paging", "name": "listContainerFiles", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8405", + "$id": "8407", "name": "listContainerFiles", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8406", + "$id": "8408", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8407", + "$id": "8409", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111127,13 +111153,13 @@ "crossLanguageDefinitionId": "OpenAI.Containers.listContainerFiles.container_id" }, { - "$id": "8408", + "$id": "8410", "kind": "query", "name": "limit", "serializedName": "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": "8409", + "$id": "8411", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111148,7 +111174,7 @@ "readOnly": false }, { - "$id": "8410", + "$id": "8412", "kind": "query", "name": "order", "serializedName": "order", @@ -111165,13 +111191,13 @@ "readOnly": false }, { - "$id": "8411", + "$id": "8413", "kind": "query", "name": "after", "serializedName": "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": "8412", + "$id": "8414", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111186,7 +111212,7 @@ "readOnly": false }, { - "$id": "8413", + "$id": "8415", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111208,7 +111234,7 @@ 200 ], "bodyType": { - "$ref": "3326" + "$ref": "3328" }, "headers": [], "isErrorResponse": false, @@ -111228,12 +111254,12 @@ }, "parameters": [ { - "$id": "8414", + "$id": "8416", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8415", + "$id": "8417", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111249,13 +111275,13 @@ "decorators": [] }, { - "$id": "8416", + "$id": "8418", "kind": "method", "name": "limit", "serializedName": "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": "8417", + "$id": "8419", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -111271,7 +111297,7 @@ "decorators": [] }, { - "$id": "8418", + "$id": "8420", "kind": "method", "name": "order", "serializedName": "order", @@ -111289,13 +111315,13 @@ "decorators": [] }, { - "$id": "8419", + "$id": "8421", "kind": "method", "name": "after", "serializedName": "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": "8420", + "$id": "8422", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111311,7 +111337,7 @@ "decorators": [] }, { - "$id": "8421", + "$id": "8423", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111330,7 +111356,7 @@ ], "response": { "type": { - "$ref": "3329" + "$ref": "3331" }, "resultSegments": [ "data" @@ -111346,7 +111372,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8411" + "$ref": "8413" }, "responseSegments": [ "last_id" @@ -111356,24 +111382,24 @@ } }, { - "$id": "8422", + "$id": "8424", "kind": "basic", "name": "GetContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8423", + "$id": "8425", "name": "GetContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8424", + "$id": "8426", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8425", + "$id": "8427", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111391,12 +111417,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.container_id" }, { - "$id": "8426", + "$id": "8428", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8427", + "$id": "8429", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111414,7 +111440,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile.file_id" }, { - "$id": "8428", + "$id": "8430", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111436,7 +111462,7 @@ 200 ], "bodyType": { - "$ref": "3310" + "$ref": "3312" }, "headers": [], "isErrorResponse": false, @@ -111456,12 +111482,12 @@ }, "parameters": [ { - "$id": "8429", + "$id": "8431", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8430", + "$id": "8432", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111477,12 +111503,12 @@ "decorators": [] }, { - "$id": "8431", + "$id": "8433", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8432", + "$id": "8434", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111498,7 +111524,7 @@ "decorators": [] }, { - "$id": "8433", + "$id": "8435", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111517,7 +111543,7 @@ ], "response": { "type": { - "$ref": "3310" + "$ref": "3312" } }, "isOverride": false, @@ -111526,24 +111552,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFile" }, { - "$id": "8434", + "$id": "8436", "kind": "basic", "name": "deleteContainerFile", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8435", + "$id": "8437", "name": "deleteContainerFile", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8436", + "$id": "8438", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8437", + "$id": "8439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111561,12 +111587,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.container_id" }, { - "$id": "8438", + "$id": "8440", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8439", + "$id": "8441", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111584,7 +111610,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile.file_id" }, { - "$id": "8440", + "$id": "8442", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111606,7 +111632,7 @@ 200 ], "bodyType": { - "$ref": "3336" + "$ref": "3338" }, "headers": [], "isErrorResponse": false, @@ -111626,12 +111652,12 @@ }, "parameters": [ { - "$id": "8441", + "$id": "8443", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8442", + "$id": "8444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111647,12 +111673,12 @@ "decorators": [] }, { - "$id": "8443", + "$id": "8445", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8444", + "$id": "8446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111668,7 +111694,7 @@ "decorators": [] }, { - "$id": "8445", + "$id": "8447", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111687,7 +111713,7 @@ ], "response": { "type": { - "$ref": "3336" + "$ref": "3338" } }, "isOverride": false, @@ -111696,24 +111722,24 @@ "crossLanguageDefinitionId": "OpenAI.Containers.deleteContainerFile" }, { - "$id": "8446", + "$id": "8448", "kind": "basic", "name": "GetContainerFileContent", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8447", + "$id": "8449", "name": "GetContainerFileContent", "resourceName": "Containers", "accessibility": "public", "parameters": [ { - "$id": "8448", + "$id": "8450", "kind": "path", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8449", + "$id": "8451", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111731,12 +111757,12 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.container_id" }, { - "$id": "8450", + "$id": "8452", "kind": "path", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8451", + "$id": "8453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111754,7 +111780,7 @@ "crossLanguageDefinitionId": "OpenAI.Containers.retrieveContainerFileContent.file_id" }, { - "$id": "8452", + "$id": "8454", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111776,7 +111802,7 @@ 200 ], "bodyType": { - "$id": "8453", + "$id": "8455", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -111801,12 +111827,12 @@ }, "parameters": [ { - "$id": "8454", + "$id": "8456", "kind": "method", "name": "container_id", "serializedName": "container_id", "type": { - "$id": "8455", + "$id": "8457", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111822,12 +111848,12 @@ "decorators": [] }, { - "$id": "8456", + "$id": "8458", "kind": "method", "name": "file_id", "serializedName": "file_id", "type": { - "$id": "8457", + "$id": "8459", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -111843,7 +111869,7 @@ "decorators": [] }, { - "$id": "8458", + "$id": "8460", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -111862,7 +111888,7 @@ ], "response": { "type": { - "$ref": "8453" + "$ref": "8455" } }, "isOverride": false, @@ -111873,13 +111899,13 @@ ], "parameters": [ { - "$id": "8459", + "$id": "8461", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8460", + "$id": "8462", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -111890,7 +111916,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8461", + "$id": "8463", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -111907,31 +111933,31 @@ "crossLanguageDefinitionId": "OpenAI.Containers", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8462", + "$id": "8464", "kind": "client", "name": "Embeddings", "namespace": "OpenAI", "methods": [ { - "$id": "8463", + "$id": "8465", "kind": "basic", "name": "GenerateEmbeddings", "accessibility": "public", "apiVersions": [], "summary": "Creates an embedding vector representing the input text.", "operation": { - "$id": "8464", + "$id": "8466", "name": "GenerateEmbeddings", "resourceName": "Embeddings", "summary": "Creates an embedding vector representing the input text.", "accessibility": "public", "parameters": [ { - "$id": "8465", + "$id": "8467", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -111947,7 +111973,7 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.accept" }, { - "$id": "8466", + "$id": "8468", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -111964,12 +111990,12 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings.createEmbedding.contentType" }, { - "$id": "8467", + "$id": "8469", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3341" + "$ref": "3343" }, "isApiVersion": false, "contentTypes": [ @@ -111989,7 +112015,7 @@ 200 ], "bodyType": { - "$ref": "3352" + "$ref": "3354" }, "headers": [], "isErrorResponse": false, @@ -112012,7 +112038,7 @@ }, "parameters": [ { - "$id": "8468", + "$id": "8470", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112029,12 +112055,12 @@ "decorators": [] }, { - "$id": "8469", + "$id": "8471", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3341" + "$ref": "3343" }, "location": "Body", "isApiVersion": false, @@ -112046,7 +112072,7 @@ "decorators": [] }, { - "$id": "8470", + "$id": "8472", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -112066,7 +112092,7 @@ ], "response": { "type": { - "$ref": "3352" + "$ref": "3354" } }, "isOverride": false, @@ -112077,13 +112103,13 @@ ], "parameters": [ { - "$id": "8471", + "$id": "8473", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8472", + "$id": "8474", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -112094,7 +112120,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8473", + "$id": "8475", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -112111,31 +112137,31 @@ "crossLanguageDefinitionId": "OpenAI.Embeddings", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8474", + "$id": "8476", "kind": "client", "name": "Files", "namespace": "OpenAI", "methods": [ { - "$id": "8475", + "$id": "8477", "kind": "basic", "name": "GetFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of files that belong to the user's organization.", "operation": { - "$id": "8476", + "$id": "8478", "name": "GetFiles", "resourceName": "Files", "summary": "Returns a list of files that belong to the user's organization.", "accessibility": "public", "parameters": [ { - "$id": "8477", + "$id": "8479", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112151,13 +112177,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles.accept" }, { - "$id": "8478", + "$id": "8480", "kind": "query", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8479", + "$id": "8481", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112178,7 +112204,7 @@ 200 ], "bodyType": { - "$ref": "3373" + "$ref": "3375" }, "headers": [], "isErrorResponse": false, @@ -112198,7 +112224,7 @@ }, "parameters": [ { - "$id": "8480", + "$id": "8482", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112215,13 +112241,13 @@ "decorators": [] }, { - "$id": "8481", + "$id": "8483", "kind": "method", "name": "purpose", "serializedName": "purpose", "doc": "Only return files with the given purpose.", "type": { - "$id": "8482", + "$id": "8484", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112239,7 +112265,7 @@ ], "response": { "type": { - "$ref": "3373" + "$ref": "3375" } }, "isOverride": false, @@ -112248,21 +112274,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.listFiles" }, { - "$id": "8483", + "$id": "8485", "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": "8484", + "$id": "8486", "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": "8485", + "$id": "8487", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112278,7 +112304,7 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.accept" }, { - "$id": "8486", + "$id": "8488", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -112294,12 +112320,12 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile.contentType" }, { - "$id": "8487", + "$id": "8489", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3402" + "$ref": "3404" }, "isApiVersion": false, "contentTypes": [ @@ -112319,7 +112345,7 @@ 200 ], "bodyType": { - "$ref": "3377" + "$ref": "3379" }, "headers": [], "isErrorResponse": false, @@ -112342,7 +112368,7 @@ }, "parameters": [ { - "$id": "8488", + "$id": "8490", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112359,7 +112385,7 @@ "decorators": [] }, { - "$id": "8489", + "$id": "8491", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -112376,12 +112402,12 @@ "decorators": [] }, { - "$id": "8490", + "$id": "8492", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3402" + "$ref": "3404" }, "location": "Body", "isApiVersion": false, @@ -112395,7 +112421,7 @@ ], "response": { "type": { - "$ref": "3377" + "$ref": "3379" } }, "isOverride": false, @@ -112404,21 +112430,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.createFile" }, { - "$id": "8491", + "$id": "8493", "kind": "basic", "name": "deleteFile", "accessibility": "public", "apiVersions": [], "summary": "Delete a file", "operation": { - "$id": "8492", + "$id": "8494", "name": "deleteFile", "resourceName": "Files", "summary": "Delete a file", "accessibility": "public", "parameters": [ { - "$id": "8493", + "$id": "8495", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112434,13 +112460,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile.accept" }, { - "$id": "8494", + "$id": "8496", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8495", + "$id": "8497", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112464,7 +112490,7 @@ 200 ], "bodyType": { - "$ref": "3406" + "$ref": "3408" }, "headers": [], "isErrorResponse": false, @@ -112484,7 +112510,7 @@ }, "parameters": [ { - "$id": "8496", + "$id": "8498", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112501,13 +112527,13 @@ "decorators": [] }, { - "$id": "8497", + "$id": "8499", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8498", + "$id": "8500", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112525,7 +112551,7 @@ ], "response": { "type": { - "$ref": "3406" + "$ref": "3408" } }, "isOverride": false, @@ -112534,21 +112560,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.deleteFile" }, { - "$id": "8499", + "$id": "8501", "kind": "basic", "name": "GetFile", "accessibility": "public", "apiVersions": [], "summary": "Returns information about a specific file.", "operation": { - "$id": "8500", + "$id": "8502", "name": "GetFile", "resourceName": "Files", "summary": "Returns information about a specific file.", "accessibility": "public", "parameters": [ { - "$id": "8501", + "$id": "8503", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112564,13 +112590,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile.accept" }, { - "$id": "8502", + "$id": "8504", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8503", + "$id": "8505", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112594,7 +112620,7 @@ 200 ], "bodyType": { - "$ref": "3377" + "$ref": "3379" }, "headers": [], "isErrorResponse": false, @@ -112614,7 +112640,7 @@ }, "parameters": [ { - "$id": "8504", + "$id": "8506", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112631,13 +112657,13 @@ "decorators": [] }, { - "$id": "8505", + "$id": "8507", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8506", + "$id": "8508", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112655,7 +112681,7 @@ ], "response": { "type": { - "$ref": "3377" + "$ref": "3379" } }, "isOverride": false, @@ -112664,21 +112690,21 @@ "crossLanguageDefinitionId": "OpenAI.Files.retrieveFile" }, { - "$id": "8507", + "$id": "8509", "kind": "basic", "name": "downloadFile", "accessibility": "public", "apiVersions": [], "summary": "Returns the contents of the specified file.", "operation": { - "$id": "8508", + "$id": "8510", "name": "downloadFile", "resourceName": "Files", "summary": "Returns the contents of the specified file.", "accessibility": "public", "parameters": [ { - "$id": "8509", + "$id": "8511", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112694,13 +112720,13 @@ "crossLanguageDefinitionId": "OpenAI.Files.downloadFile.accept" }, { - "$id": "8510", + "$id": "8512", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8511", + "$id": "8513", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112724,7 +112750,7 @@ 200 ], "bodyType": { - "$id": "8512", + "$id": "8514", "kind": "bytes", "name": "bytes", "encode": "base64", @@ -112749,7 +112775,7 @@ }, "parameters": [ { - "$id": "8513", + "$id": "8515", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -112766,13 +112792,13 @@ "decorators": [] }, { - "$id": "8514", + "$id": "8516", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to use for this request.", "type": { - "$id": "8515", + "$id": "8517", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112790,7 +112816,7 @@ ], "response": { "type": { - "$ref": "8512" + "$ref": "8514" } }, "isOverride": false, @@ -112801,13 +112827,13 @@ ], "parameters": [ { - "$id": "8516", + "$id": "8518", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8517", + "$id": "8519", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -112818,7 +112844,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8518", + "$id": "8520", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -112835,37 +112861,37 @@ "crossLanguageDefinitionId": "OpenAI.Files", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8519", + "$id": "8521", "kind": "client", "name": "FineTuning", "namespace": "OpenAI", "methods": [ { - "$id": "8520", + "$id": "8522", "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": "8521", + "$id": "8523", "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": "8522", + "$id": "8524", "kind": "path", "name": "fine_tuned_model_checkpoint", "serializedName": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to get permissions for.", "type": { - "$id": "8523", + "$id": "8525", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112883,13 +112909,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions.fine_tuned_model_checkpoint" }, { - "$id": "8524", + "$id": "8526", "kind": "query", "name": "after", "serializedName": "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": "8525", + "$id": "8527", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112904,13 +112930,13 @@ "readOnly": false }, { - "$id": "8526", + "$id": "8528", "kind": "query", "name": "limit", "serializedName": "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": "8527", + "$id": "8529", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -112925,7 +112951,7 @@ "readOnly": false }, { - "$id": "8528", + "$id": "8530", "kind": "query", "name": "order", "serializedName": "order", @@ -112942,13 +112968,13 @@ "readOnly": false }, { - "$id": "8529", + "$id": "8531", "kind": "query", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8530", + "$id": "8532", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -112963,7 +112989,7 @@ "readOnly": false }, { - "$id": "8531", + "$id": "8533", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -112985,7 +113011,7 @@ 200 ], "bodyType": { - "$ref": "3412" + "$ref": "3414" }, "headers": [], "isErrorResponse": false, @@ -113005,13 +113031,13 @@ }, "parameters": [ { - "$id": "8532", + "$id": "8534", "kind": "method", "name": "fine_tuned_model_checkpoint", "serializedName": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to get permissions for.", "type": { - "$id": "8533", + "$id": "8535", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113027,13 +113053,13 @@ "decorators": [] }, { - "$id": "8534", + "$id": "8536", "kind": "method", "name": "after", "serializedName": "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": "8535", + "$id": "8537", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113049,13 +113075,13 @@ "decorators": [] }, { - "$id": "8536", + "$id": "8538", "kind": "method", "name": "limit", "serializedName": "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": "8537", + "$id": "8539", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113071,7 +113097,7 @@ "decorators": [] }, { - "$id": "8538", + "$id": "8540", "kind": "method", "name": "order", "serializedName": "order", @@ -113089,13 +113115,13 @@ "decorators": [] }, { - "$id": "8539", + "$id": "8541", "kind": "method", "name": "project_id", "serializedName": "project_id", "doc": "The ID of the project to get permissions for.", "type": { - "$id": "8540", + "$id": "8542", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113111,7 +113137,7 @@ "decorators": [] }, { - "$id": "8541", + "$id": "8543", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113130,7 +113156,7 @@ ], "response": { "type": { - "$ref": "3412" + "$ref": "3414" } }, "isOverride": false, @@ -113139,27 +113165,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningCheckpointPermissions" }, { - "$id": "8542", + "$id": "8544", "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": "8543", + "$id": "8545", "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": "8544", + "$id": "8546", "kind": "path", "name": "fine_tuned_model_checkpoint", "serializedName": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to create a permission for.", "type": { - "$id": "8545", + "$id": "8547", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113177,7 +113203,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8546", + "$id": "8548", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -113194,7 +113220,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.contentType" }, { - "$id": "8547", + "$id": "8549", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113210,12 +113236,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission.accept" }, { - "$id": "8548", + "$id": "8550", "kind": "body", "name": "createFineTuningCheckpointPermissionRequest", "serializedName": "createFineTuningCheckpointPermissionRequest", "type": { - "$ref": "3433" + "$ref": "3435" }, "isApiVersion": false, "contentTypes": [ @@ -113235,7 +113261,7 @@ 200 ], "bodyType": { - "$ref": "3412" + "$ref": "3414" }, "headers": [], "isErrorResponse": false, @@ -113258,13 +113284,13 @@ }, "parameters": [ { - "$id": "8549", + "$id": "8551", "kind": "method", "name": "fine_tuned_model_checkpoint", "serializedName": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to create a permission for.", "type": { - "$id": "8550", + "$id": "8552", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113280,7 +113306,7 @@ "decorators": [] }, { - "$id": "8551", + "$id": "8553", "kind": "method", "name": "project_ids", "serializedName": "project_ids", @@ -113298,7 +113324,7 @@ "decorators": [] }, { - "$id": "8552", + "$id": "8554", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113316,7 +113342,7 @@ "decorators": [] }, { - "$id": "8553", + "$id": "8555", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113335,7 +113361,7 @@ ], "response": { "type": { - "$ref": "3412" + "$ref": "3414" } }, "isOverride": false, @@ -113344,27 +113370,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningCheckpointPermission" }, { - "$id": "8554", + "$id": "8556", "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": "8555", + "$id": "8557", "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": "8556", + "$id": "8558", "kind": "path", "name": "fine_tuned_model_checkpoint", "serializedName": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to delete a permission for.", "type": { - "$id": "8557", + "$id": "8559", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113382,13 +113408,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.fine_tuned_model_checkpoint" }, { - "$id": "8558", + "$id": "8560", "kind": "path", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8559", + "$id": "8561", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113406,7 +113432,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission.permission_id" }, { - "$id": "8560", + "$id": "8562", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113428,7 +113454,7 @@ 200 ], "bodyType": { - "$ref": "3435" + "$ref": "3437" }, "headers": [], "isErrorResponse": false, @@ -113448,13 +113474,13 @@ }, "parameters": [ { - "$id": "8561", + "$id": "8563", "kind": "method", "name": "fine_tuned_model_checkpoint", "serializedName": "fine_tuned_model_checkpoint", "doc": "The ID of the fine-tuned model checkpoint to delete a permission for.", "type": { - "$id": "8562", + "$id": "8564", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113470,13 +113496,13 @@ "decorators": [] }, { - "$id": "8563", + "$id": "8565", "kind": "method", "name": "permission_id", "serializedName": "permission_id", "doc": "The ID of the permission to delete.", "type": { - "$id": "8564", + "$id": "8566", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113492,7 +113518,7 @@ "decorators": [] }, { - "$id": "8565", + "$id": "8567", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113511,7 +113537,7 @@ ], "response": { "type": { - "$ref": "3435" + "$ref": "3437" } }, "isOverride": false, @@ -113520,21 +113546,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.deleteFineTuningCheckpointPermission" }, { - "$id": "8566", + "$id": "8568", "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": "8567", + "$id": "8569", "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": "8568", + "$id": "8570", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113550,7 +113576,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.accept" }, { - "$id": "8569", + "$id": "8571", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -113567,12 +113593,12 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob.contentType" }, { - "$id": "8570", + "$id": "8572", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3441" + "$ref": "3443" }, "isApiVersion": false, "contentTypes": [ @@ -113592,7 +113618,7 @@ 200 ], "bodyType": { - "$ref": "3637" + "$ref": "3639" }, "headers": [], "isErrorResponse": false, @@ -113615,7 +113641,7 @@ }, "parameters": [ { - "$id": "8571", + "$id": "8573", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113632,12 +113658,12 @@ "decorators": [] }, { - "$id": "8572", + "$id": "8574", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "3441" + "$ref": "3443" }, "location": "Body", "isApiVersion": false, @@ -113649,7 +113675,7 @@ "decorators": [] }, { - "$id": "8573", + "$id": "8575", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -113669,7 +113695,7 @@ ], "response": { "type": { - "$ref": "3637" + "$ref": "3639" } }, "isOverride": false, @@ -113678,21 +113704,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.createFineTuningJob" }, { - "$id": "8574", + "$id": "8576", "kind": "basic", "name": "listPaginatedFineTuningJobs", "accessibility": "public", "apiVersions": [], "summary": "List your organization's fine-tuning jobs", "operation": { - "$id": "8575", + "$id": "8577", "name": "listPaginatedFineTuningJobs", "resourceName": "FineTuning", "summary": "List your organization's fine-tuning jobs", "accessibility": "public", "parameters": [ { - "$id": "8576", + "$id": "8578", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113708,13 +113734,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs.accept" }, { - "$id": "8577", + "$id": "8579", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8578", + "$id": "8580", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113729,13 +113755,13 @@ "readOnly": false }, { - "$id": "8579", + "$id": "8581", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8580", + "$id": "8582", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113756,7 +113782,7 @@ 200 ], "bodyType": { - "$ref": "3720" + "$ref": "3722" }, "headers": [], "isErrorResponse": false, @@ -113776,7 +113802,7 @@ }, "parameters": [ { - "$id": "8581", + "$id": "8583", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113793,13 +113819,13 @@ "decorators": [] }, { - "$id": "8582", + "$id": "8584", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last job from the previous pagination request.", "type": { - "$id": "8583", + "$id": "8585", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113815,13 +113841,13 @@ "decorators": [] }, { - "$id": "8584", + "$id": "8586", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of fine-tuning jobs to retrieve.", "type": { - "$id": "8585", + "$id": "8587", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -113839,7 +113865,7 @@ ], "response": { "type": { - "$ref": "3720" + "$ref": "3722" } }, "isOverride": false, @@ -113848,21 +113874,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listPaginatedFineTuningJobs" }, { - "$id": "8586", + "$id": "8588", "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": "8587", + "$id": "8589", "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": "8588", + "$id": "8590", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -113878,13 +113904,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob.accept" }, { - "$id": "8589", + "$id": "8591", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8590", + "$id": "8592", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113908,7 +113934,7 @@ 200 ], "bodyType": { - "$ref": "3637" + "$ref": "3639" }, "headers": [], "isErrorResponse": false, @@ -113928,7 +113954,7 @@ }, "parameters": [ { - "$id": "8591", + "$id": "8593", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -113945,13 +113971,13 @@ "decorators": [] }, { - "$id": "8592", + "$id": "8594", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job.", "type": { - "$id": "8593", + "$id": "8595", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -113969,7 +113995,7 @@ ], "response": { "type": { - "$ref": "3637" + "$ref": "3639" } }, "isOverride": false, @@ -113978,21 +114004,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.retrieveFineTuningJob" }, { - "$id": "8594", + "$id": "8596", "kind": "basic", "name": "cancelFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Immediately cancel a fine-tune job.", "operation": { - "$id": "8595", + "$id": "8597", "name": "cancelFineTuningJob", "resourceName": "FineTuning", "summary": "Immediately cancel a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8596", + "$id": "8598", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114008,13 +114034,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob.accept" }, { - "$id": "8597", + "$id": "8599", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8598", + "$id": "8600", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114038,7 +114064,7 @@ 200 ], "bodyType": { - "$ref": "3637" + "$ref": "3639" }, "headers": [], "isErrorResponse": false, @@ -114058,7 +114084,7 @@ }, "parameters": [ { - "$id": "8599", + "$id": "8601", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114075,13 +114101,13 @@ "decorators": [] }, { - "$id": "8600", + "$id": "8602", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to cancel.", "type": { - "$id": "8601", + "$id": "8603", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114099,7 +114125,7 @@ ], "response": { "type": { - "$ref": "3637" + "$ref": "3639" } }, "isOverride": false, @@ -114108,21 +114134,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.cancelFineTuningJob" }, { - "$id": "8602", + "$id": "8604", "kind": "basic", "name": "listFineTuningJobCheckpoints", "accessibility": "public", "apiVersions": [], "summary": "List the checkpoints for a fine-tuning job.", "operation": { - "$id": "8603", + "$id": "8605", "name": "listFineTuningJobCheckpoints", "resourceName": "FineTuning", "summary": "List the checkpoints for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8604", + "$id": "8606", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114138,13 +114164,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.accept" }, { - "$id": "8605", + "$id": "8607", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get checkpoints for.", "type": { - "$id": "8606", + "$id": "8608", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114162,13 +114188,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints.fine_tuning_job_id" }, { - "$id": "8607", + "$id": "8609", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8608", + "$id": "8610", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114183,13 +114209,13 @@ "readOnly": false }, { - "$id": "8609", + "$id": "8611", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8610", + "$id": "8612", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114210,7 +114236,7 @@ 200 ], "bodyType": { - "$ref": "3726" + "$ref": "3728" }, "headers": [], "isErrorResponse": false, @@ -114230,7 +114256,7 @@ }, "parameters": [ { - "$id": "8611", + "$id": "8613", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114247,13 +114273,13 @@ "decorators": [] }, { - "$id": "8612", + "$id": "8614", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get checkpoints for.", "type": { - "$id": "8613", + "$id": "8615", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114269,13 +114295,13 @@ "decorators": [] }, { - "$id": "8614", + "$id": "8616", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last checkpoint ID from the previous pagination request.", "type": { - "$id": "8615", + "$id": "8617", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114291,13 +114317,13 @@ "decorators": [] }, { - "$id": "8616", + "$id": "8618", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of checkpoints to retrieve.", "type": { - "$id": "8617", + "$id": "8619", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114315,7 +114341,7 @@ ], "response": { "type": { - "$ref": "3726" + "$ref": "3728" } }, "isOverride": false, @@ -114324,21 +114350,21 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningJobCheckpoints" }, { - "$id": "8618", + "$id": "8620", "kind": "basic", "name": "listFineTuningEvents", "accessibility": "public", "apiVersions": [], "summary": "Get status updates for a fine-tuning job.", "operation": { - "$id": "8619", + "$id": "8621", "name": "listFineTuningEvents", "resourceName": "FineTuning", "summary": "Get status updates for a fine-tuning job.", "accessibility": "public", "parameters": [ { - "$id": "8620", + "$id": "8622", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114354,13 +114380,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.accept" }, { - "$id": "8621", + "$id": "8623", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get events for.", "type": { - "$id": "8622", + "$id": "8624", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114378,13 +114404,13 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents.fine_tuning_job_id" }, { - "$id": "8623", + "$id": "8625", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8624", + "$id": "8626", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114399,13 +114425,13 @@ "readOnly": false }, { - "$id": "8625", + "$id": "8627", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8626", + "$id": "8628", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114426,7 +114452,7 @@ 200 ], "bodyType": { - "$ref": "3767" + "$ref": "3769" }, "headers": [], "isErrorResponse": false, @@ -114446,7 +114472,7 @@ }, "parameters": [ { - "$id": "8627", + "$id": "8629", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114463,13 +114489,13 @@ "decorators": [] }, { - "$id": "8628", + "$id": "8630", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to get events for.", "type": { - "$id": "8629", + "$id": "8631", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114485,13 +114511,13 @@ "decorators": [] }, { - "$id": "8630", + "$id": "8632", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last event from the previous pagination request.", "type": { - "$id": "8631", + "$id": "8633", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114507,13 +114533,13 @@ "decorators": [] }, { - "$id": "8632", + "$id": "8634", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "Number of events to retrieve.", "type": { - "$id": "8633", + "$id": "8635", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -114531,7 +114557,7 @@ ], "response": { "type": { - "$ref": "3767" + "$ref": "3769" } }, "isOverride": false, @@ -114540,27 +114566,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.listFineTuningEvents" }, { - "$id": "8634", + "$id": "8636", "kind": "basic", "name": "pauseFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Pause a fine-tune job.", "operation": { - "$id": "8635", + "$id": "8637", "name": "pauseFineTuningJob", "resourceName": "FineTuning", "summary": "Pause a fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8636", + "$id": "8638", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8637", + "$id": "8639", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114578,7 +114604,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob.fine_tuning_job_id" }, { - "$id": "8638", + "$id": "8640", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114600,7 +114626,7 @@ 200 ], "bodyType": { - "$ref": "3637" + "$ref": "3639" }, "headers": [], "isErrorResponse": false, @@ -114620,13 +114646,13 @@ }, "parameters": [ { - "$id": "8639", + "$id": "8641", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to pause.", "type": { - "$id": "8640", + "$id": "8642", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114642,7 +114668,7 @@ "decorators": [] }, { - "$id": "8641", + "$id": "8643", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114661,7 +114687,7 @@ ], "response": { "type": { - "$ref": "3637" + "$ref": "3639" } }, "isOverride": false, @@ -114670,27 +114696,27 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.pauseFineTuningJob" }, { - "$id": "8642", + "$id": "8644", "kind": "basic", "name": "resumeFineTuningJob", "accessibility": "public", "apiVersions": [], "summary": "Resume a paused fine-tune job.", "operation": { - "$id": "8643", + "$id": "8645", "name": "resumeFineTuningJob", "resourceName": "FineTuning", "summary": "Resume a paused fine-tune job.", "accessibility": "public", "parameters": [ { - "$id": "8644", + "$id": "8646", "kind": "path", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8645", + "$id": "8647", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114708,7 +114734,7 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning.resumeFineTuningJob.fine_tuning_job_id" }, { - "$id": "8646", + "$id": "8648", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114730,7 +114756,7 @@ 200 ], "bodyType": { - "$ref": "3637" + "$ref": "3639" }, "headers": [], "isErrorResponse": false, @@ -114750,13 +114776,13 @@ }, "parameters": [ { - "$id": "8647", + "$id": "8649", "kind": "method", "name": "fine_tuning_job_id", "serializedName": "fine_tuning_job_id", "doc": "The ID of the fine-tuning job to resume.", "type": { - "$id": "8648", + "$id": "8650", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -114772,7 +114798,7 @@ "decorators": [] }, { - "$id": "8649", + "$id": "8651", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114791,7 +114817,7 @@ ], "response": { "type": { - "$ref": "3637" + "$ref": "3639" } }, "isOverride": false, @@ -114802,13 +114828,13 @@ ], "parameters": [ { - "$id": "8650", + "$id": "8652", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8651", + "$id": "8653", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -114819,7 +114845,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8652", + "$id": "8654", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -114836,31 +114862,31 @@ "crossLanguageDefinitionId": "OpenAI.FineTuning", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8653", + "$id": "8655", "kind": "client", "name": "Graders", "namespace": "OpenAI", "methods": [ { - "$id": "8654", + "$id": "8656", "kind": "basic", "name": "runGrader", "accessibility": "public", "apiVersions": [], "summary": "Run a grader.", "operation": { - "$id": "8655", + "$id": "8657", "name": "runGrader", "resourceName": "Graders", "summary": "Run a grader.", "accessibility": "public", "parameters": [ { - "$id": "8656", + "$id": "8658", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -114877,7 +114903,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.contentType" }, { - "$id": "8657", + "$id": "8659", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -114893,12 +114919,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader.accept" }, { - "$id": "8658", + "$id": "8660", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3786" + "$ref": "3788" }, "isApiVersion": false, "contentTypes": [ @@ -114918,7 +114944,7 @@ 200 ], "bodyType": { - "$ref": "3793" + "$ref": "3795" }, "headers": [], "isErrorResponse": false, @@ -114941,12 +114967,12 @@ }, "parameters": [ { - "$id": "8659", + "$id": "8661", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3786" + "$ref": "3788" }, "location": "Body", "isApiVersion": false, @@ -114958,7 +114984,7 @@ "decorators": [] }, { - "$id": "8660", + "$id": "8662", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -114976,7 +115002,7 @@ "decorators": [] }, { - "$id": "8661", + "$id": "8663", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -114995,7 +115021,7 @@ ], "response": { "type": { - "$ref": "3793" + "$ref": "3795" } }, "isOverride": false, @@ -115004,21 +115030,21 @@ "crossLanguageDefinitionId": "OpenAI.Graders.runGrader" }, { - "$id": "8662", + "$id": "8664", "kind": "basic", "name": "validateGrader", "accessibility": "public", "apiVersions": [], "summary": "Validate a grader.", "operation": { - "$id": "8663", + "$id": "8665", "name": "validateGrader", "resourceName": "Graders", "summary": "Validate a grader.", "accessibility": "public", "parameters": [ { - "$id": "8664", + "$id": "8666", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -115035,7 +115061,7 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.contentType" }, { - "$id": "8665", + "$id": "8667", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115051,12 +115077,12 @@ "crossLanguageDefinitionId": "OpenAI.Graders.validateGrader.accept" }, { - "$id": "8666", + "$id": "8668", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "3849" + "$ref": "3851" }, "isApiVersion": false, "contentTypes": [ @@ -115076,7 +115102,7 @@ 200 ], "bodyType": { - "$ref": "3852" + "$ref": "3854" }, "headers": [], "isErrorResponse": false, @@ -115099,12 +115125,12 @@ }, "parameters": [ { - "$id": "8667", + "$id": "8669", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "3849" + "$ref": "3851" }, "location": "Body", "isApiVersion": false, @@ -115116,7 +115142,7 @@ "decorators": [] }, { - "$id": "8668", + "$id": "8670", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -115134,7 +115160,7 @@ "decorators": [] }, { - "$id": "8669", + "$id": "8671", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115153,7 +115179,7 @@ ], "response": { "type": { - "$ref": "3852" + "$ref": "3854" } }, "isOverride": false, @@ -115164,13 +115190,13 @@ ], "parameters": [ { - "$id": "8670", + "$id": "8672", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8671", + "$id": "8673", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -115181,7 +115207,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8672", + "$id": "8674", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -115198,37 +115224,37 @@ "crossLanguageDefinitionId": "OpenAI.Graders", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8673", + "$id": "8675", "kind": "client", "name": "Evals", "namespace": "OpenAI", "methods": [ { - "$id": "8674", + "$id": "8676", "kind": "basic", "name": "listEvals", "accessibility": "public", "apiVersions": [], "summary": "List evaluations for a project.", "operation": { - "$id": "8675", + "$id": "8677", "name": "listEvals", "resourceName": "Evals", "summary": "List evaluations for a project.", "accessibility": "public", "parameters": [ { - "$id": "8676", + "$id": "8678", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8677", + "$id": "8679", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115243,13 +115269,13 @@ "readOnly": false }, { - "$id": "8678", + "$id": "8680", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8679", + "$id": "8681", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115264,7 +115290,7 @@ "readOnly": false }, { - "$id": "8680", + "$id": "8682", "kind": "query", "name": "order", "serializedName": "order", @@ -115281,7 +115307,7 @@ "readOnly": false }, { - "$id": "8681", + "$id": "8683", "kind": "query", "name": "order_by", "serializedName": "order_by", @@ -115298,7 +115324,7 @@ "readOnly": false }, { - "$id": "8682", + "$id": "8684", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115320,7 +115346,7 @@ 200 ], "bodyType": { - "$ref": "3855" + "$ref": "3857" }, "headers": [], "isErrorResponse": false, @@ -115340,13 +115366,13 @@ }, "parameters": [ { - "$id": "8683", + "$id": "8685", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last eval from the previous pagination request.", "type": { - "$id": "8684", + "$id": "8686", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115362,13 +115388,13 @@ "decorators": [] }, { - "$id": "8685", + "$id": "8687", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of evals to be returned in a single pagination response.", "type": { - "$id": "8686", + "$id": "8688", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -115384,7 +115410,7 @@ "decorators": [] }, { - "$id": "8687", + "$id": "8689", "kind": "method", "name": "order", "serializedName": "order", @@ -115402,7 +115428,7 @@ "decorators": [] }, { - "$id": "8688", + "$id": "8690", "kind": "method", "name": "order_by", "serializedName": "order_by", @@ -115420,7 +115446,7 @@ "decorators": [] }, { - "$id": "8689", + "$id": "8691", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115439,7 +115465,7 @@ ], "response": { "type": { - "$ref": "3855" + "$ref": "3857" } }, "isOverride": false, @@ -115448,21 +115474,21 @@ "crossLanguageDefinitionId": "OpenAI.Evals.listEvals" }, { - "$id": "8690", + "$id": "8692", "kind": "basic", "name": "createEval", "accessibility": "public", "apiVersions": [], "doc": "Create the structure of an evaluation that can be used to test a model's\nperformance.\n\nAn evaluation is a set of testing criteria and a datasource. After\ncreating an evaluation, you can run it on different models and model\nparameters. We support several types of graders and datasources.\n\nFor more information, see the [Evals guide](/docs/guides/evals).", "operation": { - "$id": "8691", + "$id": "8693", "name": "createEval", "resourceName": "Evals", "doc": "Create the structure of an evaluation that can be used to test a model's\nperformance.\n\nAn evaluation is a set of testing criteria and a datasource. After\ncreating an evaluation, you can run it on different models and model\nparameters. We support several types of graders and datasources.\n\nFor more information, see the [Evals guide](/docs/guides/evals).", "accessibility": "public", "parameters": [ { - "$id": "8692", + "$id": "8694", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -115479,7 +115505,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.contentType" }, { - "$id": "8693", + "$id": "8695", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115495,12 +115521,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval.accept" }, { - "$id": "8694", + "$id": "8696", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "3947" + "$ref": "3949" }, "isApiVersion": false, "contentTypes": [ @@ -115520,7 +115546,7 @@ 201 ], "bodyType": { - "$ref": "3859" + "$ref": "3861" }, "headers": [], "isErrorResponse": false, @@ -115543,12 +115569,12 @@ }, "parameters": [ { - "$id": "8695", + "$id": "8697", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "3947" + "$ref": "3949" }, "location": "Body", "isApiVersion": false, @@ -115560,7 +115586,7 @@ "decorators": [] }, { - "$id": "8696", + "$id": "8698", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -115578,7 +115604,7 @@ "decorators": [] }, { - "$id": "8697", + "$id": "8699", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115597,7 +115623,7 @@ ], "response": { "type": { - "$ref": "3859" + "$ref": "3861" } }, "isOverride": false, @@ -115606,26 +115632,26 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEval" }, { - "$id": "8698", + "$id": "8700", "kind": "basic", "name": "getEval", "accessibility": "public", "apiVersions": [], "summary": "Retrieve an evaluation by its ID.", "operation": { - "$id": "8699", + "$id": "8701", "name": "getEval", "resourceName": "Evals", "summary": "Retrieve an evaluation by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8700", + "$id": "8702", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8701", + "$id": "8703", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115643,7 +115669,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval.eval_id" }, { - "$id": "8702", + "$id": "8704", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115665,7 +115691,7 @@ 200 ], "bodyType": { - "$ref": "3859" + "$ref": "3861" }, "headers": [], "isErrorResponse": false, @@ -115685,12 +115711,12 @@ }, "parameters": [ { - "$id": "8703", + "$id": "8705", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "type": { - "$id": "8704", + "$id": "8706", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115706,7 +115732,7 @@ "decorators": [] }, { - "$id": "8705", + "$id": "8707", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115725,7 +115751,7 @@ ], "response": { "type": { - "$ref": "3859" + "$ref": "3861" } }, "isOverride": false, @@ -115734,27 +115760,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEval" }, { - "$id": "8706", + "$id": "8708", "kind": "basic", "name": "updateEval", "accessibility": "public", "apiVersions": [], "doc": "Update select, mutable properties of a specified evaluation.", "operation": { - "$id": "8707", + "$id": "8709", "name": "updateEval", "resourceName": "Evals", "doc": "Update select, mutable properties of a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8708", + "$id": "8710", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8709", + "$id": "8711", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115772,7 +115798,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.eval_id" }, { - "$id": "8710", + "$id": "8712", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -115789,7 +115815,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.contentType" }, { - "$id": "8711", + "$id": "8713", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115805,12 +115831,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval.accept" }, { - "$id": "8712", + "$id": "8714", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4027" + "$ref": "4029" }, "isApiVersion": false, "contentTypes": [ @@ -115830,7 +115856,7 @@ 200 ], "bodyType": { - "$ref": "3859" + "$ref": "3861" }, "headers": [], "isErrorResponse": false, @@ -115853,13 +115879,13 @@ }, "parameters": [ { - "$id": "8713", + "$id": "8715", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to update.", "type": { - "$id": "8714", + "$id": "8716", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115875,12 +115901,12 @@ "decorators": [] }, { - "$id": "8715", + "$id": "8717", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4027" + "$ref": "4029" }, "location": "Body", "isApiVersion": false, @@ -115892,7 +115918,7 @@ "decorators": [] }, { - "$id": "8716", + "$id": "8718", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -115910,7 +115936,7 @@ "decorators": [] }, { - "$id": "8717", + "$id": "8719", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -115929,7 +115955,7 @@ ], "response": { "type": { - "$ref": "3859" + "$ref": "3861" } }, "isOverride": false, @@ -115938,27 +115964,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.updateEval" }, { - "$id": "8718", + "$id": "8720", "kind": "basic", "name": "deleteEval", "accessibility": "public", "apiVersions": [], "doc": "Delete a specified evaluation.", "operation": { - "$id": "8719", + "$id": "8721", "name": "deleteEval", "resourceName": "Evals", "doc": "Delete a specified evaluation.", "accessibility": "public", "parameters": [ { - "$id": "8720", + "$id": "8722", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8721", + "$id": "8723", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -115976,7 +116002,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval.eval_id" }, { - "$id": "8722", + "$id": "8724", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -115998,7 +116024,7 @@ 200 ], "bodyType": { - "$ref": "4033" + "$ref": "4035" }, "headers": [], "isErrorResponse": false, @@ -116018,13 +116044,13 @@ }, "parameters": [ { - "$id": "8723", + "$id": "8725", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to delete.", "type": { - "$id": "8724", + "$id": "8726", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116040,7 +116066,7 @@ "decorators": [] }, { - "$id": "8725", + "$id": "8727", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116059,7 +116085,7 @@ ], "response": { "type": { - "$ref": "4033" + "$ref": "4035" } }, "isOverride": false, @@ -116068,7 +116094,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEval" }, { - "$id": "8726", + "$id": "8728", "kind": "basic", "name": "getEvalRuns", "accessibility": "public", @@ -116076,7 +116102,7 @@ "doc": "Retrieve a list of runs for a specified evaluation.", "summary": "", "operation": { - "$id": "8727", + "$id": "8729", "name": "getEvalRuns", "resourceName": "Evals", "summary": "", @@ -116084,13 +116110,13 @@ "accessibility": "public", "parameters": [ { - "$id": "8728", + "$id": "8730", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8729", + "$id": "8731", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116108,13 +116134,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns.eval_id" }, { - "$id": "8730", + "$id": "8732", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8731", + "$id": "8733", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116129,13 +116155,13 @@ "readOnly": false }, { - "$id": "8732", + "$id": "8734", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8733", + "$id": "8735", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116150,7 +116176,7 @@ "readOnly": false }, { - "$id": "8734", + "$id": "8736", "kind": "query", "name": "order", "serializedName": "order", @@ -116167,7 +116193,7 @@ "readOnly": false }, { - "$id": "8735", + "$id": "8737", "kind": "query", "name": "status", "serializedName": "status", @@ -116184,7 +116210,7 @@ "readOnly": false }, { - "$id": "8736", + "$id": "8738", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116206,7 +116232,7 @@ 200 ], "bodyType": { - "$ref": "4039" + "$ref": "4041" }, "headers": [], "isErrorResponse": false, @@ -116226,13 +116252,13 @@ }, "parameters": [ { - "$id": "8737", + "$id": "8739", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to retrieve runs for.", "type": { - "$id": "8738", + "$id": "8740", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116248,13 +116274,13 @@ "decorators": [] }, { - "$id": "8739", + "$id": "8741", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last run from the previous pagination request.", "type": { - "$id": "8740", + "$id": "8742", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116270,13 +116296,13 @@ "decorators": [] }, { - "$id": "8741", + "$id": "8743", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of runs to be returned in a single pagination response.", "type": { - "$id": "8742", + "$id": "8744", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -116292,7 +116318,7 @@ "decorators": [] }, { - "$id": "8743", + "$id": "8745", "kind": "method", "name": "order", "serializedName": "order", @@ -116310,7 +116336,7 @@ "decorators": [] }, { - "$id": "8744", + "$id": "8746", "kind": "method", "name": "status", "serializedName": "status", @@ -116328,7 +116354,7 @@ "decorators": [] }, { - "$id": "8745", + "$id": "8747", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116347,7 +116373,7 @@ ], "response": { "type": { - "$ref": "4039" + "$ref": "4041" } }, "isOverride": false, @@ -116356,27 +116382,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRuns" }, { - "$id": "8746", + "$id": "8748", "kind": "basic", "name": "createEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Create a new evaluation run, beginning the grading process.", "operation": { - "$id": "8747", + "$id": "8749", "name": "createEvalRun", "resourceName": "Evals", "doc": "Create a new evaluation run, beginning the grading process.", "accessibility": "public", "parameters": [ { - "$id": "8748", + "$id": "8750", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8749", + "$id": "8751", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116394,7 +116420,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.eval_id" }, { - "$id": "8750", + "$id": "8752", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -116411,7 +116437,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.contentType" }, { - "$id": "8751", + "$id": "8753", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116427,12 +116453,12 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun.accept" }, { - "$id": "8752", + "$id": "8754", "kind": "body", "name": "body", "serializedName": "body", "type": { - "$ref": "4110" + "$ref": "4112" }, "isApiVersion": false, "contentTypes": [ @@ -116452,7 +116478,7 @@ 201 ], "bodyType": { - "$ref": "4043" + "$ref": "4045" }, "headers": [], "isErrorResponse": false, @@ -116475,13 +116501,13 @@ }, "parameters": [ { - "$id": "8753", + "$id": "8755", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation to run.", "type": { - "$id": "8754", + "$id": "8756", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116497,12 +116523,12 @@ "decorators": [] }, { - "$id": "8755", + "$id": "8757", "kind": "method", "name": "body", "serializedName": "body", "type": { - "$ref": "4110" + "$ref": "4112" }, "location": "Body", "isApiVersion": false, @@ -116514,7 +116540,7 @@ "decorators": [] }, { - "$id": "8756", + "$id": "8758", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -116532,7 +116558,7 @@ "decorators": [] }, { - "$id": "8757", + "$id": "8759", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116551,7 +116577,7 @@ ], "response": { "type": { - "$ref": "4043" + "$ref": "4045" } }, "isOverride": false, @@ -116560,27 +116586,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.createEvalRun" }, { - "$id": "8758", + "$id": "8760", "kind": "basic", "name": "getEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific evaluation run by its ID.", "operation": { - "$id": "8759", + "$id": "8761", "name": "getEvalRun", "resourceName": "Evals", "doc": "Retrieve a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8760", + "$id": "8762", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8761", + "$id": "8763", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116598,13 +116624,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.eval_id" }, { - "$id": "8762", + "$id": "8764", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8763", + "$id": "8765", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116622,7 +116648,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun.run_id" }, { - "$id": "8764", + "$id": "8766", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116644,7 +116670,7 @@ 200 ], "bodyType": { - "$ref": "4043" + "$ref": "4045" }, "headers": [], "isErrorResponse": false, @@ -116664,13 +116690,13 @@ }, "parameters": [ { - "$id": "8765", + "$id": "8767", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8766", + "$id": "8768", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116686,13 +116712,13 @@ "decorators": [] }, { - "$id": "8767", + "$id": "8769", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve.", "type": { - "$id": "8768", + "$id": "8770", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116708,7 +116734,7 @@ "decorators": [] }, { - "$id": "8769", + "$id": "8771", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116727,7 +116753,7 @@ ], "response": { "type": { - "$ref": "4043" + "$ref": "4045" } }, "isOverride": false, @@ -116736,27 +116762,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRun" }, { - "$id": "8770", + "$id": "8772", "kind": "basic", "name": "cancelEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Cancel a specific evaluation run by its ID.", "operation": { - "$id": "8771", + "$id": "8773", "name": "cancelEvalRun", "resourceName": "Evals", "doc": "Cancel a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8772", + "$id": "8774", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8773", + "$id": "8775", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116774,13 +116800,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.eval_id" }, { - "$id": "8774", + "$id": "8776", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8775", + "$id": "8777", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116798,7 +116824,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun.run_id" }, { - "$id": "8776", + "$id": "8778", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116820,7 +116846,7 @@ 200 ], "bodyType": { - "$ref": "4043" + "$ref": "4045" }, "headers": [], "isErrorResponse": false, @@ -116840,13 +116866,13 @@ }, "parameters": [ { - "$id": "8777", + "$id": "8779", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8778", + "$id": "8780", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116862,13 +116888,13 @@ "decorators": [] }, { - "$id": "8779", + "$id": "8781", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to cancel.", "type": { - "$id": "8780", + "$id": "8782", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116884,7 +116910,7 @@ "decorators": [] }, { - "$id": "8781", + "$id": "8783", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -116903,7 +116929,7 @@ ], "response": { "type": { - "$ref": "4043" + "$ref": "4045" } }, "isOverride": false, @@ -116912,27 +116938,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.cancelEvalRun" }, { - "$id": "8782", + "$id": "8784", "kind": "basic", "name": "deleteEvalRun", "accessibility": "public", "apiVersions": [], "doc": "Delete a specific evaluation run by its ID.", "operation": { - "$id": "8783", + "$id": "8785", "name": "deleteEvalRun", "resourceName": "Evals", "doc": "Delete a specific evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8784", + "$id": "8786", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8785", + "$id": "8787", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116950,13 +116976,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.eval_id" }, { - "$id": "8786", + "$id": "8788", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8787", + "$id": "8789", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -116974,7 +117000,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun.run_id" }, { - "$id": "8788", + "$id": "8790", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -116996,7 +117022,7 @@ 200 ], "bodyType": { - "$ref": "4473" + "$ref": "4475" }, "headers": [], "isErrorResponse": false, @@ -117016,13 +117042,13 @@ }, "parameters": [ { - "$id": "8789", + "$id": "8791", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8790", + "$id": "8792", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117038,13 +117064,13 @@ "decorators": [] }, { - "$id": "8791", + "$id": "8793", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to delete.", "type": { - "$id": "8792", + "$id": "8794", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117060,7 +117086,7 @@ "decorators": [] }, { - "$id": "8793", + "$id": "8795", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117079,7 +117105,7 @@ ], "response": { "type": { - "$ref": "4473" + "$ref": "4475" } }, "isOverride": false, @@ -117088,27 +117114,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.deleteEvalRun" }, { - "$id": "8794", + "$id": "8796", "kind": "basic", "name": "getEvalRunOutputItems", "accessibility": "public", "apiVersions": [], "doc": "Get a list of output items for a specified evaluation run.", "operation": { - "$id": "8795", + "$id": "8797", "name": "getEvalRunOutputItems", "resourceName": "Evals", "doc": "Get a list of output items for a specified evaluation run.", "accessibility": "public", "parameters": [ { - "$id": "8796", + "$id": "8798", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8797", + "$id": "8799", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117126,13 +117152,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.eval_id" }, { - "$id": "8798", + "$id": "8800", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8799", + "$id": "8801", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117150,13 +117176,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems.run_id" }, { - "$id": "8800", + "$id": "8802", "kind": "query", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8801", + "$id": "8803", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117171,13 +117197,13 @@ "readOnly": false }, { - "$id": "8802", + "$id": "8804", "kind": "query", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of output items to be returned in a single pagination response.", "type": { - "$id": "8803", + "$id": "8805", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117192,7 +117218,7 @@ "readOnly": false }, { - "$id": "8804", + "$id": "8806", "kind": "query", "name": "status", "serializedName": "status", @@ -117209,7 +117235,7 @@ "readOnly": false }, { - "$id": "8805", + "$id": "8807", "kind": "query", "name": "order", "serializedName": "order", @@ -117226,7 +117252,7 @@ "readOnly": false }, { - "$id": "8806", + "$id": "8808", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117248,7 +117274,7 @@ 200 ], "bodyType": { - "$ref": "4479" + "$ref": "4481" }, "headers": [], "isErrorResponse": false, @@ -117268,13 +117294,13 @@ }, "parameters": [ { - "$id": "8807", + "$id": "8809", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8808", + "$id": "8810", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117290,13 +117316,13 @@ "decorators": [] }, { - "$id": "8809", + "$id": "8811", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run to retrieve output items for.", "type": { - "$id": "8810", + "$id": "8812", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117312,13 +117338,13 @@ "decorators": [] }, { - "$id": "8811", + "$id": "8813", "kind": "method", "name": "after", "serializedName": "after", "doc": "Identifier for the last output item from the previous pagination request.", "type": { - "$id": "8812", + "$id": "8814", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117334,13 +117360,13 @@ "decorators": [] }, { - "$id": "8813", + "$id": "8815", "kind": "method", "name": "limit", "serializedName": "limit", "doc": "A limit on the number of output items to be returned in a single pagination response.", "type": { - "$id": "8814", + "$id": "8816", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117356,7 +117382,7 @@ "decorators": [] }, { - "$id": "8815", + "$id": "8817", "kind": "method", "name": "status", "serializedName": "status", @@ -117374,7 +117400,7 @@ "decorators": [] }, { - "$id": "8816", + "$id": "8818", "kind": "method", "name": "order", "serializedName": "order", @@ -117392,7 +117418,7 @@ "decorators": [] }, { - "$id": "8817", + "$id": "8819", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117411,7 +117437,7 @@ ], "response": { "type": { - "$ref": "4479" + "$ref": "4481" } }, "isOverride": false, @@ -117420,27 +117446,27 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItems" }, { - "$id": "8818", + "$id": "8820", "kind": "basic", "name": "getEvalRunOutputItem", "accessibility": "public", "apiVersions": [], "doc": "Retrieve a specific output item from an evaluation run by its ID.", "operation": { - "$id": "8819", + "$id": "8821", "name": "getEvalRunOutputItem", "resourceName": "Evals", "doc": "Retrieve a specific output item from an evaluation run by its ID.", "accessibility": "public", "parameters": [ { - "$id": "8820", + "$id": "8822", "kind": "path", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8821", + "$id": "8823", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117458,13 +117484,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.eval_id" }, { - "$id": "8822", + "$id": "8824", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8823", + "$id": "8825", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117482,13 +117508,13 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.run_id" }, { - "$id": "8824", + "$id": "8826", "kind": "path", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8825", + "$id": "8827", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117506,7 +117532,7 @@ "crossLanguageDefinitionId": "OpenAI.Evals.getEvalRunOutputItem.output_item_id" }, { - "$id": "8826", + "$id": "8828", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117528,7 +117554,7 @@ 200 ], "bodyType": { - "$ref": "4483" + "$ref": "4485" }, "headers": [], "isErrorResponse": false, @@ -117548,13 +117574,13 @@ }, "parameters": [ { - "$id": "8827", + "$id": "8829", "kind": "method", "name": "eval_id", "serializedName": "eval_id", "doc": "The ID of the evaluation the run belongs to.", "type": { - "$id": "8828", + "$id": "8830", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117570,13 +117596,13 @@ "decorators": [] }, { - "$id": "8829", + "$id": "8831", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the evaluation run the output item belongs to.", "type": { - "$id": "8830", + "$id": "8832", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117592,13 +117618,13 @@ "decorators": [] }, { - "$id": "8831", + "$id": "8833", "kind": "method", "name": "output_item_id", "serializedName": "output_item_id", "doc": "The ID of the output item to retrieve.", "type": { - "$id": "8832", + "$id": "8834", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117614,7 +117640,7 @@ "decorators": [] }, { - "$id": "8833", + "$id": "8835", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117633,7 +117659,7 @@ ], "response": { "type": { - "$ref": "4483" + "$ref": "4485" } }, "isOverride": false, @@ -117644,13 +117670,13 @@ ], "parameters": [ { - "$id": "8834", + "$id": "8836", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8835", + "$id": "8837", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -117661,7 +117687,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8836", + "$id": "8838", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -117678,31 +117704,31 @@ "crossLanguageDefinitionId": "OpenAI.Evals", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8837", + "$id": "8839", "kind": "client", "name": "Responses", "namespace": "OpenAI", "methods": [ { - "$id": "8838", + "$id": "8840", "kind": "basic", "name": "createResponse", "accessibility": "public", "apiVersions": [], "doc": "Creates a model response.", "operation": { - "$id": "8839", + "$id": "8841", "name": "createResponse", "resourceName": "Responses", "doc": "Creates a model response.", "accessibility": "public", "parameters": [ { - "$id": "8840", + "$id": "8842", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -117718,7 +117744,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.accept" }, { - "$id": "8841", + "$id": "8843", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -117735,12 +117761,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse.contentType" }, { - "$id": "8842", + "$id": "8844", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4546" + "$ref": "4548" }, "isApiVersion": false, "contentTypes": [ @@ -117760,15 +117786,15 @@ 200 ], "bodyType": { - "$id": "8843", + "$id": "8845", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5070" + "$ref": "5072" }, { - "$ref": "5255" + "$ref": "5257" } ], "namespace": "", @@ -117804,7 +117830,7 @@ }, "parameters": [ { - "$id": "8844", + "$id": "8846", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -117821,12 +117847,12 @@ "decorators": [] }, { - "$id": "8845", + "$id": "8847", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "4546" + "$ref": "4548" }, "location": "Body", "isApiVersion": false, @@ -117838,7 +117864,7 @@ "decorators": [] }, { - "$id": "8846", + "$id": "8848", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -117858,7 +117884,7 @@ ], "response": { "type": { - "$ref": "8843" + "$ref": "8845" } }, "isOverride": false, @@ -117867,27 +117893,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.createResponse" }, { - "$id": "8847", + "$id": "8849", "kind": "basic", "name": "getResponse", "accessibility": "public", "apiVersions": [], "doc": "Retrieves a model response with the given ID.", "operation": { - "$id": "8848", + "$id": "8850", "name": "getResponse", "resourceName": "Responses", "doc": "Retrieves a model response with the given ID.", "accessibility": "public", "parameters": [ { - "$id": "8849", + "$id": "8851", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8850", + "$id": "8852", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117905,12 +117931,12 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse.response_id" }, { - "$id": "8851", + "$id": "8853", "kind": "query", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "5060" + "$ref": "5062" }, "isApiVersion": false, "explode": true, @@ -117921,13 +117947,13 @@ "readOnly": false }, { - "$id": "8852", + "$id": "8854", "kind": "query", "name": "stream", "serializedName": "stream", "doc": "If set to true, model response data will be streamed to the client as it is generated using server-sent events.", "type": { - "$id": "8853", + "$id": "8855", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -117942,13 +117968,13 @@ "readOnly": false }, { - "$id": "8854", + "$id": "8856", "kind": "query", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8855", + "$id": "8857", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -117963,12 +117989,12 @@ "readOnly": false }, { - "$id": "8856", + "$id": "8858", "kind": "header", "name": "accept", "serializedName": "Accept", "type": { - "$id": "8857", + "$id": "8859", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -117989,15 +118015,15 @@ 200 ], "bodyType": { - "$id": "8858", + "$id": "8860", "kind": "union", "name": "", "variantTypes": [ { - "$ref": "5070" + "$ref": "5072" }, { - "$ref": "5255" + "$ref": "5257" } ], "namespace": "", @@ -118030,13 +118056,13 @@ }, "parameters": [ { - "$id": "8859", + "$id": "8861", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8860", + "$id": "8862", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118052,12 +118078,12 @@ "decorators": [] }, { - "$id": "8861", + "$id": "8863", "kind": "method", "name": "includables", "serializedName": "include[]", "type": { - "$ref": "5060" + "$ref": "5062" }, "location": "Query", "isApiVersion": false, @@ -118069,13 +118095,13 @@ "decorators": [] }, { - "$id": "8862", + "$id": "8864", "kind": "method", "name": "stream", "serializedName": "stream", "doc": "If set to true, model response data will be streamed to the client as it is generated using server-sent events.", "type": { - "$id": "8863", + "$id": "8865", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -118091,13 +118117,13 @@ "decorators": [] }, { - "$id": "8864", + "$id": "8866", "kind": "method", "name": "starting_after", "serializedName": "starting_after", "doc": "The sequence number of the event after which to start streaming.", "type": { - "$id": "8865", + "$id": "8867", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118113,12 +118139,12 @@ "decorators": [] }, { - "$id": "8866", + "$id": "8868", "kind": "method", "name": "accept", "serializedName": "Accept", "type": { - "$ref": "8857" + "$ref": "8859" }, "location": "Header", "isApiVersion": false, @@ -118132,7 +118158,7 @@ ], "response": { "type": { - "$ref": "8858" + "$ref": "8860" } }, "isOverride": false, @@ -118141,25 +118167,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.getResponse" }, { - "$id": "8867", + "$id": "8869", "kind": "basic", "name": "deleteResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8868", + "$id": "8870", "name": "deleteResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "8869", + "$id": "8871", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8870", + "$id": "8872", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118177,7 +118203,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse.response_id" }, { - "$id": "8871", + "$id": "8873", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118199,7 +118225,7 @@ 200 ], "bodyType": { - "$ref": "5717" + "$ref": "5719" }, "headers": [], "isErrorResponse": false, @@ -118219,13 +118245,13 @@ }, "parameters": [ { - "$id": "8872", + "$id": "8874", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to delete.", "type": { - "$id": "8873", + "$id": "8875", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118241,7 +118267,7 @@ "decorators": [] }, { - "$id": "8874", + "$id": "8876", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118260,7 +118286,7 @@ ], "response": { "type": { - "$ref": "5717" + "$ref": "5719" } }, "isOverride": false, @@ -118269,25 +118295,25 @@ "crossLanguageDefinitionId": "OpenAI.Responses.deleteResponse" }, { - "$id": "8875", + "$id": "8877", "kind": "basic", "name": "cancelResponse", "accessibility": "public", "apiVersions": [], "operation": { - "$id": "8876", + "$id": "8878", "name": "cancelResponse", "resourceName": "Responses", "accessibility": "public", "parameters": [ { - "$id": "8877", + "$id": "8879", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "8878", + "$id": "8880", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118305,7 +118331,7 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse.response_id" }, { - "$id": "8879", + "$id": "8881", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118327,7 +118353,7 @@ 200 ], "bodyType": { - "$ref": "5070" + "$ref": "5072" }, "headers": [], "isErrorResponse": false, @@ -118347,13 +118373,13 @@ }, "parameters": [ { - "$id": "8880", + "$id": "8882", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to cancel.", "type": { - "$id": "8881", + "$id": "8883", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118369,7 +118395,7 @@ "decorators": [] }, { - "$id": "8882", + "$id": "8884", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118388,7 +118414,7 @@ ], "response": { "type": { - "$ref": "5070" + "$ref": "5072" } }, "isOverride": false, @@ -118397,27 +118423,27 @@ "crossLanguageDefinitionId": "OpenAI.Responses.cancelResponse" }, { - "$id": "8883", + "$id": "8885", "kind": "paging", "name": "GetResponseInputItems", "accessibility": "public", "apiVersions": [], "doc": "Returns a list of input items for a given response.", "operation": { - "$id": "8884", + "$id": "8886", "name": "GetResponseInputItems", "resourceName": "Responses", "doc": "Returns a list of input items for a given response.", "accessibility": "public", "parameters": [ { - "$id": "8885", + "$id": "8887", "kind": "path", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8886", + "$id": "8888", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118435,13 +118461,13 @@ "crossLanguageDefinitionId": "OpenAI.Responses.listInputItems.response_id" }, { - "$id": "8887", + "$id": "8889", "kind": "query", "name": "limit", "serializedName": "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": "8888", + "$id": "8890", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118456,7 +118482,7 @@ "readOnly": false }, { - "$id": "8889", + "$id": "8891", "kind": "query", "name": "order", "serializedName": "order", @@ -118473,13 +118499,13 @@ "readOnly": false }, { - "$id": "8890", + "$id": "8892", "kind": "query", "name": "after", "serializedName": "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": "8891", + "$id": "8893", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118494,13 +118520,13 @@ "readOnly": false }, { - "$id": "8892", + "$id": "8894", "kind": "query", "name": "before", "serializedName": "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": "8893", + "$id": "8895", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118515,7 +118541,7 @@ "readOnly": false }, { - "$id": "8894", + "$id": "8896", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118537,7 +118563,7 @@ 200 ], "bodyType": { - "$ref": "5722" + "$ref": "5724" }, "headers": [], "isErrorResponse": false, @@ -118557,13 +118583,13 @@ }, "parameters": [ { - "$id": "8895", + "$id": "8897", "kind": "method", "name": "response_id", "serializedName": "response_id", "doc": "The ID of the response to retrieve.", "type": { - "$id": "8896", + "$id": "8898", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118579,13 +118605,13 @@ "decorators": [] }, { - "$id": "8897", + "$id": "8899", "kind": "method", "name": "limit", "serializedName": "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": "8898", + "$id": "8900", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -118601,7 +118627,7 @@ "decorators": [] }, { - "$id": "8899", + "$id": "8901", "kind": "method", "name": "order", "serializedName": "order", @@ -118619,13 +118645,13 @@ "decorators": [] }, { - "$id": "8900", + "$id": "8902", "kind": "method", "name": "after", "serializedName": "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": "8901", + "$id": "8903", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118641,13 +118667,13 @@ "decorators": [] }, { - "$id": "8902", + "$id": "8904", "kind": "method", "name": "before", "serializedName": "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": "8903", + "$id": "8905", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -118663,7 +118689,7 @@ "decorators": [] }, { - "$id": "8904", + "$id": "8906", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118682,7 +118708,7 @@ ], "response": { "type": { - "$ref": "5110" + "$ref": "5112" }, "resultSegments": [ "data" @@ -118698,7 +118724,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8890" + "$ref": "8892" }, "responseSegments": [ "last_id" @@ -118710,13 +118736,13 @@ ], "parameters": [ { - "$id": "8905", + "$id": "8907", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8906", + "$id": "8908", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -118727,7 +118753,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8907", + "$id": "8909", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -118744,31 +118770,31 @@ "crossLanguageDefinitionId": "OpenAI.Responses", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8908", + "$id": "8910", "kind": "client", "name": "Images", "namespace": "OpenAI", "methods": [ { - "$id": "8909", + "$id": "8911", "kind": "basic", "name": "GenerateImages", "accessibility": "public", "apiVersions": [], "summary": "Creates an image given a prompt", "operation": { - "$id": "8910", + "$id": "8912", "name": "GenerateImages", "resourceName": "Images", "summary": "Creates an image given a prompt", "accessibility": "public", "parameters": [ { - "$id": "8911", + "$id": "8913", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118784,7 +118810,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.accept" }, { - "$id": "8912", + "$id": "8914", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -118801,12 +118827,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage.contentType" }, { - "$id": "8913", + "$id": "8915", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5731" + "$ref": "5733" }, "isApiVersion": false, "contentTypes": [ @@ -118826,7 +118852,7 @@ 200 ], "bodyType": { - "$ref": "5758" + "$ref": "5760" }, "headers": [], "isErrorResponse": false, @@ -118849,7 +118875,7 @@ }, "parameters": [ { - "$id": "8914", + "$id": "8916", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -118866,12 +118892,12 @@ "decorators": [] }, { - "$id": "8915", + "$id": "8917", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5731" + "$ref": "5733" }, "location": "Body", "isApiVersion": false, @@ -118883,7 +118909,7 @@ "decorators": [] }, { - "$id": "8916", + "$id": "8918", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -118903,7 +118929,7 @@ ], "response": { "type": { - "$ref": "5758" + "$ref": "5760" } }, "isOverride": false, @@ -118912,21 +118938,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImage" }, { - "$id": "8917", + "$id": "8919", "kind": "basic", "name": "GenerateImageEdits", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "8918", + "$id": "8920", "name": "GenerateImageEdits", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "8919", + "$id": "8921", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -118942,7 +118968,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.accept" }, { - "$id": "8920", + "$id": "8922", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -118958,12 +118984,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit.contentType" }, { - "$id": "8921", + "$id": "8923", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5785" + "$ref": "5787" }, "isApiVersion": false, "contentTypes": [ @@ -118983,7 +119009,7 @@ 200 ], "bodyType": { - "$ref": "5758" + "$ref": "5760" }, "headers": [], "isErrorResponse": false, @@ -119006,7 +119032,7 @@ }, "parameters": [ { - "$id": "8922", + "$id": "8924", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119023,7 +119049,7 @@ "decorators": [] }, { - "$id": "8923", + "$id": "8925", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -119040,12 +119066,12 @@ "decorators": [] }, { - "$id": "8924", + "$id": "8926", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5785" + "$ref": "5787" }, "location": "Body", "isApiVersion": false, @@ -119059,7 +119085,7 @@ ], "response": { "type": { - "$ref": "5758" + "$ref": "5760" } }, "isOverride": false, @@ -119068,21 +119094,21 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageEdit" }, { - "$id": "8925", + "$id": "8927", "kind": "basic", "name": "GenerateImageVariations", "accessibility": "public", "apiVersions": [], "summary": "Creates an edited or extended image given an original image and a prompt.", "operation": { - "$id": "8926", + "$id": "8928", "name": "GenerateImageVariations", "resourceName": "Images", "summary": "Creates an edited or extended image given an original image and a prompt.", "accessibility": "public", "parameters": [ { - "$id": "8927", + "$id": "8929", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119098,7 +119124,7 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.accept" }, { - "$id": "8928", + "$id": "8930", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -119114,12 +119140,12 @@ "crossLanguageDefinitionId": "OpenAI.Images.createImageVariation.contentType" }, { - "$id": "8929", + "$id": "8931", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5811" + "$ref": "5813" }, "isApiVersion": false, "contentTypes": [ @@ -119139,7 +119165,7 @@ 200 ], "bodyType": { - "$ref": "5758" + "$ref": "5760" }, "headers": [], "isErrorResponse": false, @@ -119162,7 +119188,7 @@ }, "parameters": [ { - "$id": "8930", + "$id": "8932", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119179,7 +119205,7 @@ "decorators": [] }, { - "$id": "8931", + "$id": "8933", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -119196,12 +119222,12 @@ "decorators": [] }, { - "$id": "8932", + "$id": "8934", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5811" + "$ref": "5813" }, "location": "Body", "isApiVersion": false, @@ -119215,7 +119241,7 @@ ], "response": { "type": { - "$ref": "5758" + "$ref": "5760" } }, "isOverride": false, @@ -119226,13 +119252,13 @@ ], "parameters": [ { - "$id": "8933", + "$id": "8935", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "8934", + "$id": "8936", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -119243,7 +119269,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "8935", + "$id": "8937", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -119260,31 +119286,31 @@ "crossLanguageDefinitionId": "OpenAI.Images", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "8936", + "$id": "8938", "kind": "client", "name": "Messages", "namespace": "OpenAI", "methods": [ { - "$id": "8937", + "$id": "8939", "kind": "basic", "name": "createMessage", "accessibility": "public", "apiVersions": [], "summary": "Create a message.", "operation": { - "$id": "8938", + "$id": "8940", "name": "createMessage", "resourceName": "Messages", "summary": "Create a message.", "accessibility": "public", "parameters": [ { - "$id": "8939", + "$id": "8941", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119300,7 +119326,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.accept" }, { - "$id": "8940", + "$id": "8942", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -119316,13 +119342,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.openAIBeta" }, { - "$id": "8941", + "$id": "8943", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) to create a message for.", "type": { - "$id": "8942", + "$id": "8944", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119340,7 +119366,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.thread_id" }, { - "$id": "8943", + "$id": "8945", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -119357,12 +119383,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage.contentType" }, { - "$id": "8944", + "$id": "8946", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5826" + "$ref": "5828" }, "isApiVersion": false, "contentTypes": [ @@ -119382,7 +119408,7 @@ 200 ], "bodyType": { - "$ref": "5914" + "$ref": "5916" }, "headers": [], "isErrorResponse": false, @@ -119405,7 +119431,7 @@ }, "parameters": [ { - "$id": "8945", + "$id": "8947", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119422,7 +119448,7 @@ "decorators": [] }, { - "$id": "8946", + "$id": "8948", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -119439,13 +119465,13 @@ "decorators": [] }, { - "$id": "8947", + "$id": "8949", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) to create a message for.", "type": { - "$id": "8948", + "$id": "8950", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119461,12 +119487,12 @@ "decorators": [] }, { - "$id": "8949", + "$id": "8951", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5826" + "$ref": "5828" }, "location": "Body", "isApiVersion": false, @@ -119478,7 +119504,7 @@ "decorators": [] }, { - "$id": "8950", + "$id": "8952", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -119498,7 +119524,7 @@ ], "response": { "type": { - "$ref": "5914" + "$ref": "5916" } }, "isOverride": false, @@ -119507,21 +119533,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.createMessage" }, { - "$id": "8951", + "$id": "8953", "kind": "paging", "name": "listMessages", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of messages for a given thread.", "operation": { - "$id": "8952", + "$id": "8954", "name": "listMessages", "resourceName": "Messages", "summary": "Returns a list of messages for a given thread.", "accessibility": "public", "parameters": [ { - "$id": "8953", + "$id": "8955", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119537,7 +119563,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.accept" }, { - "$id": "8954", + "$id": "8956", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -119553,13 +119579,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.openAIBeta" }, { - "$id": "8955", + "$id": "8957", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "8956", + "$id": "8958", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119577,13 +119603,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.listMessages.thread_id" }, { - "$id": "8957", + "$id": "8959", "kind": "query", "name": "limit", "serializedName": "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": "8958", + "$id": "8960", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119598,7 +119624,7 @@ "readOnly": false }, { - "$id": "8959", + "$id": "8961", "kind": "query", "name": "order", "serializedName": "order", @@ -119615,13 +119641,13 @@ "readOnly": false }, { - "$id": "8960", + "$id": "8962", "kind": "query", "name": "after", "serializedName": "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": "8961", + "$id": "8963", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119636,13 +119662,13 @@ "readOnly": false }, { - "$id": "8962", + "$id": "8964", "kind": "query", "name": "before", "serializedName": "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": "8963", + "$id": "8965", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119663,7 +119689,7 @@ 200 ], "bodyType": { - "$ref": "5954" + "$ref": "5956" }, "headers": [], "isErrorResponse": false, @@ -119683,7 +119709,7 @@ }, "parameters": [ { - "$id": "8964", + "$id": "8966", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119700,7 +119726,7 @@ "decorators": [] }, { - "$id": "8965", + "$id": "8967", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -119717,13 +119743,13 @@ "decorators": [] }, { - "$id": "8966", + "$id": "8968", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) the messages belong to.", "type": { - "$id": "8967", + "$id": "8969", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119739,13 +119765,13 @@ "decorators": [] }, { - "$id": "8968", + "$id": "8970", "kind": "method", "name": "limit", "serializedName": "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": "8969", + "$id": "8971", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -119761,7 +119787,7 @@ "decorators": [] }, { - "$id": "8970", + "$id": "8972", "kind": "method", "name": "order", "serializedName": "order", @@ -119779,13 +119805,13 @@ "decorators": [] }, { - "$id": "8971", + "$id": "8973", "kind": "method", "name": "after", "serializedName": "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": "8972", + "$id": "8974", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119801,13 +119827,13 @@ "decorators": [] }, { - "$id": "8973", + "$id": "8975", "kind": "method", "name": "before", "serializedName": "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": "8974", + "$id": "8976", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119825,7 +119851,7 @@ ], "response": { "type": { - "$ref": "5957" + "$ref": "5959" }, "resultSegments": [ "data" @@ -119841,7 +119867,7 @@ ], "continuationToken": { "parameter": { - "$ref": "8960" + "$ref": "8962" }, "responseSegments": [ "last_id" @@ -119851,21 +119877,21 @@ } }, { - "$id": "8975", + "$id": "8977", "kind": "basic", "name": "getMessage", "accessibility": "public", "apiVersions": [], "summary": "Retrieve a message.", "operation": { - "$id": "8976", + "$id": "8978", "name": "getMessage", "resourceName": "Messages", "summary": "Retrieve a message.", "accessibility": "public", "parameters": [ { - "$id": "8977", + "$id": "8979", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -119881,7 +119907,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.accept" }, { - "$id": "8978", + "$id": "8980", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -119897,13 +119923,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.openAIBeta" }, { - "$id": "8979", + "$id": "8981", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) to which this message belongs.", "type": { - "$id": "8980", + "$id": "8982", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119921,13 +119947,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage.thread_id" }, { - "$id": "8981", + "$id": "8983", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "8982", + "$id": "8984", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -119951,7 +119977,7 @@ 200 ], "bodyType": { - "$ref": "5914" + "$ref": "5916" }, "headers": [], "isErrorResponse": false, @@ -119971,7 +119997,7 @@ }, "parameters": [ { - "$id": "8983", + "$id": "8985", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -119988,7 +120014,7 @@ "decorators": [] }, { - "$id": "8984", + "$id": "8986", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120005,13 +120031,13 @@ "decorators": [] }, { - "$id": "8985", + "$id": "8987", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) to which this message belongs.", "type": { - "$id": "8986", + "$id": "8988", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120027,13 +120053,13 @@ "decorators": [] }, { - "$id": "8987", + "$id": "8989", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to retrieve.", "type": { - "$id": "8988", + "$id": "8990", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120051,7 +120077,7 @@ ], "response": { "type": { - "$ref": "5914" + "$ref": "5916" } }, "isOverride": false, @@ -120060,21 +120086,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.getMessage" }, { - "$id": "8989", + "$id": "8991", "kind": "basic", "name": "modifyMessage", "accessibility": "public", "apiVersions": [], "summary": "Modifies a message.", "operation": { - "$id": "8990", + "$id": "8992", "name": "modifyMessage", "resourceName": "Messages", "summary": "Modifies a message.", "accessibility": "public", "parameters": [ { - "$id": "8991", + "$id": "8993", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120090,7 +120116,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.accept" }, { - "$id": "8992", + "$id": "8994", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120106,13 +120132,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.openAIBeta" }, { - "$id": "8993", + "$id": "8995", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "8994", + "$id": "8996", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120130,13 +120156,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.thread_id" }, { - "$id": "8995", + "$id": "8997", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "8996", + "$id": "8998", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120154,7 +120180,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.message_id" }, { - "$id": "8997", + "$id": "8999", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120171,12 +120197,12 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage.contentType" }, { - "$id": "8998", + "$id": "9000", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5964" + "$ref": "5966" }, "isApiVersion": false, "contentTypes": [ @@ -120196,7 +120222,7 @@ 200 ], "bodyType": { - "$ref": "5914" + "$ref": "5916" }, "headers": [], "isErrorResponse": false, @@ -120219,7 +120245,7 @@ }, "parameters": [ { - "$id": "8999", + "$id": "9001", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120236,7 +120262,7 @@ "decorators": [] }, { - "$id": "9000", + "$id": "9002", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120253,13 +120279,13 @@ "decorators": [] }, { - "$id": "9001", + "$id": "9003", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9002", + "$id": "9004", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120275,13 +120301,13 @@ "decorators": [] }, { - "$id": "9003", + "$id": "9005", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to modify.", "type": { - "$id": "9004", + "$id": "9006", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120297,12 +120323,12 @@ "decorators": [] }, { - "$id": "9005", + "$id": "9007", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5964" + "$ref": "5966" }, "location": "Body", "isApiVersion": false, @@ -120314,7 +120340,7 @@ "decorators": [] }, { - "$id": "9006", + "$id": "9008", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120334,7 +120360,7 @@ ], "response": { "type": { - "$ref": "5914" + "$ref": "5916" } }, "isOverride": false, @@ -120343,21 +120369,21 @@ "crossLanguageDefinitionId": "OpenAI.Messages.modifyMessage" }, { - "$id": "9007", + "$id": "9009", "kind": "basic", "name": "deleteMessage", "accessibility": "public", "apiVersions": [], "summary": "Deletes a message.", "operation": { - "$id": "9008", + "$id": "9010", "name": "deleteMessage", "resourceName": "Messages", "summary": "Deletes a message.", "accessibility": "public", "parameters": [ { - "$id": "9009", + "$id": "9011", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120373,7 +120399,7 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.accept" }, { - "$id": "9010", + "$id": "9012", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120389,13 +120415,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.openAIBeta" }, { - "$id": "9011", + "$id": "9013", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9012", + "$id": "9014", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120413,13 +120439,13 @@ "crossLanguageDefinitionId": "OpenAI.Messages.deleteMessage.thread_id" }, { - "$id": "9013", + "$id": "9015", "kind": "path", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9014", + "$id": "9016", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120443,7 +120469,7 @@ 200 ], "bodyType": { - "$ref": "5966" + "$ref": "5968" }, "headers": [], "isErrorResponse": false, @@ -120463,7 +120489,7 @@ }, "parameters": [ { - "$id": "9015", + "$id": "9017", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120480,7 +120506,7 @@ "decorators": [] }, { - "$id": "9016", + "$id": "9018", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120497,13 +120523,13 @@ "decorators": [] }, { - "$id": "9017", + "$id": "9019", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this message belongs.", "type": { - "$id": "9018", + "$id": "9020", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120519,13 +120545,13 @@ "decorators": [] }, { - "$id": "9019", + "$id": "9021", "kind": "method", "name": "message_id", "serializedName": "message_id", "doc": "The ID of the message to delete.", "type": { - "$id": "9020", + "$id": "9022", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -120543,7 +120569,7 @@ ], "response": { "type": { - "$ref": "5966" + "$ref": "5968" } }, "isOverride": false, @@ -120554,13 +120580,13 @@ ], "parameters": [ { - "$id": "9021", + "$id": "9023", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9022", + "$id": "9024", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120571,7 +120597,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9023", + "$id": "9025", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120588,31 +120614,31 @@ "crossLanguageDefinitionId": "OpenAI.Messages", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9024", + "$id": "9026", "kind": "client", "name": "Moderations", "namespace": "OpenAI", "methods": [ { - "$id": "9025", + "$id": "9027", "kind": "basic", "name": "ClassifyText", "accessibility": "public", "apiVersions": [], "summary": "Classifies if text is potentially harmful.", "operation": { - "$id": "9026", + "$id": "9028", "name": "ClassifyText", "resourceName": "Moderations", "summary": "Classifies if text is potentially harmful.", "accessibility": "public", "parameters": [ { - "$id": "9027", + "$id": "9029", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120628,7 +120654,7 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.accept" }, { - "$id": "9028", + "$id": "9030", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120645,12 +120671,12 @@ "crossLanguageDefinitionId": "OpenAI.Moderations.createModeration.contentType" }, { - "$id": "9029", + "$id": "9031", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5972" + "$ref": "5974" }, "isApiVersion": false, "contentTypes": [ @@ -120670,7 +120696,7 @@ 200 ], "bodyType": { - "$ref": "5989" + "$ref": "5991" }, "headers": [], "isErrorResponse": false, @@ -120693,7 +120719,7 @@ }, "parameters": [ { - "$id": "9030", + "$id": "9032", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120710,12 +120736,12 @@ "decorators": [] }, { - "$id": "9031", + "$id": "9033", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "5972" + "$ref": "5974" }, "location": "Body", "isApiVersion": false, @@ -120727,7 +120753,7 @@ "decorators": [] }, { - "$id": "9032", + "$id": "9034", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120747,7 +120773,7 @@ ], "response": { "type": { - "$ref": "5989" + "$ref": "5991" } }, "isOverride": false, @@ -120758,13 +120784,13 @@ ], "parameters": [ { - "$id": "9033", + "$id": "9035", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9034", + "$id": "9036", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -120775,7 +120801,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9035", + "$id": "9037", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -120792,31 +120818,31 @@ "crossLanguageDefinitionId": "OpenAI.Moderations", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9036", + "$id": "9038", "kind": "client", "name": "Runs", "namespace": "OpenAI", "methods": [ { - "$id": "9037", + "$id": "9039", "kind": "basic", "name": "createThreadAndRun", "accessibility": "public", "apiVersions": [], "summary": "Create a thread and run it in one request.", "operation": { - "$id": "9038", + "$id": "9040", "name": "createThreadAndRun", "resourceName": "Runs", "summary": "Create a thread and run it in one request.", "accessibility": "public", "parameters": [ { - "$id": "9039", + "$id": "9041", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -120832,7 +120858,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.accept" }, { - "$id": "9040", + "$id": "9042", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120848,7 +120874,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.openAIBeta" }, { - "$id": "9041", + "$id": "9043", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -120865,12 +120891,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun.contentType" }, { - "$id": "9042", + "$id": "9044", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6089" + "$ref": "6091" }, "isApiVersion": false, "contentTypes": [ @@ -120890,7 +120916,7 @@ 200 ], "bodyType": { - "$ref": "6155" + "$ref": "6157" }, "headers": [], "isErrorResponse": false, @@ -120913,7 +120939,7 @@ }, "parameters": [ { - "$id": "9043", + "$id": "9045", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -120930,7 +120956,7 @@ "decorators": [] }, { - "$id": "9044", + "$id": "9046", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -120947,12 +120973,12 @@ "decorators": [] }, { - "$id": "9045", + "$id": "9047", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6089" + "$ref": "6091" }, "location": "Body", "isApiVersion": false, @@ -120964,7 +120990,7 @@ "decorators": [] }, { - "$id": "9046", + "$id": "9048", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -120984,7 +121010,7 @@ ], "response": { "type": { - "$ref": "6155" + "$ref": "6157" } }, "isOverride": false, @@ -120993,21 +121019,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createThreadAndRun" }, { - "$id": "9047", + "$id": "9049", "kind": "basic", "name": "createRun", "accessibility": "public", "apiVersions": [], "summary": "Create a run.", "operation": { - "$id": "9048", + "$id": "9050", "name": "createRun", "resourceName": "Runs", "summary": "Create a run.", "accessibility": "public", "parameters": [ { - "$id": "9049", + "$id": "9051", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121023,7 +121049,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.accept" }, { - "$id": "9050", + "$id": "9052", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121039,13 +121065,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.openAIBeta" }, { - "$id": "9051", + "$id": "9053", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9052", + "$id": "9054", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121063,13 +121089,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.thread_id" }, { - "$id": "9053", + "$id": "9055", "kind": "query", "name": "include[]", "serializedName": "include[]", "doc": "A list of additional fields to include in the response. Currently the only supported value is\n`step_details.tool_calls[*].file_search.results[*].content` to fetch the file search result\ncontent.\n\nSee the\n[file search tool documentation](/docs/assistants/tools/file-search/customizing-file-search-settings)\nfor more information.", "type": { - "$id": "9054", + "$id": "9056", "kind": "array", "name": "ArrayIncludedRunStepProperty", "valueType": { @@ -121088,7 +121114,7 @@ "readOnly": false }, { - "$id": "9055", + "$id": "9057", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121105,12 +121131,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun.contentType" }, { - "$id": "9056", + "$id": "9058", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6251" + "$ref": "6253" }, "isApiVersion": false, "contentTypes": [ @@ -121130,7 +121156,7 @@ 200 ], "bodyType": { - "$ref": "6155" + "$ref": "6157" }, "headers": [], "isErrorResponse": false, @@ -121153,7 +121179,7 @@ }, "parameters": [ { - "$id": "9057", + "$id": "9059", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121170,7 +121196,7 @@ "decorators": [] }, { - "$id": "9058", + "$id": "9060", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121187,13 +121213,13 @@ "decorators": [] }, { - "$id": "9059", + "$id": "9061", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to run.", "type": { - "$id": "9060", + "$id": "9062", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121209,13 +121235,13 @@ "decorators": [] }, { - "$id": "9061", + "$id": "9063", "kind": "method", "name": "include[]", "serializedName": "include[]", "doc": "A list of additional fields to include in the response. Currently the only supported value is\n`step_details.tool_calls[*].file_search.results[*].content` to fetch the file search result\ncontent.\n\nSee the\n[file search tool documentation](/docs/assistants/tools/file-search/customizing-file-search-settings)\nfor more information.", "type": { - "$ref": "9054" + "$ref": "9056" }, "location": "Query", "isApiVersion": false, @@ -121227,12 +121253,12 @@ "decorators": [] }, { - "$id": "9062", + "$id": "9064", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6251" + "$ref": "6253" }, "location": "Body", "isApiVersion": false, @@ -121244,7 +121270,7 @@ "decorators": [] }, { - "$id": "9063", + "$id": "9065", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -121264,7 +121290,7 @@ ], "response": { "type": { - "$ref": "6155" + "$ref": "6157" } }, "isOverride": false, @@ -121273,21 +121299,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.createRun" }, { - "$id": "9064", + "$id": "9066", "kind": "paging", "name": "listRuns", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of runs belonging to a thread.", "operation": { - "$id": "9065", + "$id": "9067", "name": "listRuns", "resourceName": "Runs", "summary": "Returns a list of runs belonging to a thread.", "accessibility": "public", "parameters": [ { - "$id": "9066", + "$id": "9068", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121303,7 +121329,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.accept" }, { - "$id": "9067", + "$id": "9069", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121319,13 +121345,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.openAIBeta" }, { - "$id": "9068", + "$id": "9070", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9069", + "$id": "9071", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121343,13 +121369,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRuns.thread_id" }, { - "$id": "9070", + "$id": "9072", "kind": "query", "name": "limit", "serializedName": "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": "9071", + "$id": "9073", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -121364,7 +121390,7 @@ "readOnly": false }, { - "$id": "9072", + "$id": "9074", "kind": "query", "name": "order", "serializedName": "order", @@ -121381,13 +121407,13 @@ "readOnly": false }, { - "$id": "9073", + "$id": "9075", "kind": "query", "name": "after", "serializedName": "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": "9074", + "$id": "9076", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121402,13 +121428,13 @@ "readOnly": false }, { - "$id": "9075", + "$id": "9077", "kind": "query", "name": "before", "serializedName": "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": "9076", + "$id": "9078", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121429,7 +121455,7 @@ 200 ], "bodyType": { - "$ref": "6293" + "$ref": "6295" }, "headers": [], "isErrorResponse": false, @@ -121449,7 +121475,7 @@ }, "parameters": [ { - "$id": "9077", + "$id": "9079", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121466,7 +121492,7 @@ "decorators": [] }, { - "$id": "9078", + "$id": "9080", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121483,13 +121509,13 @@ "decorators": [] }, { - "$id": "9079", + "$id": "9081", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run belongs to.", "type": { - "$id": "9080", + "$id": "9082", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121505,13 +121531,13 @@ "decorators": [] }, { - "$id": "9081", + "$id": "9083", "kind": "method", "name": "limit", "serializedName": "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": "9082", + "$id": "9084", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -121527,7 +121553,7 @@ "decorators": [] }, { - "$id": "9083", + "$id": "9085", "kind": "method", "name": "order", "serializedName": "order", @@ -121545,13 +121571,13 @@ "decorators": [] }, { - "$id": "9084", + "$id": "9086", "kind": "method", "name": "after", "serializedName": "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": "9085", + "$id": "9087", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121567,13 +121593,13 @@ "decorators": [] }, { - "$id": "9086", + "$id": "9088", "kind": "method", "name": "before", "serializedName": "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": "9087", + "$id": "9089", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121591,7 +121617,7 @@ ], "response": { "type": { - "$ref": "6296" + "$ref": "6298" }, "resultSegments": [ "data" @@ -121607,7 +121633,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9073" + "$ref": "9075" }, "responseSegments": [ "last_id" @@ -121617,21 +121643,21 @@ } }, { - "$id": "9088", + "$id": "9090", "kind": "basic", "name": "getRun", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run.", "operation": { - "$id": "9089", + "$id": "9091", "name": "getRun", "resourceName": "Runs", "summary": "Retrieves a run.", "accessibility": "public", "parameters": [ { - "$id": "9090", + "$id": "9092", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121647,7 +121673,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.accept" }, { - "$id": "9091", + "$id": "9093", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121663,13 +121689,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.openAIBeta" }, { - "$id": "9092", + "$id": "9094", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9093", + "$id": "9095", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121687,13 +121713,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun.thread_id" }, { - "$id": "9094", + "$id": "9096", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9095", + "$id": "9097", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121717,7 +121743,7 @@ 200 ], "bodyType": { - "$ref": "6155" + "$ref": "6157" }, "headers": [], "isErrorResponse": false, @@ -121737,7 +121763,7 @@ }, "parameters": [ { - "$id": "9096", + "$id": "9098", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -121754,7 +121780,7 @@ "decorators": [] }, { - "$id": "9097", + "$id": "9099", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121771,13 +121797,13 @@ "decorators": [] }, { - "$id": "9098", + "$id": "9100", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9099", + "$id": "9101", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121793,13 +121819,13 @@ "decorators": [] }, { - "$id": "9100", + "$id": "9102", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to retrieve.", "type": { - "$id": "9101", + "$id": "9103", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121817,7 +121843,7 @@ ], "response": { "type": { - "$ref": "6155" + "$ref": "6157" } }, "isOverride": false, @@ -121826,21 +121852,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRun" }, { - "$id": "9102", + "$id": "9104", "kind": "basic", "name": "modifyRun", "accessibility": "public", "apiVersions": [], "summary": "Modifies a run.", "operation": { - "$id": "9103", + "$id": "9105", "name": "modifyRun", "resourceName": "Runs", "summary": "Modifies a run.", "accessibility": "public", "parameters": [ { - "$id": "9104", + "$id": "9106", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -121856,7 +121882,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.accept" }, { - "$id": "9105", + "$id": "9107", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -121872,13 +121898,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.openAIBeta" }, { - "$id": "9106", + "$id": "9108", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9107", + "$id": "9109", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121896,13 +121922,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.thread_id" }, { - "$id": "9108", + "$id": "9110", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9109", + "$id": "9111", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -121920,7 +121946,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.run_id" }, { - "$id": "9110", + "$id": "9112", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -121937,12 +121963,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun.contentType" }, { - "$id": "9111", + "$id": "9113", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6303" + "$ref": "6305" }, "isApiVersion": false, "contentTypes": [ @@ -121962,7 +121988,7 @@ 200 ], "bodyType": { - "$ref": "6155" + "$ref": "6157" }, "headers": [], "isErrorResponse": false, @@ -121985,7 +122011,7 @@ }, "parameters": [ { - "$id": "9112", + "$id": "9114", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122002,7 +122028,7 @@ "decorators": [] }, { - "$id": "9113", + "$id": "9115", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122019,13 +122045,13 @@ "decorators": [] }, { - "$id": "9114", + "$id": "9116", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) that was run.", "type": { - "$id": "9115", + "$id": "9117", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122041,13 +122067,13 @@ "decorators": [] }, { - "$id": "9116", + "$id": "9118", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to modify.", "type": { - "$id": "9117", + "$id": "9119", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122063,12 +122089,12 @@ "decorators": [] }, { - "$id": "9118", + "$id": "9120", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6303" + "$ref": "6305" }, "location": "Body", "isApiVersion": false, @@ -122080,7 +122106,7 @@ "decorators": [] }, { - "$id": "9119", + "$id": "9121", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122100,7 +122126,7 @@ ], "response": { "type": { - "$ref": "6155" + "$ref": "6157" } }, "isOverride": false, @@ -122109,21 +122135,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.modifyRun" }, { - "$id": "9120", + "$id": "9122", "kind": "basic", "name": "cancelRun", "accessibility": "public", "apiVersions": [], "summary": "Cancels a run that is `in_progress`.", "operation": { - "$id": "9121", + "$id": "9123", "name": "cancelRun", "resourceName": "Runs", "summary": "Cancels a run that is `in_progress`.", "accessibility": "public", "parameters": [ { - "$id": "9122", + "$id": "9124", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122139,7 +122165,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.accept" }, { - "$id": "9123", + "$id": "9125", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122155,13 +122181,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.openAIBeta" }, { - "$id": "9124", + "$id": "9126", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9125", + "$id": "9127", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122179,13 +122205,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun.thread_id" }, { - "$id": "9126", + "$id": "9128", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9127", + "$id": "9129", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122209,7 +122235,7 @@ 200 ], "bodyType": { - "$ref": "6155" + "$ref": "6157" }, "headers": [], "isErrorResponse": false, @@ -122229,7 +122255,7 @@ }, "parameters": [ { - "$id": "9128", + "$id": "9130", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122246,7 +122272,7 @@ "decorators": [] }, { - "$id": "9129", + "$id": "9131", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122263,13 +122289,13 @@ "decorators": [] }, { - "$id": "9130", + "$id": "9132", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which this run belongs.", "type": { - "$id": "9131", + "$id": "9133", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122285,13 +122311,13 @@ "decorators": [] }, { - "$id": "9132", + "$id": "9134", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to cancel.", "type": { - "$id": "9133", + "$id": "9135", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122309,7 +122335,7 @@ ], "response": { "type": { - "$ref": "6155" + "$ref": "6157" } }, "isOverride": false, @@ -122318,21 +122344,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.cancelRun" }, { - "$id": "9134", + "$id": "9136", "kind": "basic", "name": "submitToolOutputsToRun", "accessibility": "public", "apiVersions": [], "summary": "When a run has the `status: \"requires_action\"` and `required_action.type` is\n`submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once\nthey're all completed. All outputs must be submitted in a single request.", "operation": { - "$id": "9135", + "$id": "9137", "name": "submitToolOutputsToRun", "resourceName": "Runs", "summary": "When a run has the `status: \"requires_action\"` and `required_action.type` is\n`submit_tool_outputs`, this endpoint can be used to submit the outputs from the tool calls once\nthey're all completed. All outputs must be submitted in a single request.", "accessibility": "public", "parameters": [ { - "$id": "9136", + "$id": "9138", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122348,7 +122374,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.accept" }, { - "$id": "9137", + "$id": "9139", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122364,13 +122390,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.openAIBeta" }, { - "$id": "9138", + "$id": "9140", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) to which this run belongs.", "type": { - "$id": "9139", + "$id": "9141", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122388,13 +122414,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.thread_id" }, { - "$id": "9140", + "$id": "9142", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9141", + "$id": "9143", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122412,7 +122438,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.run_id" }, { - "$id": "9142", + "$id": "9144", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -122429,12 +122455,12 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun.contentType" }, { - "$id": "9143", + "$id": "9145", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6305" + "$ref": "6307" }, "isApiVersion": false, "contentTypes": [ @@ -122454,7 +122480,7 @@ 200 ], "bodyType": { - "$ref": "6155" + "$ref": "6157" }, "headers": [], "isErrorResponse": false, @@ -122477,7 +122503,7 @@ }, "parameters": [ { - "$id": "9144", + "$id": "9146", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122494,7 +122520,7 @@ "decorators": [] }, { - "$id": "9145", + "$id": "9147", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122511,13 +122537,13 @@ "decorators": [] }, { - "$id": "9146", + "$id": "9148", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the [thread](/docs/api-reference/threads) to which this run belongs.", "type": { - "$id": "9147", + "$id": "9149", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122533,13 +122559,13 @@ "decorators": [] }, { - "$id": "9148", + "$id": "9150", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run that requires the tool output submission.", "type": { - "$id": "9149", + "$id": "9151", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122555,12 +122581,12 @@ "decorators": [] }, { - "$id": "9150", + "$id": "9152", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6305" + "$ref": "6307" }, "location": "Body", "isApiVersion": false, @@ -122572,7 +122598,7 @@ "decorators": [] }, { - "$id": "9151", + "$id": "9153", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -122592,7 +122618,7 @@ ], "response": { "type": { - "$ref": "6155" + "$ref": "6157" } }, "isOverride": false, @@ -122601,21 +122627,21 @@ "crossLanguageDefinitionId": "OpenAI.Runs.submitToolOutputsToRun" }, { - "$id": "9152", + "$id": "9154", "kind": "paging", "name": "listRunSteps", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of run steps belonging to a run.", "operation": { - "$id": "9153", + "$id": "9155", "name": "listRunSteps", "resourceName": "Runs", "summary": "Returns a list of run steps belonging to a run.", "accessibility": "public", "parameters": [ { - "$id": "9154", + "$id": "9156", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -122631,7 +122657,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.accept" }, { - "$id": "9155", + "$id": "9157", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122647,13 +122673,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.openAIBeta" }, { - "$id": "9156", + "$id": "9158", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9157", + "$id": "9159", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122671,13 +122697,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.thread_id" }, { - "$id": "9158", + "$id": "9160", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9159", + "$id": "9161", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122695,13 +122721,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.listRunSteps.run_id" }, { - "$id": "9160", + "$id": "9162", "kind": "query", "name": "limit", "serializedName": "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": "9161", + "$id": "9163", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122716,7 +122742,7 @@ "readOnly": false }, { - "$id": "9162", + "$id": "9164", "kind": "query", "name": "order", "serializedName": "order", @@ -122733,13 +122759,13 @@ "readOnly": false }, { - "$id": "9163", + "$id": "9165", "kind": "query", "name": "after", "serializedName": "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": "9164", + "$id": "9166", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122754,13 +122780,13 @@ "readOnly": false }, { - "$id": "9165", + "$id": "9167", "kind": "query", "name": "before", "serializedName": "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": "9166", + "$id": "9168", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122775,13 +122801,13 @@ "readOnly": false }, { - "$id": "9167", + "$id": "9169", "kind": "query", "name": "include[]", "serializedName": "include[]", "doc": "A list of additional fields to include in the response. Currently the only supported value is\n`step_details.tool_calls[*].file_search.results[*].content` to fetch the file search result\ncontent.\n\nSee the\n[file search tool documentation](/docs/assistants/tools/file-search/customizing-file-search-settings)\nfor more information.", "type": { - "$ref": "9054" + "$ref": "9056" }, "isApiVersion": false, "explode": false, @@ -122799,7 +122825,7 @@ 200 ], "bodyType": { - "$ref": "6316" + "$ref": "6318" }, "headers": [], "isErrorResponse": false, @@ -122819,7 +122845,7 @@ }, "parameters": [ { - "$id": "9168", + "$id": "9170", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -122836,7 +122862,7 @@ "decorators": [] }, { - "$id": "9169", + "$id": "9171", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -122853,13 +122879,13 @@ "decorators": [] }, { - "$id": "9170", + "$id": "9172", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread the run and run steps belong to.", "type": { - "$id": "9171", + "$id": "9173", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122875,13 +122901,13 @@ "decorators": [] }, { - "$id": "9172", + "$id": "9174", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run the run steps belong to.", "type": { - "$id": "9173", + "$id": "9175", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122897,13 +122923,13 @@ "decorators": [] }, { - "$id": "9174", + "$id": "9176", "kind": "method", "name": "limit", "serializedName": "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": "9175", + "$id": "9177", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -122919,7 +122945,7 @@ "decorators": [] }, { - "$id": "9176", + "$id": "9178", "kind": "method", "name": "order", "serializedName": "order", @@ -122937,13 +122963,13 @@ "decorators": [] }, { - "$id": "9177", + "$id": "9179", "kind": "method", "name": "after", "serializedName": "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": "9178", + "$id": "9180", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122959,13 +122985,13 @@ "decorators": [] }, { - "$id": "9179", + "$id": "9181", "kind": "method", "name": "before", "serializedName": "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": "9180", + "$id": "9182", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -122981,13 +123007,13 @@ "decorators": [] }, { - "$id": "9181", + "$id": "9183", "kind": "method", "name": "include[]", "serializedName": "include[]", "doc": "A list of additional fields to include in the response. Currently the only supported value is\n`step_details.tool_calls[*].file_search.results[*].content` to fetch the file search result\ncontent.\n\nSee the\n[file search tool documentation](/docs/assistants/tools/file-search/customizing-file-search-settings)\nfor more information.", "type": { - "$ref": "9054" + "$ref": "9056" }, "location": "Query", "isApiVersion": false, @@ -123001,7 +123027,7 @@ ], "response": { "type": { - "$ref": "6319" + "$ref": "6321" }, "resultSegments": [ "data" @@ -123017,7 +123043,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9163" + "$ref": "9165" }, "responseSegments": [ "last_id" @@ -123027,21 +123053,21 @@ } }, { - "$id": "9182", + "$id": "9184", "kind": "basic", "name": "getRunStep", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a run step.", "operation": { - "$id": "9183", + "$id": "9185", "name": "getRunStep", "resourceName": "Runs", "summary": "Retrieves a run step.", "accessibility": "public", "parameters": [ { - "$id": "9184", + "$id": "9186", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123057,7 +123083,7 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.accept" }, { - "$id": "9185", + "$id": "9187", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123073,13 +123099,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.openAIBeta" }, { - "$id": "9186", + "$id": "9188", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9187", + "$id": "9189", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123097,13 +123123,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.thread_id" }, { - "$id": "9188", + "$id": "9190", "kind": "path", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9189", + "$id": "9191", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123121,13 +123147,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.run_id" }, { - "$id": "9190", + "$id": "9192", "kind": "path", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9191", + "$id": "9193", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123145,13 +123171,13 @@ "crossLanguageDefinitionId": "OpenAI.Runs.getRunStep.step_id" }, { - "$id": "9192", + "$id": "9194", "kind": "query", "name": "include[]", "serializedName": "include[]", "doc": "A list of additional fields to include in the response. Currently the only supported value is\n`step_details.tool_calls[*].file_search.results[*].content` to fetch the file search result\ncontent.\n\nSee the\n[file search tool documentation](/docs/assistants/tools/file-search/customizing-file-search-settings)\nfor more information.", "type": { - "$ref": "9054" + "$ref": "9056" }, "isApiVersion": false, "explode": false, @@ -123169,7 +123195,7 @@ 200 ], "bodyType": { - "$ref": "6320" + "$ref": "6322" }, "headers": [], "isErrorResponse": false, @@ -123189,7 +123215,7 @@ }, "parameters": [ { - "$id": "9193", + "$id": "9195", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123206,7 +123232,7 @@ "decorators": [] }, { - "$id": "9194", + "$id": "9196", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123223,13 +123249,13 @@ "decorators": [] }, { - "$id": "9195", + "$id": "9197", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to which the run and run step belongs.", "type": { - "$id": "9196", + "$id": "9198", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123245,13 +123271,13 @@ "decorators": [] }, { - "$id": "9197", + "$id": "9199", "kind": "method", "name": "run_id", "serializedName": "run_id", "doc": "The ID of the run to which the run step belongs.", "type": { - "$id": "9198", + "$id": "9200", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123267,13 +123293,13 @@ "decorators": [] }, { - "$id": "9199", + "$id": "9201", "kind": "method", "name": "step_id", "serializedName": "step_id", "doc": "The ID of the run step to retrieve.", "type": { - "$id": "9200", + "$id": "9202", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123289,13 +123315,13 @@ "decorators": [] }, { - "$id": "9201", + "$id": "9203", "kind": "method", "name": "include[]", "serializedName": "include[]", "doc": "A list of additional fields to include in the response. Currently the only supported value is\n`step_details.tool_calls[*].file_search.results[*].content` to fetch the file search result\ncontent.\n\nSee the\n[file search tool documentation](/docs/assistants/tools/file-search/customizing-file-search-settings)\nfor more information.", "type": { - "$ref": "9054" + "$ref": "9056" }, "location": "Query", "isApiVersion": false, @@ -123309,7 +123335,7 @@ ], "response": { "type": { - "$ref": "6320" + "$ref": "6322" } }, "isOverride": false, @@ -123320,13 +123346,13 @@ ], "parameters": [ { - "$id": "9202", + "$id": "9204", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9203", + "$id": "9205", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -123337,7 +123363,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9204", + "$id": "9206", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -123354,31 +123380,31 @@ "crossLanguageDefinitionId": "OpenAI.Runs", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9205", + "$id": "9207", "kind": "client", "name": "Threads", "namespace": "OpenAI", "methods": [ { - "$id": "9206", + "$id": "9208", "kind": "basic", "name": "createThread", "accessibility": "public", "apiVersions": [], "summary": "Create a thread.", "operation": { - "$id": "9207", + "$id": "9209", "name": "createThread", "resourceName": "Threads", "summary": "Create a thread.", "accessibility": "public", "parameters": [ { - "$id": "9208", + "$id": "9210", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123394,7 +123420,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.accept" }, { - "$id": "9209", + "$id": "9211", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123410,7 +123436,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.openAIBeta" }, { - "$id": "9210", + "$id": "9212", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123427,12 +123453,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread.contentType" }, { - "$id": "9211", + "$id": "9213", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6093" + "$ref": "6095" }, "isApiVersion": false, "contentTypes": [ @@ -123452,7 +123478,7 @@ 200 ], "bodyType": { - "$ref": "6469" + "$ref": "6471" }, "headers": [], "isErrorResponse": false, @@ -123475,7 +123501,7 @@ }, "parameters": [ { - "$id": "9212", + "$id": "9214", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123492,7 +123518,7 @@ "decorators": [] }, { - "$id": "9213", + "$id": "9215", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123509,12 +123535,12 @@ "decorators": [] }, { - "$id": "9214", + "$id": "9216", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6093" + "$ref": "6095" }, "location": "Body", "isApiVersion": false, @@ -123526,7 +123552,7 @@ "decorators": [] }, { - "$id": "9215", + "$id": "9217", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123546,7 +123572,7 @@ ], "response": { "type": { - "$ref": "6469" + "$ref": "6471" } }, "isOverride": false, @@ -123555,21 +123581,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.createThread" }, { - "$id": "9216", + "$id": "9218", "kind": "basic", "name": "getThread", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a thread.", "operation": { - "$id": "9217", + "$id": "9219", "name": "getThread", "resourceName": "Threads", "summary": "Retrieves a thread.", "accessibility": "public", "parameters": [ { - "$id": "9218", + "$id": "9220", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123585,7 +123611,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.accept" }, { - "$id": "9219", + "$id": "9221", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123601,13 +123627,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread.openAIBeta" }, { - "$id": "9220", + "$id": "9222", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9221", + "$id": "9223", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123631,7 +123657,7 @@ 200 ], "bodyType": { - "$ref": "6469" + "$ref": "6471" }, "headers": [], "isErrorResponse": false, @@ -123651,7 +123677,7 @@ }, "parameters": [ { - "$id": "9222", + "$id": "9224", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123668,7 +123694,7 @@ "decorators": [] }, { - "$id": "9223", + "$id": "9225", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123685,13 +123711,13 @@ "decorators": [] }, { - "$id": "9224", + "$id": "9226", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to retrieve.", "type": { - "$id": "9225", + "$id": "9227", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123709,7 +123735,7 @@ ], "response": { "type": { - "$ref": "6469" + "$ref": "6471" } }, "isOverride": false, @@ -123718,21 +123744,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.getThread" }, { - "$id": "9226", + "$id": "9228", "kind": "basic", "name": "modifyThread", "accessibility": "public", "apiVersions": [], "summary": "Modifies a thread.", "operation": { - "$id": "9227", + "$id": "9229", "name": "modifyThread", "resourceName": "Threads", "summary": "Modifies a thread.", "accessibility": "public", "parameters": [ { - "$id": "9228", + "$id": "9230", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123748,7 +123774,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.accept" }, { - "$id": "9229", + "$id": "9231", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123764,13 +123790,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.openAIBeta" }, { - "$id": "9230", + "$id": "9232", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9231", + "$id": "9233", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123788,7 +123814,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.thread_id" }, { - "$id": "9232", + "$id": "9234", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -123805,12 +123831,12 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread.contentType" }, { - "$id": "9233", + "$id": "9235", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6486" + "$ref": "6488" }, "isApiVersion": false, "contentTypes": [ @@ -123830,7 +123856,7 @@ 200 ], "bodyType": { - "$ref": "6469" + "$ref": "6471" }, "headers": [], "isErrorResponse": false, @@ -123853,7 +123879,7 @@ }, "parameters": [ { - "$id": "9234", + "$id": "9236", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -123870,7 +123896,7 @@ "decorators": [] }, { - "$id": "9235", + "$id": "9237", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -123887,13 +123913,13 @@ "decorators": [] }, { - "$id": "9236", + "$id": "9238", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to modify. Only the `metadata` can be modified.", "type": { - "$id": "9237", + "$id": "9239", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -123909,12 +123935,12 @@ "decorators": [] }, { - "$id": "9238", + "$id": "9240", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6486" + "$ref": "6488" }, "location": "Body", "isApiVersion": false, @@ -123926,7 +123952,7 @@ "decorators": [] }, { - "$id": "9239", + "$id": "9241", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -123946,7 +123972,7 @@ ], "response": { "type": { - "$ref": "6469" + "$ref": "6471" } }, "isOverride": false, @@ -123955,21 +123981,21 @@ "crossLanguageDefinitionId": "OpenAI.Threads.modifyThread" }, { - "$id": "9240", + "$id": "9242", "kind": "basic", "name": "deleteThread", "accessibility": "public", "apiVersions": [], "summary": "Delete a thread.", "operation": { - "$id": "9241", + "$id": "9243", "name": "deleteThread", "resourceName": "Threads", "summary": "Delete a thread.", "accessibility": "public", "parameters": [ { - "$id": "9242", + "$id": "9244", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -123985,7 +124011,7 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.accept" }, { - "$id": "9243", + "$id": "9245", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124001,13 +124027,13 @@ "crossLanguageDefinitionId": "OpenAI.Threads.deleteThread.openAIBeta" }, { - "$id": "9244", + "$id": "9246", "kind": "path", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9245", + "$id": "9247", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124031,7 +124057,7 @@ 200 ], "bodyType": { - "$ref": "6495" + "$ref": "6497" }, "headers": [], "isErrorResponse": false, @@ -124051,7 +124077,7 @@ }, "parameters": [ { - "$id": "9246", + "$id": "9248", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124068,7 +124094,7 @@ "decorators": [] }, { - "$id": "9247", + "$id": "9249", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -124085,13 +124111,13 @@ "decorators": [] }, { - "$id": "9248", + "$id": "9250", "kind": "method", "name": "thread_id", "serializedName": "thread_id", "doc": "The ID of the thread to delete.", "type": { - "$id": "9249", + "$id": "9251", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124109,7 +124135,7 @@ ], "response": { "type": { - "$ref": "6495" + "$ref": "6497" } }, "isOverride": false, @@ -124120,13 +124146,13 @@ ], "parameters": [ { - "$id": "9250", + "$id": "9252", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9251", + "$id": "9253", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -124137,7 +124163,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9252", + "$id": "9254", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -124154,31 +124180,31 @@ "crossLanguageDefinitionId": "OpenAI.Threads", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9253", + "$id": "9255", "kind": "client", "name": "VectorStores", "namespace": "OpenAI", "methods": [ { - "$id": "9254", + "$id": "9256", "kind": "paging", "name": "GetVectorStores", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector stores.", "operation": { - "$id": "9255", + "$id": "9257", "name": "GetVectorStores", "resourceName": "VectorStores", "summary": "Returns a list of vector stores.", "accessibility": "public", "parameters": [ { - "$id": "9256", + "$id": "9258", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124194,13 +124220,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStores.accept" }, { - "$id": "9257", + "$id": "9259", "kind": "query", "name": "limit", "serializedName": "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": "9258", + "$id": "9260", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124215,7 +124241,7 @@ "readOnly": false }, { - "$id": "9259", + "$id": "9261", "kind": "query", "name": "order", "serializedName": "order", @@ -124232,13 +124258,13 @@ "readOnly": false }, { - "$id": "9260", + "$id": "9262", "kind": "query", "name": "after", "serializedName": "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": "9261", + "$id": "9263", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124253,13 +124279,13 @@ "readOnly": false }, { - "$id": "9262", + "$id": "9264", "kind": "query", "name": "before", "serializedName": "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": "9263", + "$id": "9265", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124280,7 +124306,7 @@ 200 ], "bodyType": { - "$ref": "6501" + "$ref": "6503" }, "headers": [], "isErrorResponse": false, @@ -124300,7 +124326,7 @@ }, "parameters": [ { - "$id": "9264", + "$id": "9266", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124317,13 +124343,13 @@ "decorators": [] }, { - "$id": "9265", + "$id": "9267", "kind": "method", "name": "limit", "serializedName": "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": "9266", + "$id": "9268", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -124339,7 +124365,7 @@ "decorators": [] }, { - "$id": "9267", + "$id": "9269", "kind": "method", "name": "order", "serializedName": "order", @@ -124357,13 +124383,13 @@ "decorators": [] }, { - "$id": "9268", + "$id": "9270", "kind": "method", "name": "after", "serializedName": "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": "9269", + "$id": "9271", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124379,13 +124405,13 @@ "decorators": [] }, { - "$id": "9270", + "$id": "9272", "kind": "method", "name": "before", "serializedName": "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": "9271", + "$id": "9273", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124403,7 +124429,7 @@ ], "response": { "type": { - "$ref": "6504" + "$ref": "6506" }, "resultSegments": [ "data" @@ -124419,7 +124445,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9260" + "$ref": "9262" }, "responseSegments": [ "last_id" @@ -124429,21 +124455,21 @@ } }, { - "$id": "9272", + "$id": "9274", "kind": "basic", "name": "createVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Creates a vector store.", "operation": { - "$id": "9273", + "$id": "9275", "name": "createVectorStore", "resourceName": "VectorStores", "summary": "Creates a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9274", + "$id": "9276", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124459,7 +124485,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.accept" }, { - "$id": "9275", + "$id": "9277", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -124476,12 +124502,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore.contentType" }, { - "$id": "9276", + "$id": "9278", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6553" + "$ref": "6555" }, "isApiVersion": false, "contentTypes": [ @@ -124501,7 +124527,7 @@ 200 ], "bodyType": { - "$ref": "6505" + "$ref": "6507" }, "headers": [], "isErrorResponse": false, @@ -124524,7 +124550,7 @@ }, "parameters": [ { - "$id": "9277", + "$id": "9279", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124541,12 +124567,12 @@ "decorators": [] }, { - "$id": "9278", + "$id": "9280", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6553" + "$ref": "6555" }, "location": "Body", "isApiVersion": false, @@ -124558,7 +124584,7 @@ "decorators": [] }, { - "$id": "9279", + "$id": "9281", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -124578,7 +124604,7 @@ ], "response": { "type": { - "$ref": "6505" + "$ref": "6507" } }, "isOverride": false, @@ -124587,21 +124613,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStore" }, { - "$id": "9280", + "$id": "9282", "kind": "basic", "name": "getVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store.", "operation": { - "$id": "9281", + "$id": "9283", "name": "getVectorStore", "resourceName": "VectorStores", "summary": "Retrieves a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9282", + "$id": "9284", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124617,13 +124643,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore.accept" }, { - "$id": "9283", + "$id": "9285", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9284", + "$id": "9286", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124647,7 +124673,7 @@ 200 ], "bodyType": { - "$ref": "6505" + "$ref": "6507" }, "headers": [], "isErrorResponse": false, @@ -124667,7 +124693,7 @@ }, "parameters": [ { - "$id": "9285", + "$id": "9287", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124684,13 +124710,13 @@ "decorators": [] }, { - "$id": "9286", + "$id": "9288", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to retrieve.", "type": { - "$id": "9287", + "$id": "9289", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124708,7 +124734,7 @@ ], "response": { "type": { - "$ref": "6505" + "$ref": "6507" } }, "isOverride": false, @@ -124717,21 +124743,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStore" }, { - "$id": "9288", + "$id": "9290", "kind": "basic", "name": "modifyVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Modifies a vector store.", "operation": { - "$id": "9289", + "$id": "9291", "name": "modifyVectorStore", "resourceName": "VectorStores", "summary": "Modifies a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9290", + "$id": "9292", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124747,13 +124773,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.accept" }, { - "$id": "9291", + "$id": "9293", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9292", + "$id": "9294", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124771,7 +124797,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.vector_store_id" }, { - "$id": "9293", + "$id": "9295", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -124788,12 +124814,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore.contentType" }, { - "$id": "9294", + "$id": "9296", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6561" + "$ref": "6563" }, "isApiVersion": false, "contentTypes": [ @@ -124813,7 +124839,7 @@ 200 ], "bodyType": { - "$ref": "6505" + "$ref": "6507" }, "headers": [], "isErrorResponse": false, @@ -124836,7 +124862,7 @@ }, "parameters": [ { - "$id": "9295", + "$id": "9297", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -124853,13 +124879,13 @@ "decorators": [] }, { - "$id": "9296", + "$id": "9298", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to modify.", "type": { - "$id": "9297", + "$id": "9299", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124875,12 +124901,12 @@ "decorators": [] }, { - "$id": "9298", + "$id": "9300", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6561" + "$ref": "6563" }, "location": "Body", "isApiVersion": false, @@ -124892,7 +124918,7 @@ "decorators": [] }, { - "$id": "9299", + "$id": "9301", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -124912,7 +124938,7 @@ ], "response": { "type": { - "$ref": "6505" + "$ref": "6507" } }, "isOverride": false, @@ -124921,21 +124947,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.modifyVectorStore" }, { - "$id": "9300", + "$id": "9302", "kind": "basic", "name": "deleteVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Delete a vector store.", "operation": { - "$id": "9301", + "$id": "9303", "name": "deleteVectorStore", "resourceName": "VectorStores", "summary": "Delete a vector store.", "accessibility": "public", "parameters": [ { - "$id": "9302", + "$id": "9304", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -124951,13 +124977,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore.accept" }, { - "$id": "9303", + "$id": "9305", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9304", + "$id": "9306", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -124981,7 +125007,7 @@ 200 ], "bodyType": { - "$ref": "6568" + "$ref": "6570" }, "headers": [], "isErrorResponse": false, @@ -125001,7 +125027,7 @@ }, "parameters": [ { - "$id": "9305", + "$id": "9307", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125018,13 +125044,13 @@ "decorators": [] }, { - "$id": "9306", + "$id": "9308", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to delete.", "type": { - "$id": "9307", + "$id": "9309", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125042,7 +125068,7 @@ ], "response": { "type": { - "$ref": "6568" + "$ref": "6570" } }, "isOverride": false, @@ -125051,21 +125077,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStore" }, { - "$id": "9308", + "$id": "9310", "kind": "basic", "name": "AddFileBatchToVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Create a vector store file batch.", "operation": { - "$id": "9309", + "$id": "9311", "name": "AddFileBatchToVectorStore", "resourceName": "VectorStores", "summary": "Create a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9310", + "$id": "9312", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125081,13 +125107,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.accept" }, { - "$id": "9311", + "$id": "9313", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store for which to create a file batch.", "type": { - "$id": "9312", + "$id": "9314", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125105,7 +125131,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.vector_store_id" }, { - "$id": "9313", + "$id": "9315", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -125122,12 +125148,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch.contentType" }, { - "$id": "9314", + "$id": "9316", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6574" + "$ref": "6576" }, "isApiVersion": false, "contentTypes": [ @@ -125147,7 +125173,7 @@ 200 ], "bodyType": { - "$ref": "6579" + "$ref": "6581" }, "headers": [], "isErrorResponse": false, @@ -125170,7 +125196,7 @@ }, "parameters": [ { - "$id": "9315", + "$id": "9317", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125187,13 +125213,13 @@ "decorators": [] }, { - "$id": "9316", + "$id": "9318", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store for which to create a file batch.", "type": { - "$id": "9317", + "$id": "9319", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125209,12 +125235,12 @@ "decorators": [] }, { - "$id": "9318", + "$id": "9320", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6574" + "$ref": "6576" }, "location": "Body", "isApiVersion": false, @@ -125226,7 +125252,7 @@ "decorators": [] }, { - "$id": "9319", + "$id": "9321", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -125246,7 +125272,7 @@ ], "response": { "type": { - "$ref": "6579" + "$ref": "6581" } }, "isOverride": false, @@ -125255,21 +125281,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFileBatch" }, { - "$id": "9320", + "$id": "9322", "kind": "basic", "name": "getVectorStoreFileBatch", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file batch.", "operation": { - "$id": "9321", + "$id": "9323", "name": "getVectorStoreFileBatch", "resourceName": "VectorStores", "summary": "Retrieves a vector store file batch.", "accessibility": "public", "parameters": [ { - "$id": "9322", + "$id": "9324", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125285,13 +125311,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.accept" }, { - "$id": "9323", + "$id": "9325", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file batch belongs to.", "type": { - "$id": "9324", + "$id": "9326", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125309,13 +125335,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch.vector_store_id" }, { - "$id": "9325", + "$id": "9327", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9326", + "$id": "9328", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125339,7 +125365,7 @@ 200 ], "bodyType": { - "$ref": "6579" + "$ref": "6581" }, "headers": [], "isErrorResponse": false, @@ -125359,7 +125385,7 @@ }, "parameters": [ { - "$id": "9327", + "$id": "9329", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125376,13 +125402,13 @@ "decorators": [] }, { - "$id": "9328", + "$id": "9330", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file batch belongs to.", "type": { - "$id": "9329", + "$id": "9331", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125398,13 +125424,13 @@ "decorators": [] }, { - "$id": "9330", + "$id": "9332", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch being retrieved.", "type": { - "$id": "9331", + "$id": "9333", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125422,7 +125448,7 @@ ], "response": { "type": { - "$ref": "6579" + "$ref": "6581" } }, "isOverride": false, @@ -125431,21 +125457,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFileBatch" }, { - "$id": "9332", + "$id": "9334", "kind": "basic", "name": "cancelVectorStoreFileBatch", "accessibility": "public", "apiVersions": [], "summary": "Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.", "operation": { - "$id": "9333", + "$id": "9335", "name": "cancelVectorStoreFileBatch", "resourceName": "VectorStores", "summary": "Cancel a vector store file batch. This attempts to cancel the processing of files in this batch as soon as possible.", "accessibility": "public", "parameters": [ { - "$id": "9334", + "$id": "9336", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125461,13 +125487,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.accept" }, { - "$id": "9335", + "$id": "9337", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file batch belongs to.", "type": { - "$id": "9336", + "$id": "9338", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125485,13 +125511,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch.vector_store_id" }, { - "$id": "9337", + "$id": "9339", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9338", + "$id": "9340", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125515,7 +125541,7 @@ 200 ], "bodyType": { - "$ref": "6579" + "$ref": "6581" }, "headers": [], "isErrorResponse": false, @@ -125535,7 +125561,7 @@ }, "parameters": [ { - "$id": "9339", + "$id": "9341", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125552,13 +125578,13 @@ "decorators": [] }, { - "$id": "9340", + "$id": "9342", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file batch belongs to.", "type": { - "$id": "9341", + "$id": "9343", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125574,13 +125600,13 @@ "decorators": [] }, { - "$id": "9342", + "$id": "9344", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch to cancel.", "type": { - "$id": "9343", + "$id": "9345", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125598,7 +125624,7 @@ ], "response": { "type": { - "$ref": "6579" + "$ref": "6581" } }, "isOverride": false, @@ -125607,21 +125633,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.cancelVectorStoreFileBatch" }, { - "$id": "9344", + "$id": "9346", "kind": "paging", "name": "GetVectorStoreFilesInBatch", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files in a batch.", "operation": { - "$id": "9345", + "$id": "9347", "name": "GetVectorStoreFilesInBatch", "resourceName": "VectorStores", "summary": "Returns a list of vector store files in a batch.", "accessibility": "public", "parameters": [ { - "$id": "9346", + "$id": "9348", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -125637,13 +125663,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.accept" }, { - "$id": "9347", + "$id": "9349", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file batch belongs to.", "type": { - "$id": "9348", + "$id": "9350", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125661,13 +125687,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.vector_store_id" }, { - "$id": "9349", + "$id": "9351", "kind": "path", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9350", + "$id": "9352", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125685,13 +125711,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listFilesInVectorStoreBatch.batch_id" }, { - "$id": "9351", + "$id": "9353", "kind": "query", "name": "limit", "serializedName": "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": "9352", + "$id": "9354", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125706,7 +125732,7 @@ "readOnly": false }, { - "$id": "9353", + "$id": "9355", "kind": "query", "name": "order", "serializedName": "order", @@ -125723,13 +125749,13 @@ "readOnly": false }, { - "$id": "9354", + "$id": "9356", "kind": "query", "name": "after", "serializedName": "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": "9355", + "$id": "9357", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125744,13 +125770,13 @@ "readOnly": false }, { - "$id": "9356", + "$id": "9358", "kind": "query", "name": "before", "serializedName": "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": "9357", + "$id": "9359", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125765,7 +125791,7 @@ "readOnly": false }, { - "$id": "9358", + "$id": "9360", "kind": "query", "name": "filter", "serializedName": "filter", @@ -125788,7 +125814,7 @@ 200 ], "bodyType": { - "$ref": "6601" + "$ref": "6603" }, "headers": [], "isErrorResponse": false, @@ -125808,7 +125834,7 @@ }, "parameters": [ { - "$id": "9359", + "$id": "9361", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -125825,13 +125851,13 @@ "decorators": [] }, { - "$id": "9360", + "$id": "9362", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file batch belongs to.", "type": { - "$id": "9361", + "$id": "9363", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125847,13 +125873,13 @@ "decorators": [] }, { - "$id": "9362", + "$id": "9364", "kind": "method", "name": "batch_id", "serializedName": "batch_id", "doc": "The ID of the file batch that the files belong to.", "type": { - "$id": "9363", + "$id": "9365", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125869,13 +125895,13 @@ "decorators": [] }, { - "$id": "9364", + "$id": "9366", "kind": "method", "name": "limit", "serializedName": "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": "9365", + "$id": "9367", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -125891,7 +125917,7 @@ "decorators": [] }, { - "$id": "9366", + "$id": "9368", "kind": "method", "name": "order", "serializedName": "order", @@ -125909,13 +125935,13 @@ "decorators": [] }, { - "$id": "9367", + "$id": "9369", "kind": "method", "name": "after", "serializedName": "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": "9368", + "$id": "9370", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125931,13 +125957,13 @@ "decorators": [] }, { - "$id": "9369", + "$id": "9371", "kind": "method", "name": "before", "serializedName": "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": "9370", + "$id": "9372", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -125953,7 +125979,7 @@ "decorators": [] }, { - "$id": "9371", + "$id": "9373", "kind": "method", "name": "filter", "serializedName": "filter", @@ -125973,7 +125999,7 @@ ], "response": { "type": { - "$ref": "6604" + "$ref": "6606" }, "resultSegments": [ "data" @@ -125989,7 +126015,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9354" + "$ref": "9356" }, "responseSegments": [ "last_id" @@ -125999,21 +126025,21 @@ } }, { - "$id": "9372", + "$id": "9374", "kind": "paging", "name": "listVectorStoreFiles", "accessibility": "public", "apiVersions": [], "summary": "Returns a list of vector store files.", "operation": { - "$id": "9373", + "$id": "9375", "name": "listVectorStoreFiles", "resourceName": "VectorStores", "summary": "Returns a list of vector store files.", "accessibility": "public", "parameters": [ { - "$id": "9374", + "$id": "9376", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126029,13 +126055,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.accept" }, { - "$id": "9375", + "$id": "9377", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9376", + "$id": "9378", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126053,13 +126079,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.listVectorStoreFiles.vector_store_id" }, { - "$id": "9377", + "$id": "9379", "kind": "query", "name": "limit", "serializedName": "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": "9378", + "$id": "9380", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -126074,7 +126100,7 @@ "readOnly": false }, { - "$id": "9379", + "$id": "9381", "kind": "query", "name": "order", "serializedName": "order", @@ -126091,13 +126117,13 @@ "readOnly": false }, { - "$id": "9380", + "$id": "9382", "kind": "query", "name": "after", "serializedName": "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": "9381", + "$id": "9383", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126112,13 +126138,13 @@ "readOnly": false }, { - "$id": "9382", + "$id": "9384", "kind": "query", "name": "before", "serializedName": "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": "9383", + "$id": "9385", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126133,7 +126159,7 @@ "readOnly": false }, { - "$id": "9384", + "$id": "9386", "kind": "query", "name": "filter", "serializedName": "filter", @@ -126156,7 +126182,7 @@ 200 ], "bodyType": { - "$ref": "6601" + "$ref": "6603" }, "headers": [], "isErrorResponse": false, @@ -126176,7 +126202,7 @@ }, "parameters": [ { - "$id": "9385", + "$id": "9387", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126193,13 +126219,13 @@ "decorators": [] }, { - "$id": "9386", + "$id": "9388", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the files belong to.", "type": { - "$id": "9387", + "$id": "9389", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126215,13 +126241,13 @@ "decorators": [] }, { - "$id": "9388", + "$id": "9390", "kind": "method", "name": "limit", "serializedName": "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": "9389", + "$id": "9391", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -126237,7 +126263,7 @@ "decorators": [] }, { - "$id": "9390", + "$id": "9392", "kind": "method", "name": "order", "serializedName": "order", @@ -126255,13 +126281,13 @@ "decorators": [] }, { - "$id": "9391", + "$id": "9393", "kind": "method", "name": "after", "serializedName": "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": "9392", + "$id": "9394", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126277,13 +126303,13 @@ "decorators": [] }, { - "$id": "9393", + "$id": "9395", "kind": "method", "name": "before", "serializedName": "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": "9394", + "$id": "9396", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126299,7 +126325,7 @@ "decorators": [] }, { - "$id": "9395", + "$id": "9397", "kind": "method", "name": "filter", "serializedName": "filter", @@ -126319,7 +126345,7 @@ ], "response": { "type": { - "$ref": "6604" + "$ref": "6606" }, "resultSegments": [ "data" @@ -126335,7 +126361,7 @@ ], "continuationToken": { "parameter": { - "$ref": "9380" + "$ref": "9382" }, "responseSegments": [ "last_id" @@ -126345,21 +126371,21 @@ } }, { - "$id": "9396", + "$id": "9398", "kind": "basic", "name": "AddFileToVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Create a vector store file by attaching a [File](/docs/api-reference/files) to a [vector store](/docs/api-reference/vector-stores/object).", "operation": { - "$id": "9397", + "$id": "9399", "name": "AddFileToVectorStore", "resourceName": "VectorStores", "summary": "Create a vector store file by attaching a [File](/docs/api-reference/files) to a [vector store](/docs/api-reference/vector-stores/object).", "accessibility": "public", "parameters": [ { - "$id": "9398", + "$id": "9400", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126375,13 +126401,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.accept" }, { - "$id": "9399", + "$id": "9401", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store for which to create a File.", "type": { - "$id": "9400", + "$id": "9402", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126399,7 +126425,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.vector_store_id" }, { - "$id": "9401", + "$id": "9403", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126416,12 +126442,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile.contentType" }, { - "$id": "9402", + "$id": "9404", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6645" + "$ref": "6647" }, "isApiVersion": false, "contentTypes": [ @@ -126441,7 +126467,7 @@ 200 ], "bodyType": { - "$ref": "6605" + "$ref": "6607" }, "headers": [], "isErrorResponse": false, @@ -126464,7 +126490,7 @@ }, "parameters": [ { - "$id": "9403", + "$id": "9405", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126481,13 +126507,13 @@ "decorators": [] }, { - "$id": "9404", + "$id": "9406", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store for which to create a File.", "type": { - "$id": "9405", + "$id": "9407", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126503,12 +126529,12 @@ "decorators": [] }, { - "$id": "9406", + "$id": "9408", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6645" + "$ref": "6647" }, "location": "Body", "isApiVersion": false, @@ -126520,7 +126546,7 @@ "decorators": [] }, { - "$id": "9407", + "$id": "9409", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -126540,7 +126566,7 @@ ], "response": { "type": { - "$ref": "6605" + "$ref": "6607" } }, "isOverride": false, @@ -126549,21 +126575,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.createVectorStoreFile" }, { - "$id": "9408", + "$id": "9410", "kind": "basic", "name": "getVectorStoreFile", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a vector store file.", "operation": { - "$id": "9409", + "$id": "9411", "name": "getVectorStoreFile", "resourceName": "VectorStores", "summary": "Retrieves a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9410", + "$id": "9412", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126579,13 +126605,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.accept" }, { - "$id": "9411", + "$id": "9413", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9412", + "$id": "9414", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126603,13 +126629,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile.vector_store_id" }, { - "$id": "9413", + "$id": "9415", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9414", + "$id": "9416", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126633,7 +126659,7 @@ 200 ], "bodyType": { - "$ref": "6605" + "$ref": "6607" }, "headers": [], "isErrorResponse": false, @@ -126653,7 +126679,7 @@ }, "parameters": [ { - "$id": "9415", + "$id": "9417", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126670,13 +126696,13 @@ "decorators": [] }, { - "$id": "9416", + "$id": "9418", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9417", + "$id": "9419", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126692,13 +126718,13 @@ "decorators": [] }, { - "$id": "9418", + "$id": "9420", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file being retrieved.", "type": { - "$id": "9419", + "$id": "9421", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126716,7 +126742,7 @@ ], "response": { "type": { - "$ref": "6605" + "$ref": "6607" } }, "isOverride": false, @@ -126725,21 +126751,21 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.getVectorStoreFile" }, { - "$id": "9420", + "$id": "9422", "kind": "basic", "name": "RemoveFileFromVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Delete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.", "operation": { - "$id": "9421", + "$id": "9423", "name": "RemoveFileFromVectorStore", "resourceName": "VectorStores", "summary": "Delete a vector store file. This will remove the file from the vector store but the file itself will not be deleted. To delete the file, use the [delete file](/docs/api-reference/files/delete) endpoint.", "accessibility": "public", "parameters": [ { - "$id": "9422", + "$id": "9424", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126755,13 +126781,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.accept" }, { - "$id": "9423", + "$id": "9425", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9424", + "$id": "9426", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126779,13 +126805,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile.vector_store_id" }, { - "$id": "9425", + "$id": "9427", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9426", + "$id": "9428", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126809,7 +126835,7 @@ 200 ], "bodyType": { - "$ref": "6651" + "$ref": "6653" }, "headers": [], "isErrorResponse": false, @@ -126829,7 +126855,7 @@ }, "parameters": [ { - "$id": "9427", + "$id": "9429", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -126846,13 +126872,13 @@ "decorators": [] }, { - "$id": "9428", + "$id": "9430", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9429", + "$id": "9431", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126868,13 +126894,13 @@ "decorators": [] }, { - "$id": "9430", + "$id": "9432", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to delete.", "type": { - "$id": "9431", + "$id": "9433", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126892,7 +126918,7 @@ ], "response": { "type": { - "$ref": "6651" + "$ref": "6653" } }, "isOverride": false, @@ -126901,27 +126927,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.deleteVectorStoreFile" }, { - "$id": "9432", + "$id": "9434", "kind": "basic", "name": "updateVectorStoreFileAttributes", "accessibility": "public", "apiVersions": [], "summary": "Update the attributes of a vector store file.", "operation": { - "$id": "9433", + "$id": "9435", "name": "updateVectorStoreFileAttributes", "resourceName": "VectorStores", "summary": "Update the attributes of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9434", + "$id": "9436", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store the file being updated belongs to.", "type": { - "$id": "9435", + "$id": "9437", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126939,13 +126965,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.vector_store_id" }, { - "$id": "9436", + "$id": "9438", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9437", + "$id": "9439", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -126963,7 +126989,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.file_id" }, { - "$id": "9438", + "$id": "9440", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -126980,7 +127006,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.contentType" }, { - "$id": "9439", + "$id": "9441", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -126996,12 +127022,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes.accept" }, { - "$id": "9440", + "$id": "9442", "kind": "body", "name": "updateVectorStoreFileAttributesRequest", "serializedName": "updateVectorStoreFileAttributesRequest", "type": { - "$ref": "6657" + "$ref": "6659" }, "isApiVersion": false, "contentTypes": [ @@ -127021,7 +127047,7 @@ 200 ], "bodyType": { - "$ref": "6605" + "$ref": "6607" }, "headers": [], "isErrorResponse": false, @@ -127044,13 +127070,13 @@ }, "parameters": [ { - "$id": "9441", + "$id": "9443", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store the file being updated belongs to.", "type": { - "$id": "9442", + "$id": "9444", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127066,13 +127092,13 @@ "decorators": [] }, { - "$id": "9443", + "$id": "9445", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file to update attributes for.", "type": { - "$id": "9444", + "$id": "9446", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127088,12 +127114,12 @@ "decorators": [] }, { - "$id": "9445", + "$id": "9447", "kind": "method", "name": "attributes", "serializedName": "attributes", "type": { - "$ref": "6659" + "$ref": "6661" }, "location": "Body", "isApiVersion": false, @@ -127105,7 +127131,7 @@ "decorators": [] }, { - "$id": "9446", + "$id": "9448", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127123,7 +127149,7 @@ "decorators": [] }, { - "$id": "9447", + "$id": "9449", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127142,7 +127168,7 @@ ], "response": { "type": { - "$ref": "6605" + "$ref": "6607" } }, "isOverride": false, @@ -127151,27 +127177,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.updateVectorStoreFileAttributes" }, { - "$id": "9448", + "$id": "9450", "kind": "basic", "name": "retrieveVectorStoreFileContent", "accessibility": "public", "apiVersions": [], "summary": "Retrieves the content of a vector store file.", "operation": { - "$id": "9449", + "$id": "9451", "name": "retrieveVectorStoreFileContent", "resourceName": "VectorStores", "summary": "Retrieves the content of a vector store file.", "accessibility": "public", "parameters": [ { - "$id": "9450", + "$id": "9452", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9451", + "$id": "9453", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127189,13 +127215,13 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.vector_store_id" }, { - "$id": "9452", + "$id": "9454", "kind": "path", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9453", + "$id": "9455", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127213,7 +127239,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent.file_id" }, { - "$id": "9454", + "$id": "9456", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127235,7 +127261,7 @@ 200 ], "bodyType": { - "$ref": "6660" + "$ref": "6662" }, "headers": [], "isErrorResponse": false, @@ -127255,13 +127281,13 @@ }, "parameters": [ { - "$id": "9455", + "$id": "9457", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store that the file belongs to.", "type": { - "$id": "9456", + "$id": "9458", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127277,13 +127303,13 @@ "decorators": [] }, { - "$id": "9457", + "$id": "9459", "kind": "method", "name": "file_id", "serializedName": "file_id", "doc": "The ID of the file with content being retrieved.", "type": { - "$id": "9458", + "$id": "9460", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127299,7 +127325,7 @@ "decorators": [] }, { - "$id": "9459", + "$id": "9461", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127318,7 +127344,7 @@ ], "response": { "type": { - "$ref": "6660" + "$ref": "6662" } }, "isOverride": false, @@ -127327,27 +127353,27 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.retrieveVectorStoreFileContent" }, { - "$id": "9460", + "$id": "9462", "kind": "basic", "name": "searchVectorStore", "accessibility": "public", "apiVersions": [], "summary": "Searches a vector store for relevant chunks based on a query and file attributes filter.", "operation": { - "$id": "9461", + "$id": "9463", "name": "searchVectorStore", "resourceName": "VectorStores", "summary": "Searches a vector store for relevant chunks based on a query and file attributes filter.", "accessibility": "public", "parameters": [ { - "$id": "9462", + "$id": "9464", "kind": "path", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9463", + "$id": "9465", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127365,7 +127391,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.vector_store_id" }, { - "$id": "9464", + "$id": "9466", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127382,7 +127408,7 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.contentType" }, { - "$id": "9465", + "$id": "9467", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127398,12 +127424,12 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores.searchVectorStore.accept" }, { - "$id": "9466", + "$id": "9468", "kind": "body", "name": "vectorStoreSearchRequest", "serializedName": "vectorStoreSearchRequest", "type": { - "$ref": "6678" + "$ref": "6680" }, "isApiVersion": false, "contentTypes": [ @@ -127423,7 +127449,7 @@ 200 ], "bodyType": { - "$ref": "6689" + "$ref": "6691" }, "headers": [], "isErrorResponse": false, @@ -127446,13 +127472,13 @@ }, "parameters": [ { - "$id": "9467", + "$id": "9469", "kind": "method", "name": "vector_store_id", "serializedName": "vector_store_id", "doc": "The ID of the vector store to search.", "type": { - "$id": "9468", + "$id": "9470", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -127468,13 +127494,13 @@ "decorators": [] }, { - "$id": "9469", + "$id": "9471", "kind": "method", "name": "query", "serializedName": "query", "doc": "A query string for a search", "type": { - "$ref": "6680" + "$ref": "6682" }, "location": "Body", "isApiVersion": false, @@ -127486,13 +127512,13 @@ "decorators": [] }, { - "$id": "9470", + "$id": "9472", "kind": "method", "name": "rewrite_query", "serializedName": "rewrite_query", "doc": "Whether to rewrite the natural language query for vector search.", "type": { - "$id": "9471", + "$id": "9473", "kind": "boolean", "name": "boolean", "crossLanguageDefinitionId": "TypeSpec.boolean", @@ -127508,13 +127534,13 @@ "decorators": [] }, { - "$id": "9472", + "$id": "9474", "kind": "method", "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": "9473", + "$id": "9475", "kind": "int32", "name": "int32", "crossLanguageDefinitionId": "TypeSpec.int32", @@ -127530,13 +127556,13 @@ "decorators": [] }, { - "$id": "9474", + "$id": "9476", "kind": "method", "name": "filters", "serializedName": "filters", "doc": "A filter to apply based on file attributes.", "type": { - "$ref": "6687" + "$ref": "6689" }, "location": "Body", "isApiVersion": false, @@ -127548,13 +127574,13 @@ "decorators": [] }, { - "$id": "9475", + "$id": "9477", "kind": "method", "name": "ranking_options", "serializedName": "ranking_options", "doc": "Ranking options for search.", "type": { - "$ref": "6674" + "$ref": "6676" }, "location": "Body", "isApiVersion": false, @@ -127566,7 +127592,7 @@ "decorators": [] }, { - "$id": "9476", + "$id": "9478", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127584,7 +127610,7 @@ "decorators": [] }, { - "$id": "9477", + "$id": "9479", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127603,7 +127629,7 @@ ], "response": { "type": { - "$ref": "6689" + "$ref": "6691" } }, "isOverride": false, @@ -127614,13 +127640,13 @@ ], "parameters": [ { - "$id": "9478", + "$id": "9480", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9479", + "$id": "9481", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -127631,7 +127657,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9480", + "$id": "9482", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -127648,31 +127674,31 @@ "crossLanguageDefinitionId": "OpenAI.VectorStores", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9481", + "$id": "9483", "kind": "client", "name": "Completions", "namespace": "OpenAI", "methods": [ { - "$id": "9482", + "$id": "9484", "kind": "basic", "name": "createCompletion", "accessibility": "public", "apiVersions": [], "summary": "Creates a completion for the provided prompt and parameters.", "operation": { - "$id": "9483", + "$id": "9485", "name": "createCompletion", "resourceName": "Completions", "summary": "Creates a completion for the provided prompt and parameters.", "accessibility": "public", "parameters": [ { - "$id": "9484", + "$id": "9486", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127688,7 +127714,7 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.accept" }, { - "$id": "9485", + "$id": "9487", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -127705,12 +127731,12 @@ "crossLanguageDefinitionId": "OpenAI.Completions.createCompletion.contentType" }, { - "$id": "9486", + "$id": "9488", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6714" + "$ref": "6716" }, "isApiVersion": false, "contentTypes": [ @@ -127730,7 +127756,7 @@ 200 ], "bodyType": { - "$ref": "6764" + "$ref": "6766" }, "headers": [], "isErrorResponse": false, @@ -127753,7 +127779,7 @@ }, "parameters": [ { - "$id": "9487", + "$id": "9489", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127770,12 +127796,12 @@ "decorators": [] }, { - "$id": "9488", + "$id": "9490", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "6714" + "$ref": "6716" }, "location": "Body", "isApiVersion": false, @@ -127787,7 +127813,7 @@ "decorators": [] }, { - "$id": "9489", + "$id": "9491", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -127807,7 +127833,7 @@ ], "response": { "type": { - "$ref": "6764" + "$ref": "6766" } }, "isOverride": false, @@ -127818,13 +127844,13 @@ ], "parameters": [ { - "$id": "9490", + "$id": "9492", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9491", + "$id": "9493", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -127835,7 +127861,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9492", + "$id": "9494", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -127852,31 +127878,31 @@ "crossLanguageDefinitionId": "OpenAI.Completions", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9493", + "$id": "9495", "kind": "client", "name": "Models", "namespace": "OpenAI", "methods": [ { - "$id": "9494", + "$id": "9496", "kind": "basic", "name": "listModels", "accessibility": "public", "apiVersions": [], "summary": "Lists the currently available models, and provides basic information about each one such as the\nowner and availability.", "operation": { - "$id": "9495", + "$id": "9497", "name": "listModels", "resourceName": "Models", "summary": "Lists the currently available models, and provides basic information about each one such as the\nowner and availability.", "accessibility": "public", "parameters": [ { - "$id": "9496", + "$id": "9498", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127898,7 +127924,7 @@ 200 ], "bodyType": { - "$ref": "6795" + "$ref": "6797" }, "headers": [], "isErrorResponse": false, @@ -127918,7 +127944,7 @@ }, "parameters": [ { - "$id": "9497", + "$id": "9499", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -127937,7 +127963,7 @@ ], "response": { "type": { - "$ref": "6795" + "$ref": "6797" } }, "isOverride": false, @@ -127946,21 +127972,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.listModels" }, { - "$id": "9498", + "$id": "9500", "kind": "basic", "name": "retrieveModel", "accessibility": "public", "apiVersions": [], "summary": "Retrieves a model instance, providing basic information about the model such as the owner and\npermissioning.", "operation": { - "$id": "9499", + "$id": "9501", "name": "retrieveModel", "resourceName": "Models", "summary": "Retrieves a model instance, providing basic information about the model such as the owner and\npermissioning.", "accessibility": "public", "parameters": [ { - "$id": "9500", + "$id": "9502", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -127976,13 +128002,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel.accept" }, { - "$id": "9501", + "$id": "9503", "kind": "path", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9502", + "$id": "9504", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128006,7 +128032,7 @@ 200 ], "bodyType": { - "$ref": "6799" + "$ref": "6801" }, "headers": [], "isErrorResponse": false, @@ -128026,7 +128052,7 @@ }, "parameters": [ { - "$id": "9503", + "$id": "9505", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128043,13 +128069,13 @@ "decorators": [] }, { - "$id": "9504", + "$id": "9506", "kind": "method", "name": "model", "serializedName": "model", "doc": "The ID of the model to use for this request.", "type": { - "$id": "9505", + "$id": "9507", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128067,7 +128093,7 @@ ], "response": { "type": { - "$ref": "6799" + "$ref": "6801" } }, "isOverride": false, @@ -128076,21 +128102,21 @@ "crossLanguageDefinitionId": "OpenAI.Models.retrieveModel" }, { - "$id": "9506", + "$id": "9508", "kind": "basic", "name": "deleteModel", "accessibility": "public", "apiVersions": [], "summary": "Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.", "operation": { - "$id": "9507", + "$id": "9509", "name": "deleteModel", "resourceName": "Models", "summary": "Delete a fine-tuned model. You must have the Owner role in your organization to delete a model.", "accessibility": "public", "parameters": [ { - "$id": "9508", + "$id": "9510", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128106,13 +128132,13 @@ "crossLanguageDefinitionId": "OpenAI.Models.deleteModel.accept" }, { - "$id": "9509", + "$id": "9511", "kind": "path", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9510", + "$id": "9512", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128136,7 +128162,7 @@ 200 ], "bodyType": { - "$ref": "6808" + "$ref": "6810" }, "headers": [], "isErrorResponse": false, @@ -128156,7 +128182,7 @@ }, "parameters": [ { - "$id": "9511", + "$id": "9513", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128173,13 +128199,13 @@ "decorators": [] }, { - "$id": "9512", + "$id": "9514", "kind": "method", "name": "model", "serializedName": "model", "doc": "The model to delete", "type": { - "$id": "9513", + "$id": "9515", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -128197,7 +128223,7 @@ ], "response": { "type": { - "$ref": "6808" + "$ref": "6810" } }, "isOverride": false, @@ -128208,13 +128234,13 @@ ], "parameters": [ { - "$id": "9514", + "$id": "9516", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9515", + "$id": "9517", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -128225,7 +128251,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9516", + "$id": "9518", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -128242,31 +128268,31 @@ "crossLanguageDefinitionId": "OpenAI.Models", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9517", + "$id": "9519", "kind": "client", "name": "Realtime", "namespace": "OpenAI", "methods": [ { - "$id": "9518", + "$id": "9520", "kind": "basic", "name": "startRealtimeSession", "accessibility": "public", "apiVersions": [], "summary": "Starts a real-time session for conversation or transcription.", "operation": { - "$id": "9519", + "$id": "9521", "name": "startRealtimeSession", "resourceName": "Realtime", "summary": "Starts a real-time session for conversation or transcription.", "accessibility": "public", "parameters": [ { - "$id": "9520", + "$id": "9522", "kind": "header", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -128282,7 +128308,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.openAIBeta" }, { - "$id": "9521", + "$id": "9523", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -128299,7 +128325,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.contentType" }, { - "$id": "9522", + "$id": "9524", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128315,16 +128341,16 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession.accept" }, { - "$id": "9523", + "$id": "9525", "kind": "body", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$id": "9524", + "$id": "9526", "kind": "array", "name": "ArrayRealtimeClientEvent", "valueType": { - "$ref": "6814" + "$ref": "6816" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -128347,11 +128373,11 @@ 200 ], "bodyType": { - "$id": "9525", + "$id": "9527", "kind": "array", "name": "ArrayRealtimeServerEvent", "valueType": { - "$ref": "7111" + "$ref": "7113" }, "crossLanguageDefinitionId": "TypeSpec.Array", "decorators": [] @@ -128377,7 +128403,7 @@ }, "parameters": [ { - "$id": "9526", + "$id": "9528", "kind": "method", "name": "openAIBeta", "serializedName": "OpenAI-Beta", @@ -128394,12 +128420,12 @@ "decorators": [] }, { - "$id": "9527", + "$id": "9529", "kind": "method", "name": "requestMessages", "serializedName": "requestMessages", "type": { - "$ref": "9524" + "$ref": "9526" }, "location": "Body", "isApiVersion": false, @@ -128411,7 +128437,7 @@ "decorators": [] }, { - "$id": "9528", + "$id": "9530", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -128429,7 +128455,7 @@ "decorators": [] }, { - "$id": "9529", + "$id": "9531", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128448,7 +128474,7 @@ ], "response": { "type": { - "$ref": "9525" + "$ref": "9527" } }, "isOverride": false, @@ -128457,21 +128483,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.startRealtimeSession" }, { - "$id": "9530", + "$id": "9532", "kind": "basic", "name": "createEphemeralToken", "accessibility": "public", "apiVersions": [], "summary": "Create an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the session.update client event.\n\nIt responds with a session object, plus a client_secret key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API.", "operation": { - "$id": "9531", + "$id": "9533", "name": "createEphemeralToken", "resourceName": "Realtime", "summary": "Create an ephemeral API token for use in client-side applications with the Realtime API. Can be configured with the same session parameters as the session.update client event.\n\nIt responds with a session object, plus a client_secret key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API.", "accessibility": "public", "parameters": [ { - "$id": "9532", + "$id": "9534", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -128488,7 +128514,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.contentType" }, { - "$id": "9533", + "$id": "9535", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128504,12 +128530,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken.accept" }, { - "$id": "9534", + "$id": "9536", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7595" + "$ref": "7597" }, "isApiVersion": false, "contentTypes": [ @@ -128529,7 +128555,7 @@ 200 ], "bodyType": { - "$ref": "7655" + "$ref": "7657" }, "headers": [], "isErrorResponse": false, @@ -128552,12 +128578,12 @@ }, "parameters": [ { - "$id": "9535", + "$id": "9537", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7595" + "$ref": "7597" }, "location": "Body", "isApiVersion": false, @@ -128569,7 +128595,7 @@ "decorators": [] }, { - "$id": "9536", + "$id": "9538", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -128587,7 +128613,7 @@ "decorators": [] }, { - "$id": "9537", + "$id": "9539", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128606,7 +128632,7 @@ ], "response": { "type": { - "$ref": "7655" + "$ref": "7657" } }, "isOverride": false, @@ -128615,21 +128641,21 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralToken" }, { - "$id": "9538", + "$id": "9540", "kind": "basic", "name": "createEphemeralTranscriptionToken", "accessibility": "public", "apiVersions": [], "summary": "Create an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the transcription_session.update client event.\n\nIt responds with a session object, plus a client_secret key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API.", "operation": { - "$id": "9539", + "$id": "9541", "name": "createEphemeralTranscriptionToken", "resourceName": "Realtime", "summary": "Create an ephemeral API token for use in client-side applications with the Realtime API specifically for realtime transcriptions. Can be configured with the same session parameters as the transcription_session.update client event.\n\nIt responds with a session object, plus a client_secret key which contains a usable ephemeral API token that can be used to authenticate browser clients for the Realtime API.", "accessibility": "public", "parameters": [ { - "$id": "9540", + "$id": "9542", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -128646,7 +128672,7 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.contentType" }, { - "$id": "9541", + "$id": "9543", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128662,12 +128688,12 @@ "crossLanguageDefinitionId": "OpenAI.Realtime.createEphemeralTranscriptionToken.accept" }, { - "$id": "9542", + "$id": "9544", "kind": "body", "name": "request", "serializedName": "request", "type": { - "$ref": "7074" + "$ref": "7076" }, "isApiVersion": false, "contentTypes": [ @@ -128687,7 +128713,7 @@ 200 ], "bodyType": { - "$ref": "7566" + "$ref": "7568" }, "headers": [], "isErrorResponse": false, @@ -128710,12 +128736,12 @@ }, "parameters": [ { - "$id": "9543", + "$id": "9545", "kind": "method", "name": "request", "serializedName": "request", "type": { - "$ref": "7074" + "$ref": "7076" }, "location": "Body", "isApiVersion": false, @@ -128727,7 +128753,7 @@ "decorators": [] }, { - "$id": "9544", + "$id": "9546", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -128745,7 +128771,7 @@ "decorators": [] }, { - "$id": "9545", + "$id": "9547", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128764,7 +128790,7 @@ ], "response": { "type": { - "$ref": "7566" + "$ref": "7568" } }, "isOverride": false, @@ -128775,13 +128801,13 @@ ], "parameters": [ { - "$id": "9546", + "$id": "9548", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9547", + "$id": "9549", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -128792,7 +128818,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9548", + "$id": "9550", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -128809,31 +128835,31 @@ "crossLanguageDefinitionId": "OpenAI.Realtime", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } }, { - "$id": "9549", + "$id": "9551", "kind": "client", "name": "Uploads", "namespace": "OpenAI", "methods": [ { - "$id": "9550", + "$id": "9552", "kind": "basic", "name": "createUpload", "accessibility": "public", "apiVersions": [], "summary": "Creates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it.\n\nOnce you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object.\n\nFor certain `purpose`s, the correct `mime_type` must be specified. Please refer to documentation for the supported MIME types for your use case:\n- [Assistants](/docs/assistants/tools/file-search/supported-files)\n\nFor guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create).", "operation": { - "$id": "9551", + "$id": "9553", "name": "createUpload", "resourceName": "Uploads", "summary": "Creates an intermediate [Upload](/docs/api-reference/uploads/object) object that you can add [Parts](/docs/api-reference/uploads/part-object) to. Currently, an Upload can accept at most 8 GB in total and expires after an hour after you create it.\n\nOnce you complete the Upload, we will create a [File](/docs/api-reference/files/object) object that contains all the parts you uploaded. This File is usable in the rest of our platform as a regular File object.\n\nFor certain `purpose`s, the correct `mime_type` must be specified. Please refer to documentation for the supported MIME types for your use case:\n- [Assistants](/docs/assistants/tools/file-search/supported-files)\n\nFor guidance on the proper filename extensions for each purpose, please follow the documentation on [creating a File](/docs/api-reference/files/create).", "accessibility": "public", "parameters": [ { - "$id": "9552", + "$id": "9554", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -128849,7 +128875,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.accept" }, { - "$id": "9553", + "$id": "9555", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -128866,12 +128892,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload.contentType" }, { - "$id": "9554", + "$id": "9556", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7702" + "$ref": "7704" }, "isApiVersion": false, "contentTypes": [ @@ -128891,7 +128917,7 @@ 200 ], "bodyType": { - "$ref": "7710" + "$ref": "7712" }, "headers": [], "isErrorResponse": false, @@ -128914,7 +128940,7 @@ }, "parameters": [ { - "$id": "9555", + "$id": "9557", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -128931,12 +128957,12 @@ "decorators": [] }, { - "$id": "9556", + "$id": "9558", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7702" + "$ref": "7704" }, "location": "Body", "isApiVersion": false, @@ -128948,7 +128974,7 @@ "decorators": [] }, { - "$id": "9557", + "$id": "9559", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -128968,7 +128994,7 @@ ], "response": { "type": { - "$ref": "7710" + "$ref": "7712" } }, "isOverride": false, @@ -128977,21 +129003,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.createUpload" }, { - "$id": "9558", + "$id": "9560", "kind": "basic", "name": "addUploadPart", "accessibility": "public", "apiVersions": [], "summary": "Adds a [Part](/docs/api-reference/uploads/part-object) to an [Upload](/docs/api-reference/uploads/object) object. A Part represents a chunk of bytes from the file you are trying to upload. \n\nEach Part can be at most 64 MB, and you can add Parts until you hit the Upload maximum of 8 GB.\n\nIt is possible to add multiple Parts in parallel. You can decide the intended order of the Parts when you [complete the Upload](/docs/api-reference/uploads/complete).", "operation": { - "$id": "9559", + "$id": "9561", "name": "addUploadPart", "resourceName": "Uploads", "summary": "Adds a [Part](/docs/api-reference/uploads/part-object) to an [Upload](/docs/api-reference/uploads/object) object. A Part represents a chunk of bytes from the file you are trying to upload. \n\nEach Part can be at most 64 MB, and you can add Parts until you hit the Upload maximum of 8 GB.\n\nIt is possible to add multiple Parts in parallel. You can decide the intended order of the Parts when you [complete the Upload](/docs/api-reference/uploads/complete).", "accessibility": "public", "parameters": [ { - "$id": "9560", + "$id": "9562", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129007,7 +129033,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.accept" }, { - "$id": "9561", + "$id": "9563", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129023,12 +129049,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.contentType" }, { - "$id": "9562", + "$id": "9564", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9563", + "$id": "9565", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129046,12 +129072,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart.upload_id" }, { - "$id": "9564", + "$id": "9566", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7729" + "$ref": "7731" }, "isApiVersion": false, "contentTypes": [ @@ -129071,7 +129097,7 @@ 200 ], "bodyType": { - "$ref": "7732" + "$ref": "7734" }, "headers": [], "isErrorResponse": false, @@ -129094,7 +129120,7 @@ }, "parameters": [ { - "$id": "9565", + "$id": "9567", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129111,7 +129137,7 @@ "decorators": [] }, { - "$id": "9566", + "$id": "9568", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129128,12 +129154,12 @@ "decorators": [] }, { - "$id": "9567", + "$id": "9569", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9568", + "$id": "9570", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129149,12 +129175,12 @@ "decorators": [] }, { - "$id": "9569", + "$id": "9571", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7729" + "$ref": "7731" }, "location": "Body", "isApiVersion": false, @@ -129168,7 +129194,7 @@ ], "response": { "type": { - "$ref": "7732" + "$ref": "7734" } }, "isOverride": false, @@ -129177,21 +129203,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.addUploadPart" }, { - "$id": "9570", + "$id": "9572", "kind": "basic", "name": "completeUpload", "accessibility": "public", "apiVersions": [], "summary": "Completes the [Upload](/docs/api-reference/uploads/object). \n\nWithin the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform.\n\nYou can specify the order of the Parts by passing in an ordered list of the Part IDs.\n\nThe number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed.", "operation": { - "$id": "9571", + "$id": "9573", "name": "completeUpload", "resourceName": "Uploads", "summary": "Completes the [Upload](/docs/api-reference/uploads/object). \n\nWithin the returned Upload object, there is a nested [File](/docs/api-reference/files/object) object that is ready to use in the rest of the platform.\n\nYou can specify the order of the Parts by passing in an ordered list of the Part IDs.\n\nThe number of bytes uploaded upon completion must match the number of bytes initially specified when creating the Upload object. No Parts may be added after an Upload is completed.", "accessibility": "public", "parameters": [ { - "$id": "9572", + "$id": "9574", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129207,12 +129233,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.accept" }, { - "$id": "9573", + "$id": "9575", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9574", + "$id": "9576", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129230,7 +129256,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.upload_id" }, { - "$id": "9575", + "$id": "9577", "kind": "header", "name": "contentType", "serializedName": "Content-Type", @@ -129247,12 +129273,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload.contentType" }, { - "$id": "9576", + "$id": "9578", "kind": "body", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7741" + "$ref": "7743" }, "isApiVersion": false, "contentTypes": [ @@ -129272,7 +129298,7 @@ 200 ], "bodyType": { - "$ref": "7710" + "$ref": "7712" }, "headers": [], "isErrorResponse": false, @@ -129295,7 +129321,7 @@ }, "parameters": [ { - "$id": "9577", + "$id": "9579", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129312,12 +129338,12 @@ "decorators": [] }, { - "$id": "9578", + "$id": "9580", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9579", + "$id": "9581", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129333,12 +129359,12 @@ "decorators": [] }, { - "$id": "9580", + "$id": "9582", "kind": "method", "name": "requestBody", "serializedName": "requestBody", "type": { - "$ref": "7741" + "$ref": "7743" }, "location": "Body", "isApiVersion": false, @@ -129350,7 +129376,7 @@ "decorators": [] }, { - "$id": "9581", + "$id": "9583", "kind": "method", "name": "contentType", "serializedName": "Content-Type", @@ -129370,7 +129396,7 @@ ], "response": { "type": { - "$ref": "7710" + "$ref": "7712" } }, "isOverride": false, @@ -129379,21 +129405,21 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.completeUpload" }, { - "$id": "9582", + "$id": "9584", "kind": "basic", "name": "cancelUpload", "accessibility": "public", "apiVersions": [], "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "operation": { - "$id": "9583", + "$id": "9585", "name": "cancelUpload", "resourceName": "Uploads", "summary": "Cancels the Upload. No Parts may be added after an Upload is cancelled.", "accessibility": "public", "parameters": [ { - "$id": "9584", + "$id": "9586", "kind": "header", "name": "accept", "serializedName": "Accept", @@ -129409,12 +129435,12 @@ "crossLanguageDefinitionId": "OpenAI.Uploads.cancelUpload.accept" }, { - "$id": "9585", + "$id": "9587", "kind": "path", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9586", + "$id": "9588", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129438,7 +129464,7 @@ 200 ], "bodyType": { - "$ref": "7710" + "$ref": "7712" }, "headers": [], "isErrorResponse": false, @@ -129458,7 +129484,7 @@ }, "parameters": [ { - "$id": "9587", + "$id": "9589", "kind": "method", "name": "accept", "serializedName": "Accept", @@ -129475,12 +129501,12 @@ "decorators": [] }, { - "$id": "9588", + "$id": "9590", "kind": "method", "name": "upload_id", "serializedName": "upload_id", "type": { - "$id": "9589", + "$id": "9591", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string", @@ -129498,7 +129524,7 @@ ], "response": { "type": { - "$ref": "7710" + "$ref": "7712" } }, "isOverride": false, @@ -129509,13 +129535,13 @@ ], "parameters": [ { - "$id": "9590", + "$id": "9592", "kind": "endpoint", "name": "endpoint", "serializedName": "endpoint", "doc": "Service host", "type": { - "$id": "9591", + "$id": "9593", "kind": "url", "name": "endpoint", "crossLanguageDefinitionId": "TypeSpec.url" @@ -129526,7 +129552,7 @@ "isEndpoint": true, "defaultValue": { "type": { - "$id": "9592", + "$id": "9594", "kind": "string", "name": "string", "crossLanguageDefinitionId": "TypeSpec.string" @@ -129543,7 +129569,7 @@ "crossLanguageDefinitionId": "OpenAI.Uploads", "apiVersions": [], "parent": { - "$ref": "8123" + "$ref": "8125" } } ]